mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-04 02:16:43 +00:00
* chore: sync various Signed-off-by: mertmit <mertmit99@gmail.com> * test: ws scope Signed-off-by: mertmit <mertmit99@gmail.com> * fix(nc-gui): ncSubmenu right icon visibility issue * fix(nc-gui): use viewTypeAlias in all the places --------- Signed-off-by: mertmit <mertmit99@gmail.com> Co-authored-by: Ramesh Mane <101566080+rameshmane7218@users.noreply.github.com>
105 lines
2.0 KiB
Vue
105 lines
2.0 KiB
Vue
<script lang="ts" setup>
|
|
const props = withDefaults(
|
|
defineProps<{
|
|
checked: boolean
|
|
disabled?: boolean
|
|
size?: 'default' | 'small' | 'xsmall'
|
|
placement?: 'left' | 'right'
|
|
loading?: boolean
|
|
contentWrapperClass?: string
|
|
}>(),
|
|
{
|
|
size: 'small',
|
|
placement: 'left',
|
|
loading: false,
|
|
contentWrapperClass: '',
|
|
},
|
|
)
|
|
|
|
const emit = defineEmits(['change', 'update:checked'])
|
|
|
|
const checked = useVModel(props, 'checked', emit)
|
|
|
|
const { loading, disabled } = toRefs(props)
|
|
|
|
const switchSize = computed(() => (['default', 'small'].includes(props.size) ? props.size : undefined))
|
|
|
|
const onChange = (e: boolean, updateValue = false) => {
|
|
if (loading.value || disabled.value) return
|
|
|
|
if (updateValue) {
|
|
checked.value = e
|
|
}
|
|
|
|
emit('change', e)
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<span
|
|
v-if="placement === 'right' && $slots.default"
|
|
class="pr-2"
|
|
:class="[
|
|
contentWrapperClass,
|
|
{
|
|
'cursor-not-allowed': disabled,
|
|
'cursor-pointer': !disabled,
|
|
},
|
|
]"
|
|
@click="onChange(!checked, true)"
|
|
>
|
|
<slot />
|
|
</span>
|
|
<a-switch
|
|
v-model:checked="checked"
|
|
:disabled="disabled"
|
|
class="nc-switch"
|
|
:class="{
|
|
'size-xsmall': size === 'xsmall',
|
|
}"
|
|
:loading="loading"
|
|
v-bind="$attrs"
|
|
:size="switchSize"
|
|
@change="onChange"
|
|
>
|
|
</a-switch>
|
|
<span
|
|
v-if="placement === 'left' && $slots.default"
|
|
class="pl-2"
|
|
:class="[
|
|
contentWrapperClass,
|
|
{
|
|
'cursor-not-allowed': disabled,
|
|
'cursor-pointer': !disabled,
|
|
},
|
|
]"
|
|
@click="onChange(!checked, true)"
|
|
>
|
|
<slot />
|
|
</span>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.size-xsmall {
|
|
@apply h-3.5 min-w-[26px] leading-[14px];
|
|
|
|
:deep(.ant-switch-handle) {
|
|
@apply h-[10px] w-[10px] top-[2px] left-[calc(100%_-_24px)];
|
|
}
|
|
|
|
:deep(.ant-switch-inner) {
|
|
@apply !mr-[5px] !ml-[18px] !my-0;
|
|
}
|
|
|
|
&.ant-switch-checked {
|
|
:deep(.ant-switch-handle) {
|
|
@apply left-[calc(100%_-_12px)];
|
|
}
|
|
|
|
:deep(.ant-switch-inner) {
|
|
@apply !mr-[18px] !ml-[5px];
|
|
}
|
|
}
|
|
}
|
|
</style>
|