homebox/frontend/components/Form/Select.vue

88 lines
2 KiB
Vue
Raw Normal View History

2022-09-02 17:46:20 +00:00
<template>
<div class="form-control w-full">
<label class="label">
<span class="label-text">{{ label }}</span>
</label>
<select v-model="selectedIdx" class="select select-bordered">
2022-09-02 17:46:20 +00:00
<option disabled selected>Pick one</option>
<option v-for="(obj, idx) in items" :key="name != '' ? obj[name] : obj" :value="idx">
{{ name != "" ? obj[name] : obj }}
2022-09-02 17:46:20 +00:00
</option>
</select>
<!-- <label class="label">
<span class="label-text-alt">Alt label</span>
<span class="label-text-alt">Alt label</span>
</label> -->
</div>
</template>
<script lang="ts" setup>
2022-10-15 21:56:08 +00:00
const emit = defineEmits(["update:modelValue", "update:value"]);
2022-09-02 17:46:20 +00:00
const props = defineProps({
label: {
type: String,
default: "",
2022-09-02 17:46:20 +00:00
},
modelValue: {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
type: [Object, String] as any,
2022-09-02 17:46:20 +00:00
default: null,
},
items: {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
2022-09-02 17:46:20 +00:00
type: Array as () => any[],
required: true,
},
name: {
type: String,
default: "name",
2022-09-02 17:46:20 +00:00
},
2022-10-15 21:56:08 +00:00
valueKey: {
type: String,
default: null,
2022-10-15 21:56:08 +00:00
},
value: {
type: String,
default: "",
},
2022-09-02 17:46:20 +00:00
});
2022-10-14 00:45:18 +00:00
const selectedIdx = ref(-1);
2022-10-15 21:56:08 +00:00
2022-10-14 00:45:18 +00:00
const internalSelected = useVModel(props, "modelValue", emit);
2022-10-14 00:45:18 +00:00
watch(selectedIdx, newVal => {
internalSelected.value = props.items[newVal];
});
2022-10-15 21:56:08 +00:00
watch(internalSelected, newVal => {
if (props.valueKey) {
emit("update:value", newVal[props.valueKey]);
2022-10-14 00:45:18 +00:00
}
2022-10-15 21:56:08 +00:00
});
2022-10-15 21:56:08 +00:00
// eslint-disable-next-line @typescript-eslint/no-explicit-any
function compare(a: any, b: any): boolean {
if (a === b) {
return true;
}
if (!a || !b) {
return false;
}
return JSON.stringify(a) === JSON.stringify(b);
}
watch(
2022-10-14 00:45:18 +00:00
internalSelected,
() => {
2022-10-14 00:45:18 +00:00
const idx = props.items.findIndex(item => compare(item, internalSelected.value));
selectedIdx.value = idx;
},
{
immediate: true,
}
);
2022-09-02 17:46:20 +00:00
</script>