2021-04-10 19:45:11 +02:00
|
|
|
<template>
|
2024-06-28 15:50:40 +02:00
|
|
|
<label class="flex flex-col items-start group" :for="id" :class="sizeClass(size)">
|
|
|
|
<f-label v-if="label" :required="false" :value="label"></f-label>
|
|
|
|
<span class="relative flex-none flex" :class="{'pr-8': hint, [fieldHeight]: true}">
|
2024-07-03 17:17:44 +02:00
|
|
|
<input :id="id" v-model="v" type="checkbox" :name="name" :value="value" :disabled="disabled" class="absolute peer opacity-0" @keypress="$emit('keypress', $event)" />
|
2024-06-28 15:50:40 +02:00
|
|
|
<span
|
|
|
|
class="relative cursor-pointer h-full rounded peer-focus:bg-red-500 transition-all duration-300 group-[.field-base]:w-[70px] group-[.field-sm]:w-[46px] bg-gray-700 peer-checked:bg-primary-700"
|
|
|
|
></span>
|
|
|
|
<span class="absolute h-full top-0 left-0 flex-none flex justify-center items-center aspect-square">
|
|
|
|
<ui-sprite
|
|
|
|
class="relative text-gray-400 flex-none text-white duration-300 group-[.field-base]:w-3 group-[.field-base]:h-3 group-[.field-sm]:w-2 group-[.field-sm]:h-2"
|
|
|
|
src="check"
|
|
|
|
></ui-sprite
|
|
|
|
></span>
|
|
|
|
<span class="absolute h-full top-0 group-[.field-base]:left-[35px] group-[.field-sm]:left-[23px] flex-none flex justify-center items-center aspect-square">
|
|
|
|
<ui-sprite
|
|
|
|
class="relative text-gray-400 flex-none text-white duration-300 group-[.field-base]:w-3 group-[.field-base]:h-3 group-[.field-sm]:w-2 group-[.field-sm]:h-2"
|
|
|
|
src="close"
|
|
|
|
></ui-sprite
|
|
|
|
></span>
|
|
|
|
<var
|
|
|
|
class="absolute transition-all duration-300 bg-gray-400 rounded group-[.field-base]:top-[3px] group-[.field-base]:left-[3px] group-[.field-sm]:top-[2px] group-[.field-sm]:left-[2px] group-[.field-base]:w-[29px] group-[.field-sm]:w-[19px] group-[.field-base]:h-[29px] group-[.field-sm]:h-[19px] group-[.field-base]:peer-checked:left-[37px] group-[.field-sm]:peer-checked:left-[25px]"
|
|
|
|
></var>
|
|
|
|
<f-hint v-if="hint" :value="hint"></f-hint>
|
|
|
|
</span>
|
2021-04-10 19:45:11 +02:00
|
|
|
</label>
|
|
|
|
</template>
|
|
|
|
|
2024-06-28 15:50:40 +02:00
|
|
|
<script setup>
|
|
|
|
import {computed} from 'vue';
|
|
|
|
import useFieldSize from '../../composables/useFieldSize.js';
|
|
|
|
|
|
|
|
const {sizeClass, fieldHeight} = useFieldSize();
|
|
|
|
|
|
|
|
const emit = defineEmits(['update:modelValue', 'keypress']);
|
|
|
|
|
|
|
|
const props = defineProps({
|
|
|
|
hint: {
|
|
|
|
type: String,
|
|
|
|
default: () => '',
|
|
|
|
},
|
|
|
|
size: {
|
|
|
|
type: String,
|
|
|
|
default: () => 'base',
|
|
|
|
},
|
|
|
|
id: {
|
|
|
|
type: String,
|
|
|
|
required: true,
|
2021-04-10 19:45:11 +02:00
|
|
|
},
|
2024-06-28 15:50:40 +02:00
|
|
|
name: {
|
|
|
|
required: true,
|
|
|
|
type: String,
|
2023-10-30 23:09:47 +01:00
|
|
|
},
|
2024-06-28 15:50:40 +02:00
|
|
|
disabled: {
|
|
|
|
type: Boolean,
|
|
|
|
default: () => false,
|
|
|
|
},
|
|
|
|
value: {
|
|
|
|
validator: (v) => true,
|
|
|
|
default: () => undefined,
|
|
|
|
},
|
|
|
|
label: {
|
|
|
|
type: String,
|
|
|
|
default: () => '',
|
|
|
|
},
|
|
|
|
modelValue: {
|
|
|
|
validator: (v) => true,
|
|
|
|
default: () => undefined,
|
|
|
|
},
|
|
|
|
});
|
2021-04-10 19:45:11 +02:00
|
|
|
|
2024-06-28 15:50:40 +02:00
|
|
|
const v = computed({
|
|
|
|
set: (v) => {
|
|
|
|
if (props.disabled === true) {
|
|
|
|
return;
|
|
|
|
}
|
2021-04-10 19:45:11 +02:00
|
|
|
|
2024-06-28 15:50:40 +02:00
|
|
|
if (typeof props.modelValue === 'boolean') {
|
|
|
|
emit('update:modelValue', v);
|
|
|
|
return;
|
|
|
|
}
|
2021-04-10 19:45:11 +02:00
|
|
|
|
2024-07-03 17:07:14 +02:00
|
|
|
var a = props.modelValue.filter((i) => i !== props.value);
|
2024-06-28 15:50:40 +02:00
|
|
|
if (v) {
|
2024-07-03 17:07:14 +02:00
|
|
|
a.push(props.value);
|
2024-06-28 15:50:40 +02:00
|
|
|
}
|
2021-04-10 19:45:11 +02:00
|
|
|
|
2024-06-28 15:50:40 +02:00
|
|
|
emit('update:modelValue', a);
|
|
|
|
},
|
|
|
|
get() {
|
|
|
|
if (typeof props.modelValue === 'boolean') {
|
|
|
|
return props.modelValue;
|
|
|
|
}
|
2021-04-10 19:45:11 +02:00
|
|
|
|
2024-06-28 15:50:40 +02:00
|
|
|
if (typeof props.modelValue === 'undefined') {
|
|
|
|
return emit('update:modelValue', false);
|
|
|
|
}
|
2021-04-10 19:45:11 +02:00
|
|
|
|
2024-06-28 15:50:40 +02:00
|
|
|
return props.modelValue.indexOf(props.value) !== -1;
|
2022-05-20 01:18:11 +02:00
|
|
|
},
|
2024-06-28 15:50:40 +02:00
|
|
|
});
|
2021-04-10 19:45:11 +02:00
|
|
|
</script>
|