2023-11-22 16:06:55 +00:00
|
|
|
<script setup lang="ts">
|
2023-10-31 14:38:43 +00:00
|
|
|
import { computed } from 'vue';
|
|
|
|
import FormCheckRadio from '@/Components/FormCheckRadio.vue';
|
2023-03-03 15:54:28 +00:00
|
|
|
const props = defineProps({
|
2023-10-31 14:38:43 +00:00
|
|
|
options: {
|
|
|
|
type: Object,
|
|
|
|
default: () => {},
|
|
|
|
},
|
|
|
|
name: {
|
|
|
|
type: String,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
type: {
|
|
|
|
type: String,
|
|
|
|
default: 'checkbox',
|
2023-11-22 16:06:55 +00:00
|
|
|
validator: (value: string) => ['checkbox', 'radio', 'switch'].includes(value),
|
2023-10-31 14:38:43 +00:00
|
|
|
},
|
|
|
|
componentClass: {
|
|
|
|
type: String,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
isColumn: Boolean,
|
|
|
|
modelValue: {
|
|
|
|
type: [Array, String, Number, Boolean, Object],
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
const emit = defineEmits(['update:modelValue']);
|
2023-03-03 15:54:28 +00:00
|
|
|
const computedValue = computed({
|
2023-11-22 16:06:55 +00:00
|
|
|
// get: () => props.modelValue,
|
|
|
|
get: () => {
|
|
|
|
// const ids = props.modelValue.map((obj) => obj.id);
|
|
|
|
// return ids;
|
|
|
|
if (Array.isArray(props.modelValue)) {
|
|
|
|
if (props.modelValue.every((item) => typeof item === 'number')) {
|
|
|
|
return props.modelValue;
|
|
|
|
} else if (props.modelValue.every((item) => hasIdAttribute(item))) {
|
|
|
|
const ids = props.modelValue.map((obj) => obj.id.toString());
|
|
|
|
return ids;
|
|
|
|
}
|
|
|
|
return props.modelValue;
|
|
|
|
}
|
|
|
|
// return props.modelValue;
|
|
|
|
},
|
2023-10-31 14:38:43 +00:00
|
|
|
set: (value) => {
|
|
|
|
emit('update:modelValue', value);
|
|
|
|
},
|
|
|
|
});
|
2023-11-22 16:06:55 +00:00
|
|
|
|
|
|
|
// Define a type guard to check if an object has an 'id' attribute
|
|
|
|
// function hasIdAttribute(obj: any): obj is { id: any } {
|
|
|
|
// return typeof obj === 'object' && 'id' in obj;
|
|
|
|
// }
|
|
|
|
|
|
|
|
const hasIdAttribute = (obj: any): obj is { id: any } => {
|
|
|
|
return typeof obj === 'object' && 'id' in obj;
|
|
|
|
};
|
2023-03-03 15:54:28 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2023-10-31 14:38:43 +00:00
|
|
|
<div class="flex justify-start flex-wrap -mb-3" :class="{ 'flex-col': isColumn }">
|
|
|
|
<!-- :input-value="key" -->
|
|
|
|
<!-- :label="value" -->
|
|
|
|
<!-- :input-value="value.id"
|
2023-03-03 15:54:28 +00:00
|
|
|
:label="value.name" -->
|
2023-10-31 14:38:43 +00:00
|
|
|
<FormCheckRadio
|
|
|
|
v-for="(value, key) in options"
|
|
|
|
:key="key"
|
|
|
|
v-model="computedValue"
|
|
|
|
:type="type"
|
|
|
|
:name="name"
|
|
|
|
:input-value="key"
|
|
|
|
:label="value"
|
|
|
|
:class="componentClass"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</template>
|