koel/resources/assets/js/components/ui/CheckBox.vue

70 lines
1.3 KiB
Vue
Raw Normal View History

2022-07-15 07:23:55 +00:00
<template>
<span :class="checked && 'checked'">
2022-07-15 07:23:55 +00:00
<input :checked="checked" type="checkbox" v-bind="$attrs" @input="onInput">
</span>
</template>
<script lang="ts" setup>
import { ref } from 'vue'
const props = withDefaults(defineProps<{ modelValue?: any }>(), {
modelValue: false
})
const checked = ref(props.modelValue)
const emit = defineEmits<{ (e: 'update:modelValue', value: boolean): void }>()
2022-07-15 07:23:55 +00:00
2022-12-02 16:17:37 +00:00
const onInput = (event: Event) => {
2022-07-15 07:23:55 +00:00
checked.value = (event.target as HTMLInputElement).checked
emit('update:modelValue', checked.value)
}
</script>
<style scoped>
span {
position: relative;
vertical-align: bottom;
display: inline-block;
width: 32px;
height: 20px;
background: #c2c2c2;
border-radius: 99rem;
box-shadow: inset 0 1px 5px 0 rgba(0, 0, 0, .2);
cursor: pointer;
transition: all .2s ease-in-out;
margin-right: .5rem;
&::after {
content: '';
height: 16px;
aspect-ratio: 1/1;
position: absolute;
background: #fff;
top: 2px;
left: 2px;
border-radius: 99rem;
transition: all .2s ease-in-out;
}
&.checked {
background: var(--color-highlight);
&::after {
left: 14px;
}
}
input {
display: none;
}
2022-07-15 07:23:55 +00:00
}
svg {
color: var(--color-highlight);
position: absolute;
top: 1px;
2023-08-20 22:35:58 +00:00
left: 1px;
2022-07-15 07:23:55 +00:00
}
</style>