139 lines
3.3 KiB
Vue
139 lines
3.3 KiB
Vue
<script setup lang="ts">
|
|
import { useRouter } from 'vue-router'
|
|
import type { ExposedForm } from '~/types/form'
|
|
import Action from '~/components/pub/my-ui/nav-footer/ba-dr-su.vue'
|
|
import { toast } from '~/components/pub/ui/toast'
|
|
import Confirmation from '~/components/pub/my-ui/confirmation/confirmation.vue'
|
|
import { KfrSchema, } from '~/schemas/kfr.schema'
|
|
import { handleActionSave } from '~/handlers/kfr.handler'
|
|
import { getDetail } from '~/services/kfr.service';
|
|
|
|
// #region Props & Emits
|
|
const props = withDefaults(defineProps<{
|
|
callbackUrl?: string
|
|
mode?: 'add' | 'edit'
|
|
}>(), {
|
|
mode: "add",
|
|
})
|
|
|
|
// form related state
|
|
const route = useRoute()
|
|
|
|
const encounterId = typeof route.params.id == 'string' ? parseInt(route.params.id) : 0
|
|
const kfrId = typeof route.params.kfr_id == 'string' ? parseInt(route.params.kfr_id) : 0
|
|
const inputForm = ref<ExposedForm<any> | null>(null)
|
|
// #endregion
|
|
|
|
// #region State & Computed
|
|
const router = useRouter()
|
|
const isConfirmationOpen = ref(false)
|
|
// #endregion
|
|
|
|
// #region Lifecycle Hooks
|
|
onMounted(() => {
|
|
if(props.mode === `edit`) init()
|
|
})
|
|
// #endregion
|
|
|
|
// #region Functions
|
|
async function init(){
|
|
const result = await getDetail(kfrId)
|
|
if (result.success) {
|
|
const currentValue = result.body?.data || {}
|
|
inputForm.value?.setValues(currentValue)
|
|
}
|
|
}
|
|
|
|
function goBack() {
|
|
router.go(-1)
|
|
}
|
|
|
|
async function handleConfirmAdd() {
|
|
const inputData: any = await composeFormData()
|
|
const response = await handleActionSave(
|
|
inputData,
|
|
() => { },
|
|
() => { },
|
|
toast,
|
|
)
|
|
|
|
const data = (response?.body?.data ?? null)
|
|
if (!data) return
|
|
goBack()
|
|
}
|
|
|
|
async function composeFormData(): Promise<any> {
|
|
const [input,] = await Promise.all([
|
|
inputForm.value?.validate(),
|
|
])
|
|
|
|
const results = [input]
|
|
const allValid = results.every((r) => r?.valid)
|
|
|
|
// exit, if form errors happend during validation
|
|
if (!allValid) return Promise.reject('Form validation failed')
|
|
|
|
const formData = input?.values
|
|
formData.encounter_id = encounterId
|
|
|
|
return new Promise((resolve) => resolve(formData))
|
|
}
|
|
// #endregion region
|
|
|
|
// #region Utilities & event handlers
|
|
async function handleActionClick(eventType: string) {
|
|
if (eventType === 'submit') {
|
|
isConfirmationOpen.value = true
|
|
}
|
|
|
|
if (eventType === 'back') {
|
|
if (props.callbackUrl) return navigateTo(props.callbackUrl)
|
|
goBack()
|
|
}
|
|
}
|
|
|
|
function handleCancelAdd() {
|
|
isConfirmationOpen.value = false
|
|
}
|
|
// #endregion
|
|
|
|
// #region Watchers
|
|
// #endregion
|
|
|
|
const initial = {
|
|
// subjective: '',
|
|
// objective: '',
|
|
// assesment: '',
|
|
// planningGoal: '',
|
|
// planningAction: '',
|
|
// planningEducation: '',
|
|
planningFrequency: 2,
|
|
followUpPlan: 'EVALUASI',
|
|
// followUpPlanDesc: '',
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="mb-5 border-b border-b-slate-300 pb-3 text-lg font-semibold xl:text-xl">
|
|
{{ props.mode === "add" ? `Tambah` : `Update` }} Formulir Rawat Jalan KFR
|
|
</div>
|
|
<AppKfrEntry
|
|
ref="inputForm"
|
|
:schema="KfrSchema"
|
|
:initial-values="initial"
|
|
/>
|
|
|
|
<div class="my-2 flex justify-end py-2">
|
|
<Action :enable-draft="false" @click="handleActionClick"/>
|
|
</div>
|
|
|
|
<Confirmation
|
|
v-model:open="isConfirmationOpen"
|
|
title="Simpan Data"
|
|
message="Apakah Anda yakin ingin menyimpan data ini?"
|
|
confirm-text="Simpan"
|
|
@confirm="handleConfirmAdd"
|
|
@cancel="handleCancelAdd"
|
|
/>
|
|
</template>
|