164 lines
4.5 KiB
Vue
164 lines
4.5 KiB
Vue
<script setup lang="ts">
|
|
import type { HeaderPrep, RefSearchNav } from '~/components/pub/my-ui/data/types'
|
|
|
|
// #region Imports
|
|
import RecordConfirmation from '~/components/pub/my-ui/confirmation/record-confirmation.vue'
|
|
import { ActionEvents } from '~/components/pub/my-ui/data/types'
|
|
|
|
import Filter from '~/components/pub/my-ui/nav-header/filter.vue'
|
|
import Header from '~/components/pub/my-ui/nav-header/prep.vue'
|
|
import { usePaginatedList } from '~/composables/usePaginatedList'
|
|
import { getList, remove } from '~/services/vaccine-data.service'
|
|
import { toast } from '~/components/pub/ui/toast'
|
|
import type { Encounter } from '~/models/encounter'
|
|
import WarningAlert from '~/components/pub/my-ui/alert/warning-alert.vue'
|
|
import DocPreviewDialog from '~/components/pub/my-ui/modal/doc-preview-dialog.vue'
|
|
import Dialog from '~/components/pub/my-ui/modal/dialog.vue'
|
|
import type { VaccineData } from '~/models/vaccine-data'
|
|
import { medicalRoles } from '~/const/common/role'
|
|
// #endregion
|
|
|
|
// #region State
|
|
const props = withDefaults(defineProps<{
|
|
encounter_id: number
|
|
isBpjs?: boolean
|
|
redirectToForm?: (myRecord_id?: any) => void
|
|
redirectToDetail?: (myRecord_id: string|number) => void
|
|
}>(), {
|
|
isBpjs: false,
|
|
redirectToForm: () => { },
|
|
redirectToDetail: () => { }
|
|
})
|
|
const { user } = useUserStore()
|
|
|
|
const { data, isLoading, paginationMeta, searchInput, handlePageChange, handleSearch, fetchData } = usePaginatedList({
|
|
fetchFn: (params) => getList({ ...params, includes: '', }),
|
|
entityName: 'vaccine-data',
|
|
})
|
|
const dummy = [
|
|
{
|
|
"id": 1,
|
|
"date": new Date().toISOString(),
|
|
"name1": "Dr. Smith",
|
|
"name2": 1,
|
|
},
|
|
]
|
|
|
|
const isHistoryDialogOpen = ref(false)
|
|
const isDocPreviewDialogOpen = ref(false)
|
|
const isRecordConfirmationOpen = ref(false)
|
|
const summaryLoading = ref(false)
|
|
const isRequirementsMet = ref(true)
|
|
const vaccineData = ref<VaccineData | null>(null)
|
|
|
|
const recId = ref<number>(0)
|
|
const recAction = ref<string>('')
|
|
const recItem = ref<any>(null)
|
|
const timestamp = ref<any>(null)
|
|
|
|
const headerPrep: HeaderPrep = {
|
|
title: "Data Vaksin",
|
|
icon: 'i-lucide-syringe',
|
|
}
|
|
if(user.activeRole === 'emp|doc' || user.activeRole === 'system') {
|
|
headerPrep.addNav = {
|
|
label: "Data Vaksin",
|
|
onClick: () => {
|
|
props.redirectToForm()
|
|
},
|
|
};
|
|
}
|
|
// #endregion
|
|
|
|
// #region Lifecycle Hooks
|
|
onMounted(() => {
|
|
getListData()
|
|
})
|
|
// #endregion
|
|
|
|
// #region Functions
|
|
async function getListData() {
|
|
try {
|
|
summaryLoading.value = true
|
|
await new Promise((resolve) => setTimeout(resolve, 500))
|
|
} catch (error) {
|
|
console.error('Error fetching Data:', error)
|
|
} finally {
|
|
summaryLoading.value = false
|
|
}
|
|
}
|
|
async function handleConfirmDelete(record: any, action: string) {
|
|
if (action === 'delete' && record?.id) {
|
|
try {
|
|
const result = await remove(record.id)
|
|
if (result.success) {
|
|
toast({ title: 'Berhasil', description: 'Data berhasil dihapus', variant: 'default' })
|
|
await fetchData()
|
|
} else {
|
|
toast({ title: 'Gagal', description: `Data gagal dihapus`, variant: 'destructive' })
|
|
}
|
|
} catch (error) {
|
|
toast({ title: 'Gagal', description: `Something went wrong`, variant: 'destructive' })
|
|
}
|
|
}
|
|
}
|
|
|
|
function handleCancelConfirmation() {
|
|
// Reset record state when cancelled
|
|
recId.value = 0
|
|
recAction.value = ''
|
|
recItem.value = null
|
|
}
|
|
// #endregion
|
|
|
|
// #region Provide
|
|
provide('rec_id', recId)
|
|
provide('rec_action', recAction)
|
|
provide('rec_item', recItem)
|
|
provide('timestamp', timestamp)
|
|
provide('table_data_loader', isLoading)
|
|
provide('isHistoryDialogOpen', isHistoryDialogOpen)
|
|
// #endregion
|
|
|
|
// #region Watchers
|
|
watch([recId, recAction, timestamp], () => {
|
|
switch (recAction.value) {
|
|
case ActionEvents.showDetail:
|
|
props.redirectToDetail(recId.value)
|
|
break
|
|
|
|
case ActionEvents.showConfirmDelete:
|
|
isRecordConfirmationOpen.value = true
|
|
break
|
|
}
|
|
})
|
|
// #endregion
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<Header :prep="headerPrep" />
|
|
|
|
<AppVaccineDataList
|
|
:data="dummy"
|
|
:pagination-meta="paginationMeta"
|
|
@page-change="handlePageChange" />
|
|
|
|
<RecordConfirmation v-model:open="isRecordConfirmationOpen" action="delete" :record="recItem"
|
|
@confirm="handleConfirmDelete" @cancel="handleCancelConfirmation">
|
|
<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>
|
|
</div>
|
|
</template>
|
|
</RecordConfirmation>
|
|
</div>
|
|
</template>
|