mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
1.9 KiB
79 lines
1.9 KiB
<script setup lang="ts"> |
|
import { ColumnInj, IsFormInj, ReadonlyInj, getMdiIcon, inject } from '#imports' |
|
|
|
interface Props { |
|
// If the previous cell value was a text, the initial checkbox value is a string type |
|
// otherwise it can be either a boolean, or a string representing a boolean, i.e '0' or '1' |
|
modelValue?: boolean | string | number | '0' | '1' |
|
} |
|
|
|
interface Emits { |
|
(event: 'update:modelValue', model: boolean): void |
|
} |
|
|
|
const props = defineProps<Props>() |
|
|
|
const emits = defineEmits<Emits>() |
|
|
|
let vModel = $computed({ |
|
get: () => !!props.modelValue && props.modelValue !== '0' && props.modelValue !== 0, |
|
set: (val) => emits('update:modelValue', val), |
|
}) |
|
|
|
const column = inject(ColumnInj) |
|
|
|
const isForm = inject(IsFormInj) |
|
|
|
const readOnly = inject(ReadonlyInj) |
|
|
|
const checkboxMeta = $computed(() => { |
|
return { |
|
icon: { |
|
checked: 'mdi-check-circle-outline', |
|
unchecked: 'mdi-checkbox-blank-circle-outline', |
|
}, |
|
color: 'primary', |
|
...(column?.value?.meta || {}), |
|
} |
|
}) |
|
|
|
function onClick() { |
|
if (!readOnly) { |
|
vModel = !vModel |
|
} |
|
} |
|
</script> |
|
|
|
<template> |
|
<div |
|
class="flex cursor-pointer" |
|
:class="{ |
|
'justify-center': !isForm && !readOnly, |
|
'w-full': isForm, |
|
'nc-cell-hover-show': !vModel && !readOnly, |
|
'opacity-0': readOnly && !vModel, |
|
}" |
|
@click="onClick" |
|
> |
|
<div class="px-1 pt-1 rounded-full items-center" :class="{ 'bg-gray-100': !vModel, '!ml-[-8px]': readOnly }"> |
|
<Transition name="layout" mode="out-in" :duration="100"> |
|
<component |
|
:is="getMdiIcon(vModel ? checkboxMeta.icon.checked : checkboxMeta.icon.unchecked)" |
|
:style="{ |
|
color: checkboxMeta.color, |
|
}" |
|
/> |
|
</Transition> |
|
</div> |
|
</div> |
|
</template> |
|
|
|
<style scoped lang="scss"> |
|
.nc-cell-hover-show { |
|
opacity: 0; |
|
transition: 0.3s opacity; |
|
&:hover { |
|
opacity: 0.7; |
|
} |
|
} |
|
</style>
|
|
|