|
|
|
@ -1,17 +1,38 @@
|
|
|
|
|
<script setup lang="ts"> |
|
|
|
|
import { computed, inject } from '#imports' |
|
|
|
|
import { inject } from '#imports' |
|
|
|
|
import { ColumnInj, IsFormInj } from '~/context' |
|
|
|
|
import MdiCheckBold from '~icons/mdi/check-bold' |
|
|
|
|
import MdiCropSquare from '~icons/mdi/crop-square' |
|
|
|
|
import MdiCheckCircleOutline from '~icons/mdi/check-circle-outline' |
|
|
|
|
import MdiCheckboxBlankCircleOutline from '~icons/mdi/checkbox-blank-circle-outline' |
|
|
|
|
import MdiStar from '~icons/mdi/star' |
|
|
|
|
import MdiStarOutline from '~icons/mdi/star-outline' |
|
|
|
|
import MdiHeart from '~icons/mdi/heart' |
|
|
|
|
import MdiHeartOutline from '~icons/mdi/heart-outline' |
|
|
|
|
import MdiMoonFull from '~icons/mdi/moon-full' |
|
|
|
|
import MdiMoonNew from '~icons/mdi/moon-new' |
|
|
|
|
import MdiThumbUp from '~icons/mdi/thumb-up' |
|
|
|
|
import MdiThumbUpOutline from '~icons/mdi/thumb-up-outline' |
|
|
|
|
import MdiFlag from '~icons/mdi/flag' |
|
|
|
|
import MdiFlagOutline from '~icons/mdi/flag-outline' |
|
|
|
|
|
|
|
|
|
interface Props { |
|
|
|
|
modelValue?: boolean | undefined | number |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
const { modelValue: value } = defineProps<Props>() |
|
|
|
|
const emit = defineEmits(['update:modelValue']) |
|
|
|
|
interface Emits { |
|
|
|
|
(event: 'update:modelValue', model: boolean | undefined | number): void |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
const props = defineProps<Props>() |
|
|
|
|
|
|
|
|
|
const emits = defineEmits<Emits>() |
|
|
|
|
const vModel = $(useVModel(props, 'modelValue', emits)) |
|
|
|
|
|
|
|
|
|
const column = inject(ColumnInj) |
|
|
|
|
const isForm = inject(IsFormInj) |
|
|
|
|
|
|
|
|
|
const checkboxMeta = computed(() => { |
|
|
|
|
const checkboxMeta = $computed(() => { |
|
|
|
|
return { |
|
|
|
|
icon: { |
|
|
|
|
checked: 'mdi-check-circle-outline', |
|
|
|
@ -22,70 +43,59 @@ const checkboxMeta = computed(() => {
|
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
const localState = computed({ |
|
|
|
|
get: () => value, |
|
|
|
|
set: (val) => emit('update:modelValue', val), |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
// const checkedIcon = computed(() => { |
|
|
|
|
// return defineAsyncComponent( ()=>import('~icons/material-symbols/'+checkboxMeta?.value?.icon?.checked)) |
|
|
|
|
// }); |
|
|
|
|
// const uncheckedIcon = computed(() => { |
|
|
|
|
// return defineAsyncComponent(()=>import('~icons/material-symbols/'+checkboxMeta?.value?.icon?.unchecked)) |
|
|
|
|
// }); |
|
|
|
|
|
|
|
|
|
/* export default { |
|
|
|
|
name: 'BooleanCell', |
|
|
|
|
props: { |
|
|
|
|
column: Object, |
|
|
|
|
value: [String, Number, Boolean], |
|
|
|
|
isForm: Boolean, |
|
|
|
|
readOnly: Boolean, |
|
|
|
|
}, |
|
|
|
|
computed: { |
|
|
|
|
checkedIcon() { |
|
|
|
|
return (this.checkboxMeta && this.checkboxMeta.icon && this.checkboxMeta.icon.checked) || 'mdi-check-bold' |
|
|
|
|
}, |
|
|
|
|
uncheckedIcon() { |
|
|
|
|
return (this.checkboxMeta && this.checkboxMeta.icon && this.checkboxMeta.icon.unchecked) || 'mdi-crop-square' |
|
|
|
|
}, |
|
|
|
|
localState: { |
|
|
|
|
get() { |
|
|
|
|
return this.value |
|
|
|
|
}, |
|
|
|
|
set(val) { |
|
|
|
|
this.$emit('input', val) |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
parentListeners() { |
|
|
|
|
const $listeners = {} |
|
|
|
|
return $listeners |
|
|
|
|
}, |
|
|
|
|
checkboxMeta() { |
|
|
|
|
return { |
|
|
|
|
icon: { |
|
|
|
|
checked: 'mdi-check-circle-outline', |
|
|
|
|
unchecked: 'mdi-checkbox-blank-circle-outline', |
|
|
|
|
}, |
|
|
|
|
color: 'primary', |
|
|
|
|
...(this.column && this.column.meta ? this.column.meta : {}), |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
toggle() { |
|
|
|
|
this.localState = !this.localState |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
} */ |
|
|
|
|
const icon = (type: string) => { |
|
|
|
|
switch (type) { |
|
|
|
|
case 'mdi-check-bold': |
|
|
|
|
return MdiCheckBold |
|
|
|
|
case 'mdi-crop-square': |
|
|
|
|
return MdiCropSquare |
|
|
|
|
case 'mdi-check-circle-outline': |
|
|
|
|
return MdiCheckCircleOutline |
|
|
|
|
case 'mdi-checkbox-blank-circle-outline': |
|
|
|
|
return MdiCheckboxBlankCircleOutline |
|
|
|
|
case 'mdi-star': |
|
|
|
|
return MdiStar |
|
|
|
|
case 'mdi-star-outline': |
|
|
|
|
return MdiStarOutline |
|
|
|
|
case 'mdi-heart': |
|
|
|
|
return MdiHeart |
|
|
|
|
case 'mdi-heart-outline': |
|
|
|
|
return MdiHeartOutline |
|
|
|
|
case 'mdi-moon-full': |
|
|
|
|
return MdiMoonFull |
|
|
|
|
case 'mdi-moon-new': |
|
|
|
|
return MdiMoonNew |
|
|
|
|
case 'mdi-thumb-up': |
|
|
|
|
return MdiThumbUp |
|
|
|
|
case 'mdi-thumb-up-outline': |
|
|
|
|
return MdiThumbUpOutline |
|
|
|
|
case 'mdi-flag': |
|
|
|
|
return MdiFlag |
|
|
|
|
case 'mdi-flag-outline': |
|
|
|
|
return MdiFlagOutline |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
<template> |
|
|
|
|
<div class="d-flex align-center" :class="{ 'justify-center': !isForm, 'nc-cell-hover-show': !localState }"> |
|
|
|
|
<!-- <span :is="localState ? checkedIcon : uncheckedIcon" small :color="checkboxMeta.color" @click="toggle"> --> |
|
|
|
|
<!-- {{ localState ? checkedIcon : uncheckedIcon }} --> |
|
|
|
|
<!-- </span> --> |
|
|
|
|
|
|
|
|
|
<input v-model="localState" type="checkbox" /> |
|
|
|
|
<div class="flex" :class="{ 'justify-center': !isForm, 'nc-cell-hover-show': !vModel }"> |
|
|
|
|
<div class="px-1 pt-1 rounded-full items-center" :class="{ 'bg-gray-100': !vModel }" @click="vModel = !vModel"> |
|
|
|
|
<component |
|
|
|
|
:is="icon(vModel ? checkboxMeta.icon.checked : checkboxMeta.icon.unchecked)" |
|
|
|
|
:style="{ |
|
|
|
|
color: checkboxMeta.color, |
|
|
|
|
}" |
|
|
|
|
/> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<style scoped lang="scss"> |
|
|
|
|
.nc-cell-hover-show { |
|
|
|
|
opacity: 0; |
|
|
|
|
transition: 0.3s opacity; |
|
|
|
|
&:hover { |
|
|
|
|
opacity: 0.7; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|