147 lines
3.8 KiB
Vue
147 lines
3.8 KiB
Vue
<script setup lang="ts">
|
|
// Components
|
|
import Block from '~/components/pub/my-ui/doc-entry/block.vue'
|
|
import Cell from '~/components/pub/my-ui/doc-entry/cell.vue'
|
|
import Field from '~/components/pub/my-ui/doc-entry/field.vue'
|
|
import Label from '~/components/pub/my-ui/doc-entry/label.vue'
|
|
import TreeSelect from '~/components/pub/my-ui/select-tree/tree-select.vue'
|
|
|
|
// Types
|
|
import type { DivisionFormData } from '~/schemas/division.schema'
|
|
|
|
// Helpers
|
|
import type z from 'zod'
|
|
import { toTypedSchema } from '@vee-validate/zod'
|
|
import { useForm } from 'vee-validate'
|
|
import { genBase } from '~/models/_base'
|
|
|
|
interface Props {
|
|
schema: z.ZodSchema<any>
|
|
divisions: any[]
|
|
values: any
|
|
isLoading?: boolean
|
|
isReadonly?: boolean
|
|
}
|
|
|
|
const props = defineProps<Props>()
|
|
const isLoading = props.isLoading !== undefined ? props.isLoading : false
|
|
const isReadonly = props.isReadonly !== undefined ? props.isReadonly : false
|
|
const emit = defineEmits<{
|
|
submit: [values: DivisionFormData, resetForm: () => void]
|
|
cancel: [resetForm: () => void]
|
|
}>()
|
|
|
|
const { defineField, errors, meta } = useForm({
|
|
validationSchema: toTypedSchema(props.schema),
|
|
initialValues: {
|
|
code: '',
|
|
name: '',
|
|
parent_code: null,
|
|
} as Partial<DivisionFormData>,
|
|
})
|
|
|
|
const [code, codeAttrs] = defineField('code')
|
|
const [name, nameAttrs] = defineField('name')
|
|
const [parent, parentAttrs] = defineField('parent_code')
|
|
|
|
// Fill fields from props.values if provided
|
|
if (props.values) {
|
|
if (props.values.code !== undefined) code.value = props.values.code
|
|
if (props.values.name !== undefined) name.value = props.values.name
|
|
if (props.values.parent_code !== undefined) parent.value = String(props.values.parent_code)
|
|
}
|
|
|
|
const resetForm = () => {
|
|
code.value = ''
|
|
name.value = ''
|
|
parent.value = ''
|
|
}
|
|
|
|
// Form submission handler
|
|
function onSubmitForm() {
|
|
const formData: DivisionFormData = {
|
|
...genBase(),
|
|
name: name.value || '',
|
|
code: code.value || '',
|
|
parent_code: parent.value || '',
|
|
}
|
|
emit('submit', formData, resetForm)
|
|
}
|
|
|
|
// Form cancel handler
|
|
function onCancelForm() {
|
|
emit('cancel', resetForm)
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<form
|
|
id="form-division"
|
|
@submit.prevent
|
|
>
|
|
<Block
|
|
labelSize="thin"
|
|
class="!mb-2.5 !pt-0 xl:!mb-3"
|
|
:colCount="1"
|
|
>
|
|
<Cell>
|
|
<Label height="compact">Kode</Label>
|
|
<Field :errMessage="errors.code">
|
|
<Input
|
|
id="code"
|
|
v-model="code"
|
|
v-bind="codeAttrs"
|
|
:disabled="isLoading || isReadonly"
|
|
/>
|
|
</Field>
|
|
</Cell>
|
|
<Cell>
|
|
<Label height="compact">Nama</Label>
|
|
<Field :errMessage="errors.name">
|
|
<Input
|
|
id="name"
|
|
v-model="name"
|
|
v-bind="nameAttrs"
|
|
:disabled="isLoading || isReadonly"
|
|
/>
|
|
</Field>
|
|
</Cell>
|
|
<Cell>
|
|
<Label height="compact">Divisi Induk</Label>
|
|
<Field :errMessage="errors.parent_code">
|
|
<TreeSelect
|
|
id="parent"
|
|
v-model="parent"
|
|
v-bind="parentAttrs"
|
|
:data="divisions"
|
|
:disabled="isLoading || isReadonly"
|
|
placeholder="Pilih Divisi Induk"
|
|
search-placeholder="Cari divisi"
|
|
empty-message="Divisi tidak ditemukan"
|
|
:on-fetch-children="async (_parentId: string) => {}"
|
|
/>
|
|
</Field>
|
|
</Cell>
|
|
</Block>
|
|
<div class="my-2 flex justify-end gap-2 py-2">
|
|
<Button
|
|
type="button"
|
|
variant="secondary"
|
|
class="w-[120px]"
|
|
@click="onCancelForm"
|
|
>
|
|
Kembali
|
|
</Button>
|
|
<Button
|
|
v-if="!isReadonly"
|
|
type="button"
|
|
class="w-[120px]"
|
|
:disabled="isLoading || !meta.valid"
|
|
@click="onSubmitForm"
|
|
>
|
|
Simpan
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
</template>
|