Files
myprojplanet_vite/src/components/CMySelect/CMySelect.vue

207 lines
5.7 KiB
Vue
Raw Normal View History

2021-09-16 21:08:02 +02:00
<template>
<div class="text-center">
<div v-if="multiselect_by_server">
<q-select
v-bind="$attrs"
:model-value="myarrvalue"
label-color="primary"
:label="label"
@filter="filterFn"
@filter-abort="abortFilterFn"
@update:model-value="changeval"
2022-01-23 23:25:19 +01:00
input-debounce="600"
rounded
outlined
multiple
options-dense
map-options
stack-label
emit-value
:readonly="sola_lettura"
:use-input="useinput"
:dense="dense"
:input-class="myclass"
:options="valori"
:option-value="optval"
class="combowidth"
>
<template v-slot:no-option>
<q-item>
<q-item-section class="text-grey">
No results
</q-item-section>
</q-item>
</template>
<template v-slot:selected-item="scope">
<div v-if="scope.opt[fieldsTable.getLabelByTable(tablesel)]">
<q-chip
:removable="!sola_lettura"
dense
@remove="scope.removeAtIndex(scope.index)"
v-if="checkIfShowRec(scope.opt)"
color="white"
text-color="mycol"
class="q-my-none q-ml-xs q-mr-none"
>
<q-avatar color="primary" text-color="white" icon="" size="12px"/>
{{ scope.opt[fieldsTable.getLabelByTable(tablesel)] }}
</q-chip>
</div>
</template>
2022-01-20 01:17:21 +01:00
<template v-slot:option="{ itemProps, opt, selected, toggleOption }">
<q-item v-bind="itemProps">
<q-item-section>
<q-item-label>{{ opt[fieldsTable.getLabelByTable(tablesel)] }}</q-item-label>
</q-item-section>
<q-item-section side>
<q-toggle :model-value="selected" @update:model-value="toggleOption(opt)"/>
</q-item-section>
</q-item>
</template>
</q-select>
</div>
2022-01-23 23:25:19 +01:00
<div v-else-if="pickup">
2021-09-16 21:08:02 +02:00
<q-select
v-if="pickup"
filled
:model-value="myvalue"
clearable
use-input
hide-selected
fill-input
input-debounce="300"
:dense="dense"
:input-class="myclass"
:options="valori"
:option-value="optval"
:option-label="optlab"
map-options
@filter="filterFn"
@update:model-value="changeval"
:label="label"
options-selected-class="text-deep-orange"
v-bind="$attrs"
style="width: 250px"
>
<template v-slot:no-option>
<q-item>
<q-item-section class="text-grey">
No results
</q-item-section>
</q-item>
</template>
<template v-slot:option="scope">
<q-item v-bind="scope.itemProps">
<q-item-section>
<q-item-label> {{ scope.opt[optlab] }}</q-item-label>
</q-item-section>
</q-item>
</template>
</q-select>
2022-01-23 23:25:19 +01:00
</div>
<div v-else-if="multiple">
<q-select
:multiple="true"
:model-value="myarrvalue"
label-color="primary"
:label="label"
@update:model-value="changeval"
rounded
outlined
v-bind="$attrs"
:input-class="myclass"
:use-input="useinput"
input-debounce="0"
@new-value="newvaluefunc"
new-value-mode="add-unique"
map-options
emit-value
stack-label
:options="valori"
:option-value="optval"
:option-label="optlab"
:dense="dense">
<template
v-slot:selected-item="scope">
<div v-if="scope.opt[optlab]">
<q-chip
removable
dense
@remove="scope.removeAtIndex(scope.index)"
v-if="checkIfShowRec(scope.opt)"
color="white"
text-color="mycol"
class="q-my-none q-ml-xs q-mr-none"
>
<q-avatar color="primary" text-color="white" :icon="scope.opt.icon ? scope.opt.icon : ''" size="12px"/>
{{ scope.opt[optlab] }}
</q-chip>
</div>
</template>
<template
v-if="withToggle"
v-slot:option="{ itemProps, opt, selected, toggleOption }">
<q-item v-bind="itemProps">
<q-item-section>
<q-item-label>{{ opt[optlab] }}</q-item-label>
</q-item-section>
<q-item-section side>
<q-toggle :model-value="selected" @update:value="toggleOption(opt)"/>
</q-item-section>
</q-item>
</template>
</q-select>
</div>
<div v-else>
<q-select
2022-01-23 23:25:19 +01:00
:multiple="false"
2021-09-16 21:08:02 +02:00
rounded
outlined
:dense="dense"
:input-class="myclass"
:model-value="myvalue"
2021-12-11 00:25:35 +01:00
:options="valori"
2021-09-16 21:08:02 +02:00
:option-value="optval"
:option-label="optlab"
@update:model-value="changeval"
2021-09-16 21:08:02 +02:00
:label="label"
emit-value
2021-12-17 18:30:18 +01:00
options-selected-class="text-deep-orange"
2021-09-16 21:08:02 +02:00
map-options
2021-12-17 18:30:18 +01:00
v-bind="$attrs"
2021-12-31 01:44:16 +01:00
class="combowidth"
>
2021-12-17 18:30:18 +01:00
<template v-slot:option="scope">
<q-item v-bind="scope.itemProps">
<q-item-section avatar>
<q-icon :name="scope.opt.icon ? scope.opt.icon : ''"/>
</q-item-section>
<q-item-section>
2021-12-29 18:26:41 +01:00
<q-item-label>{{ scope.opt[optlab] }}</q-item-label>
2021-12-17 18:30:18 +01:00
</q-item-section>
</q-item>
</template>
2021-09-16 21:08:02 +02:00
</q-select>
2022-01-20 01:17:21 +01:00
2021-09-16 21:08:02 +02:00
</div>
</div>
</template>
<script lang="ts" src="./CMySelect.ts">
</script>
<style lang="scss" scoped>
@import './CMySelect.scss';
</style>