tiny-rdm/frontend/src/components/new_value/NewSetValue.vue

46 lines
1.3 KiB
Vue

<script setup>
import { ref } from 'vue'
import { compact, isEmpty, uniq } from 'lodash'
import Add from '@/components/icons/Add.vue'
import Delete from '@/components/icons/Delete.vue'
import IconButton from '@/components/common/IconButton.vue'
const props = defineProps({
value: Array,
})
const emit = defineEmits(['update:value', 'append'])
const set = ref([''])
const onUpdate = (val) => {
val = uniq(compact(val))
emit('update:value', val)
}
defineExpose({
validate: () => {
return !isEmpty(props.value)
},
})
</script>
<template>
<n-form-item :label="$t('dialogue.field.element')" required>
<n-dynamic-input v-model:value="set" :placeholder="$t('dialogue.field.enter_elem')" @update:value="onUpdate">
<template #action="{ index, create, remove, move }">
<icon-button v-if="set.length > 1" :icon="Delete" size="18" @click="() => remove(index)" />
<icon-button
:icon="Add"
size="18"
@click="
() => {
create(index)
emit('append')
}
" />
</template>
</n-dynamic-input>
</n-form-item>
</template>
<style lang="scss" scoped></style>