181 lines
4.9 KiB
Vue
181 lines
4.9 KiB
Vue
<script setup lang="ts">
|
|
// Components
|
|
import Dialog from '~/components/pub/base/modal/dialog.vue'
|
|
import Header from '~/components/pub/custom-ui/nav-header/prep.vue'
|
|
import RecordConfirmation from '~/components/pub/custom-ui/confirmation/record-confirmation.vue'
|
|
import AppSpecialistList from '~/components/app/specialist/list.vue'
|
|
import AppSpecialistEntryForm from '~/components/app/specialist/entry-form.vue'
|
|
|
|
// Helpers
|
|
import { usePaginatedList } from '~/composables/usePaginatedList'
|
|
import { toast } from '~/components/pub/ui/toast'
|
|
|
|
// Types
|
|
import { ActionEvents, type HeaderPrep } from '~/components/pub/custom-ui/data/types'
|
|
import { SpecialistSchema, type SpecialistFormData } from '~/schemas/specialist.schema'
|
|
import type { Unit } from '~/models/unit'
|
|
|
|
// Handlers
|
|
import {
|
|
recId,
|
|
recAction,
|
|
recItem,
|
|
isReadonly,
|
|
isProcessing,
|
|
isFormEntryDialogOpen,
|
|
isRecordConfirmationOpen,
|
|
handleActionSave,
|
|
handleActionEdit,
|
|
handleActionRemove,
|
|
handleCancelForm,
|
|
} from '~/handlers/specialist.handler'
|
|
|
|
// Services
|
|
import { getSpecialists, getSpecialistDetail } from '~/services/specialist.service'
|
|
import { getUnits } from '~/services/unit.service'
|
|
|
|
const units = ref<{ value: string; label: string }[]>([])
|
|
const title = ref('')
|
|
|
|
const {
|
|
data,
|
|
isLoading,
|
|
paginationMeta,
|
|
searchInput,
|
|
handlePageChange,
|
|
handleSearch,
|
|
fetchData: getSpecialistList,
|
|
} = usePaginatedList({
|
|
fetchFn: async ({ page, search }) => {
|
|
const result = await getSpecialists({ search, page })
|
|
return { success: result.success || false, body: result.body || {} }
|
|
},
|
|
entityName: 'specialist',
|
|
})
|
|
|
|
const headerPrep: HeaderPrep = {
|
|
title: 'Specialist',
|
|
icon: 'i-lucide-box',
|
|
refSearchNav: {
|
|
placeholder: 'Cari (min. 3 karakter)...',
|
|
minLength: 3,
|
|
debounceMs: 500,
|
|
showValidationFeedback: true,
|
|
onInput: (value: string) => {
|
|
searchInput.value = value
|
|
},
|
|
onClick: () => {},
|
|
onClear: () => {},
|
|
},
|
|
addNav: {
|
|
label: 'Tambah',
|
|
icon: 'i-lucide-plus',
|
|
onClick: () => {
|
|
recItem.value = null
|
|
recId.value = 0
|
|
isFormEntryDialogOpen.value = true
|
|
isReadonly.value = false
|
|
},
|
|
},
|
|
}
|
|
|
|
provide('rec_id', recId)
|
|
provide('rec_action', recAction)
|
|
provide('rec_item', recItem)
|
|
provide('table_data_loader', isLoading)
|
|
|
|
const getCurrentSpecialistDetail = async (id: number | string) => {
|
|
const result = await getSpecialistDetail(id)
|
|
if (result.success) {
|
|
const currentValue = result.body?.data || {}
|
|
recItem.value = currentValue
|
|
isFormEntryDialogOpen.value = true
|
|
}
|
|
}
|
|
|
|
const getUnitList = async () => {
|
|
const result = await getUnits()
|
|
if (result.success) {
|
|
const currentUnits = result.body?.data || []
|
|
units.value = currentUnits.map((item: Unit) => ({ value: item.id ? Number(item.id) : item.code, label: item.name }))
|
|
}
|
|
}
|
|
|
|
// Watch for row actions when recId or recAction changes
|
|
watch([recId, recAction], () => {
|
|
switch (recAction.value) {
|
|
case ActionEvents.showDetail:
|
|
getCurrentSpecialistDetail(recId.value)
|
|
title.value = 'Detail Spesialis'
|
|
isReadonly.value = true
|
|
break
|
|
case ActionEvents.showEdit:
|
|
getCurrentSpecialistDetail(recId.value)
|
|
title.value = 'Edit Spesialis'
|
|
isReadonly.value = false
|
|
break
|
|
case ActionEvents.showConfirmDelete:
|
|
isRecordConfirmationOpen.value = true
|
|
break
|
|
}
|
|
})
|
|
|
|
onMounted(async () => {
|
|
await getUnitList()
|
|
await getSpecialistList()
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<Header
|
|
v-model="searchInput"
|
|
:prep="headerPrep"
|
|
:ref-search-nav="headerPrep.refSearchNav"
|
|
@search="handleSearch"
|
|
class="mb-4 xl:mb-5"
|
|
/>
|
|
<AppSpecialistList :data="data" :pagination-meta="paginationMeta" @page-change="handlePageChange" />
|
|
|
|
<Dialog
|
|
v-model:open="isFormEntryDialogOpen"
|
|
:title="!!recItem ? title : 'Tambah Spesialis'"
|
|
size="lg"
|
|
prevent-outside
|
|
>
|
|
<AppSpecialistEntryForm
|
|
:schema="SpecialistSchema"
|
|
:units="units"
|
|
:values="recItem"
|
|
:is-loading="isProcessing"
|
|
:is-readonly="isReadonly"
|
|
@submit="
|
|
(values: SpecialistFormData | Record<string, any>, resetForm: () => void) => {
|
|
if (recId > 0) {
|
|
handleActionEdit(recId, values, getSpecialistList, resetForm, toast)
|
|
return
|
|
}
|
|
handleActionSave(values, getSpecialistList, resetForm, toast)
|
|
}
|
|
"
|
|
@cancel="handleCancelForm"
|
|
/>
|
|
</Dialog>
|
|
|
|
<!-- Record Confirmation Modal -->
|
|
<RecordConfirmation
|
|
v-model:open="isRecordConfirmationOpen"
|
|
action="delete"
|
|
:record="recItem"
|
|
@confirm="() => handleActionRemove(recId, getSpecialistList, toast)"
|
|
@cancel=""
|
|
>
|
|
<template #default="{ record }">
|
|
<div class="text-sm">
|
|
<p><strong>ID:</strong> {{ record?.id }}</p>
|
|
<p v-if="record?.name"><strong>Nama:</strong> {{ record.name }}</p>
|
|
<p v-if="record?.code"><strong>Kode:</strong> {{ record.code }}</p>
|
|
</div>
|
|
</template>
|
|
</RecordConfirmation>
|
|
</template>
|