62 lines
1.6 KiB
Vue
62 lines
1.6 KiB
Vue
<script setup>
|
|
import { defineOptions, ref } from 'vue'
|
|
import { flatMap, isEmpty, reject } 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,
|
|
})
|
|
defineOptions({
|
|
inheritAttrs: false,
|
|
})
|
|
const id = ref('*')
|
|
const emit = defineEmits(['update:value'])
|
|
|
|
/**
|
|
* @typedef Hash
|
|
* @property {string} key
|
|
* @property {string} [value]
|
|
*/
|
|
const kvList = ref([{ key: '', value: '' }])
|
|
|
|
/**
|
|
*
|
|
* @param {Hash[]} val
|
|
*/
|
|
const onUpdate = (val) => {
|
|
val = reject(val, { key: '' })
|
|
const vals = flatMap(val, (item) => [item.key, item.value])
|
|
vals.splice(0, 0, id.value || '*')
|
|
emit('update:value', vals)
|
|
}
|
|
|
|
defineExpose({
|
|
validate: () => {
|
|
return !isEmpty(props.value)
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<n-form-item label="ID">
|
|
<n-input v-model:value="id" />
|
|
</n-form-item>
|
|
<n-form-item :label="$t('common.field') + ':' + $t('common.value')" required>
|
|
<n-dynamic-input
|
|
v-model:value="kvList"
|
|
:key-placeholder="$t('dialogue.field.enter_field')"
|
|
:value-placeholder="$t('dialogue.field.enter_value')"
|
|
preset="pair"
|
|
@update:value="onUpdate">
|
|
<template #action="{ index, create, remove, move }">
|
|
<icon-button v-if="kvList.length > 1" :icon="Delete" size="18" @click="() => remove(index)" />
|
|
<icon-button :icon="Add" size="18" @click="() => create(index)" />
|
|
</template>
|
|
</n-dynamic-input>
|
|
</n-form-item>
|
|
</template>
|
|
|
|
<style lang="scss" scoped></style>
|