154 lines
4.7 KiB
Vue
154 lines
4.7 KiB
Vue
<script setup lang="ts">
|
|
import { useForm } from '@inertiajs/vue3';
|
|
import { Save } from '@lucide/vue';
|
|
import { computed, watch } from 'vue';
|
|
import { toast } from 'vue-sonner';
|
|
import MediaImageUpload from '@/components/media/MediaImageUpload.vue';
|
|
import { Button } from '@/components/ui/button';
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
} from '@/components/ui/dialog';
|
|
import {
|
|
Field,
|
|
FieldError,
|
|
FieldGroup,
|
|
FieldLabel,
|
|
FieldSet,
|
|
} from '@/components/ui/field';
|
|
import { RupiahInput } from '@/components/ui/rupiah-input';
|
|
import { Textarea } from '@/components/ui/textarea';
|
|
import { parseRupiah } from '@/lib/rupiah';
|
|
import type { ExpenseListItem } from '@/types/expense';
|
|
import { appendRootPhotosToFormData, createMediaUploadState } from '@/types/media';
|
|
|
|
const open = defineModel<boolean>('open', { default: false });
|
|
|
|
const props = defineProps<{
|
|
expense?: ExpenseListItem | null;
|
|
}>();
|
|
|
|
const isEditing = computed(() => props.expense != null);
|
|
|
|
const form = useForm({
|
|
amount: '',
|
|
description: '',
|
|
media: createMediaUploadState(),
|
|
});
|
|
|
|
function resetForm() {
|
|
form.reset();
|
|
form.media = createMediaUploadState();
|
|
form.clearErrors();
|
|
}
|
|
|
|
function populateForm(expense: ExpenseListItem | null | undefined) {
|
|
resetForm();
|
|
|
|
if (!expense) {
|
|
return;
|
|
}
|
|
|
|
form.amount = String(expense.amount);
|
|
form.description = expense.description;
|
|
form.media = createMediaUploadState(expense.photos ?? []);
|
|
}
|
|
|
|
watch(
|
|
() => props.expense,
|
|
(expense) => {
|
|
populateForm(expense);
|
|
},
|
|
);
|
|
|
|
watch(open, (isOpen) => {
|
|
if (isOpen) {
|
|
populateForm(props.expense);
|
|
} else {
|
|
resetForm();
|
|
}
|
|
});
|
|
|
|
function buildFormData(forUpdate: boolean): FormData {
|
|
const formData = new FormData();
|
|
|
|
if (forUpdate) {
|
|
formData.append('_method', 'PUT');
|
|
}
|
|
|
|
formData.append('amount', parseRupiah(form.amount));
|
|
formData.append('description', form.description);
|
|
appendRootPhotosToFormData(formData, form.media);
|
|
|
|
return formData;
|
|
}
|
|
|
|
function formError(key: string): string | undefined {
|
|
return (form.errors as Record<string, string>)[key];
|
|
}
|
|
|
|
function submit() {
|
|
const options = {
|
|
forceFormData: true,
|
|
preserveScroll: true,
|
|
onSuccess: () => {
|
|
open.value = false;
|
|
},
|
|
onError: () => {
|
|
toast.error('Gagal menyimpan data. Periksa kembali formulir.');
|
|
},
|
|
};
|
|
|
|
const payload = buildFormData(isEditing.value);
|
|
|
|
if (isEditing.value && props.expense) {
|
|
form.transform(() => payload).post(`/admin/finance/expenses/${props.expense.id}`, options);
|
|
} else {
|
|
form.transform(() => payload).post('/admin/finance/expenses', options);
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<Dialog v-model:open="open">
|
|
<DialogContent class="sm:max-w-md">
|
|
<DialogHeader>
|
|
<DialogTitle>{{ isEditing ? 'Ubah Pengeluaran' : 'Tambah Pengeluaran' }}</DialogTitle>
|
|
</DialogHeader>
|
|
|
|
<form @submit.prevent="submit">
|
|
<FieldGroup>
|
|
<FieldSet class="grid gap-4">
|
|
<Field>
|
|
<FieldLabel for="expense-amount" required>Jumlah</FieldLabel>
|
|
<RupiahInput id="expense-amount" v-model="form.amount" autofocus />
|
|
<FieldError :errors="form.errors.amount ? [form.errors.amount] : []" />
|
|
</Field>
|
|
<Field>
|
|
<FieldLabel for="expense-description" required>Keterangan</FieldLabel>
|
|
<Textarea id="expense-description" v-model="form.description"
|
|
placeholder="Contoh: Pembelian perlengkapan toko" rows="3" />
|
|
<FieldError :errors="form.errors.description ? [form.errors.description] : []" />
|
|
</Field>
|
|
<MediaImageUpload id="expense-photos" v-model="form.media" label="Foto Bukti" required
|
|
:errors="formError('photos') ? [formError('photos')!] : []" />
|
|
</FieldSet>
|
|
</FieldGroup>
|
|
|
|
<DialogFooter class="mt-6">
|
|
<Button type="button" variant="outline" :disabled="form.processing" @click="open = false">
|
|
Batal
|
|
</Button>
|
|
<Button type="submit" :disabled="form.processing">
|
|
<Save class="size-4" />
|
|
{{ form.processing ? 'Menyimpan...' : 'Simpan' }}
|
|
</Button>
|
|
</DialogFooter>
|
|
</form>
|
|
</DialogContent>
|
|
</Dialog>
|
|
</template>
|