1dd8e8e7b3
commit 72ce2260c50597f782f07d29db3985607ecc2f34 Author: hasyim_kai <muhammad.hasyim.c.a@gmail.com> Date: Mon Nov 17 15:19:36 2025 +0700 Feat: add doc preview in Therpay protocol List commit 7032cd2409a660d40899ffd421137e4158cfde4a Author: hasyim_kai <muhammad.hasyim.c.a@gmail.com> Date: Wed Nov 12 15:34:30 2025 +0700 Fix: prepare API integration protokol terapi verification commit dbf6f78d00afc818baf2b34d128ee2153814cc88 Author: hasyim_kai <muhammad.hasyim.c.a@gmail.com> Date: Wed Nov 12 14:09:28 2025 +0700 Feat: add basic CRUD therapy protocol commit 46a44e90fe4d4097b5460d2d4e5689b2a5389467 Author: hasyim_kai <muhammad.hasyim.c.a@gmail.com> Date: Tue Nov 11 15:57:54 2025 +0700 Fix: Prepare protokol terapi API Integration commit 4674090566727cebd947e50e2c06c44e8c7afa7e Author: hasyim_kai <muhammad.hasyim.c.a@gmail.com> Date: Mon Nov 10 15:33:22 2025 +0700 Fix: hotfix style add protokol terapi commit 919c91abd8ef8b4cd193012eed7f5e8cf635cda2 Author: hasyim_kai <muhammad.hasyim.c.a@gmail.com> Date: Mon Nov 10 15:17:14 2025 +0700 Fix: Typo drpodown-action-p in protokol-terapi commit e21d30eacf1a08118e289d4bb64889e708d5023a Author: hasyim_kai <muhammad.hasyim.c.a@gmail.com> Date: Mon Nov 10 15:14:33 2025 +0700 Fix: add diagnose & procedure dialog picker in add protokol terapi commit 9a3d73b72b0dceea778d83e7630c5ead110a6a4c Author: hasyim_kai <muhammad.hasyim.c.a@gmail.com> Date: Tue Nov 4 10:21:24 2025 +0700 Fix: Add Schema therapy protocol rehab medik commit 4d8d2d633bbbd78038b1cc607558c1ceb31c5986 Author: hasyim_kai <muhammad.hasyim.c.a@gmail.com> Date: Tue Nov 4 09:30:55 2025 +0700 Fix: refactor Actions Btn ba-dr-su commit 5f290a6e4bd1559c0e5864a508c5ab650cfae6e8 Author: hasyim_kai <muhammad.hasyim.c.a@gmail.com> Date: Mon Nov 3 17:08:20 2025 +0700 Feat: UI protokol terapi in Rehab medik commit 63010f69ff30532bb8ac91443112f31d4942b221 Author: Khafid Prayoga <khafidp@pm.me> Date: Tue Oct 21 09:54:13 2025 +0700 wip: list protokol terapi commit 44eedc298680a5255fee0ee8feee3e24beda93dd Author: Khafid Prayoga <khafidp@pm.me> Date: Mon Oct 20 12:54:01 2025 +0700 feat(therapy-protocol): init form entry feat(therapy-protocol): init page routes wip: init entry form wip: form entry protokol terapi todo: table procedure, and diagnose picker wip: schema form new entry todo: picker/modal yang relateds ke form entry
122 lines
3.3 KiB
Vue
122 lines
3.3 KiB
Vue
<script setup lang="ts">
|
|
import type { FormErrors } from '~/types/error'
|
|
import { differenceInDays, differenceInMonths, differenceInYears, parseISO } from 'date-fns'
|
|
import { Input } from '~/components/pub/ui/input'
|
|
import { cn } from '~/lib/utils'
|
|
|
|
import * as DE from '~/components/pub/my-ui/doc-entry'
|
|
|
|
const props = defineProps<{
|
|
fieldName?: string
|
|
label?: string
|
|
placeholder?: string
|
|
errors?: FormErrors
|
|
class?: string
|
|
selectClass?: string
|
|
fieldGroupClass?: string
|
|
labelClass?: string
|
|
isRequired?: boolean
|
|
isDisabled?: boolean
|
|
isWithTime?: boolean
|
|
}>()
|
|
|
|
const {
|
|
fieldName = 'birthDate',
|
|
label = 'Tanggal Lahir',
|
|
placeholder = 'Pilih tanggal lahir',
|
|
errors,
|
|
class: containerClass,
|
|
fieldGroupClass,
|
|
labelClass,
|
|
isWithTime = false,
|
|
} = props
|
|
|
|
// Reactive variables for age calculation
|
|
const patientAge = ref<string>('Masukkan tanggal lahir')
|
|
|
|
// Function to calculate age with years, months, and days
|
|
function calculateAge(birthDate: string | Date | undefined): string {
|
|
if (!birthDate) {
|
|
return 'Masukkan tanggal lahir'
|
|
}
|
|
|
|
try {
|
|
let dateObj: Date
|
|
|
|
if (typeof birthDate === 'string') {
|
|
dateObj = parseISO(birthDate)
|
|
} else {
|
|
dateObj = birthDate
|
|
}
|
|
|
|
const today = new Date()
|
|
|
|
// Calculate years, months, and days
|
|
const totalYears = differenceInYears(today, dateObj)
|
|
|
|
// Calculate remaining months after years
|
|
const yearsPassed = new Date(dateObj)
|
|
yearsPassed.setFullYear(yearsPassed.getFullYear() + totalYears)
|
|
const remainingMonths = differenceInMonths(today, yearsPassed)
|
|
|
|
// Calculate remaining days after years and months
|
|
const monthsPassed = new Date(yearsPassed)
|
|
monthsPassed.setMonth(monthsPassed.getMonth() + remainingMonths)
|
|
const remainingDays = differenceInDays(today, monthsPassed)
|
|
|
|
// Format the result
|
|
const parts = []
|
|
if (totalYears > 0) parts.push(`${totalYears} Tahun`)
|
|
if (remainingMonths > 0) parts.push(`${remainingMonths} Bulan`)
|
|
if (remainingDays > 0) parts.push(`${remainingDays} Hari`)
|
|
|
|
return parts.length > 0 ? parts.join(' ') : '0 Hari'
|
|
} catch {
|
|
return 'Masukkan tanggal lahir'
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<DE.Cell :class="cn('select-field-group', fieldGroupClass, containerClass)">
|
|
<DE.Label
|
|
:label-for="fieldName"
|
|
:class="cn('select-field-label', labelClass)"
|
|
:is-required="isRequired && !isDisabled"
|
|
>
|
|
{{ label }}
|
|
</DE.Label>
|
|
<DE.Field
|
|
:id="fieldName"
|
|
:errors="errors"
|
|
:class="cn('select-field-wrapper')"
|
|
>
|
|
<FormField
|
|
v-slot="{ componentField }"
|
|
:name="fieldName"
|
|
>
|
|
<FormItem>
|
|
<FormControl>
|
|
<Input
|
|
id="birthDate"
|
|
:type="isWithTime ? 'datetime-local' : 'date'"
|
|
min="1900-01-01"
|
|
:max="new Date().toISOString().split('T')[0]"
|
|
v-bind="componentField"
|
|
:placeholder="placeholder"
|
|
:disabled="isDisabled"
|
|
@update:model-value="
|
|
(value: string | number) => {
|
|
const dateStr = typeof value === 'number' ? String(value) : value
|
|
patientAge = calculateAge(dateStr)
|
|
}
|
|
"
|
|
/>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
</FormField>
|
|
</DE.Field>
|
|
</DE.Cell>
|
|
</template>
|