|
|
|
<script setup lang="ts">
|
|
|
|
const props = defineProps<{
|
|
|
|
value: any
|
|
|
|
isEdit: boolean
|
|
|
|
}>()
|
|
|
|
|
|
|
|
const emit = defineEmits(['update:value'])
|
|
|
|
|
|
|
|
const vModel = useVModel(props, 'value', emit)
|
|
|
|
|
|
|
|
const future = ref(false)
|
|
|
|
|
|
|
|
const initialIsMulti = ref()
|
|
|
|
|
|
|
|
const validators = {}
|
|
|
|
|
|
|
|
const { setAdditionalValidations } = useColumnCreateStoreOrThrow()
|
|
|
|
|
|
|
|
setAdditionalValidations({
|
|
|
|
...validators,
|
|
|
|
})
|
|
|
|
|
|
|
|
// set default value
|
|
|
|
vModel.value.meta = {
|
|
|
|
is_multi: false,
|
|
|
|
notify: false,
|
|
|
|
...vModel.value.meta,
|
|
|
|
}
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
initialIsMulti.value = vModel.value.meta.is_multi
|
|
|
|
})
|
|
|
|
|
|
|
|
const updateIsMulti = (isChecked: boolean) => {
|
|
|
|
vModel.value.meta.is_multi = isChecked
|
|
|
|
if (!vModel.value.meta.is_multi) {
|
|
|
|
vModel.value.cdf = vModel.value.cdf?.split(',')[0] || null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div class="flex flex-col gap-4">
|
|
|
|
<a-form-item>
|
|
|
|
<div v-if="vModel.meta" class="flex items-center gap-1">
|
|
|
|
<NcSwitch :checked="vModel.meta.is_multi" data-testid="user-column-allow-multiple" @change="updateIsMulti">
|
|
|
|
<div class="text-sm text-gray-800 select-none">Allow adding multiple users</div>
|
|
|
|
</NcSwitch>
|
|
|
|
</div>
|
|
|
|
</a-form-item>
|
|
|
|
<a-form-item v-if="future">
|
|
|
|
<div v-if="vModel.meta" class="flex items-center gap-1">
|
|
|
|
<NcSwitch v-model:checked="vModel.meta.notify" data-testid="user-column-notify-user" @change="updateIsMulti">
|
|
|
|
<div class="text-sm text-gray-800 select-none">Notify users with base access when they're added</div>
|
|
|
|
</NcSwitch>
|
|
|
|
</div>
|
|
|
|
</a-form-item>
|
|
|
|
<a-alert v-if="initialIsMulti && isEdit && !vModel.meta.is_multi" type="warning" show-icon>
|
|
|
|
<template #icon><GeneralIcon icon="alertTriangle" class="h-6 w-6" width="24" height="24" /></template>
|
|
|
|
<template #message> Alert </template>
|
|
|
|
<template #description> Changing from multiple mode to single will retain only first user in each cell! </template>
|
|
|
|
</a-alert>
|
|
|
|
</div>
|
|
|
|
</template>
|