180 lines
4.2 KiB
Vue
180 lines
4.2 KiB
Vue
<script setup lang="ts">
|
|
// Components
|
|
import Dialog from '~/components/pub/my-ui/modal/dialog.vue'
|
|
import Header from '~/components/pub/my-ui/nav-header/prep.vue'
|
|
import RecordConfirmation from '~/components/pub/my-ui/confirmation/record-confirmation.vue'
|
|
import List from '~/components/app/general-consent/list.vue'
|
|
import Entry from '~/components/app/general-consent/entry.vue'
|
|
|
|
// Helpers
|
|
import { usePaginatedList } from '~/composables/usePaginatedList'
|
|
import { toast } from '~/components/pub/ui/toast'
|
|
|
|
// Types
|
|
import { ActionEvents, type HeaderPrep } from '~/components/pub/my-ui/data/types'
|
|
import { GeneralConsentSchema, type GeneralConsentFormData } from '~/schemas/general-consent.schema'
|
|
|
|
// Handlers
|
|
import {
|
|
recId,
|
|
recAction,
|
|
recItem,
|
|
isReadonly,
|
|
isProcessing,
|
|
isFormEntryDialogOpen,
|
|
isRecordConfirmationOpen,
|
|
onResetState,
|
|
handleActionSave,
|
|
handleActionEdit,
|
|
handleActionRemove,
|
|
handleCancelForm,
|
|
} from '~/handlers/general-consent.handler'
|
|
|
|
// Services
|
|
import { getList, getDetail } from '~/services/general-consent.service'
|
|
|
|
// Models
|
|
import type { Encounter } from '~/models/encounter'
|
|
|
|
// Props
|
|
interface Props {
|
|
encounter: Encounter
|
|
}
|
|
const props = defineProps<Props>()
|
|
const emits = defineEmits(['add', 'edit'])
|
|
const router = useRouter()
|
|
const route = useRoute()
|
|
|
|
const { goToEntry, backToList } = useQueryCRUDMode('mode')
|
|
|
|
let units = ref<{ value: string; label: string }[]>([])
|
|
const encounterId = ref<number>(props?.encounter?.id || 0)
|
|
const title = ref('')
|
|
|
|
const {
|
|
data,
|
|
isLoading,
|
|
paginationMeta,
|
|
searchInput,
|
|
handlePageChange,
|
|
handleSearch,
|
|
fetchData: getMyList,
|
|
} = usePaginatedList({
|
|
fetchFn: async ({ page, search }) => {
|
|
const result = await getList({ 'encounter-id': props.encounter.id, includes: '', search, page })
|
|
if (result.success) {
|
|
data.value = result.body.data
|
|
}
|
|
return { success: result.success || false, body: result.body || {} }
|
|
},
|
|
entityName: 'general-consent',
|
|
})
|
|
|
|
const headerPrep: HeaderPrep = {
|
|
title: 'General Consent',
|
|
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: () => {
|
|
goToEntry()
|
|
},
|
|
},
|
|
}
|
|
|
|
const goEdit = (id: string) => {
|
|
router.replace({
|
|
path: route.path,
|
|
query: {
|
|
...route.query,
|
|
mode: 'entry',
|
|
'record-id': id,
|
|
},
|
|
})
|
|
}
|
|
|
|
const today = new Date()
|
|
|
|
provide('rec_id', recId)
|
|
provide('rec_action', recAction)
|
|
provide('rec_item', recItem)
|
|
provide('table_data_loader', isLoading)
|
|
|
|
const getMyDetail = async (id: number | string) => {
|
|
const result = await getDetail(id)
|
|
if (result.success) {
|
|
const currentValue = result.body?.data || {}
|
|
recItem.value = currentValue
|
|
isFormEntryDialogOpen.value = true
|
|
}
|
|
}
|
|
|
|
// Watch for row actions when recId or recAction changes
|
|
watch(recId, () => {
|
|
console.log('recId', recId.value)
|
|
if (recAction.value === ActionEvents.showEdit) {
|
|
goEdit(recId.value)
|
|
return
|
|
} else {
|
|
isRecordConfirmationOpen.value = true
|
|
}
|
|
})
|
|
|
|
onMounted(async () => {
|
|
await getMyList()
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<Header
|
|
v-model="searchInput"
|
|
:prep="headerPrep"
|
|
:ref-search-nav="headerPrep.refSearchNav"
|
|
@search="handleSearch"
|
|
class="mb-4 xl:mb-5"
|
|
/>
|
|
|
|
<List
|
|
:data="data"
|
|
:pagination-meta="paginationMeta"
|
|
@page-change="handlePageChange"
|
|
/>
|
|
|
|
<!-- Record Confirmation Modal -->
|
|
<RecordConfirmation
|
|
v-model:open="isRecordConfirmationOpen"
|
|
action="delete"
|
|
:record="recItem"
|
|
@confirm="() => handleActionRemove(recId, getMyList, 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>
|