| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <script setup>
- import { computed, watch, ref } from 'vue'
- import { Inertia } from '@inertiajs/inertia'
- import { Head, useForm, usePage } from '@inertiajs/inertia-vue3'
- import AppLayout from '@/layouts/AppLayout.vue'
- import AppDialog from '@/components/AppDialog.vue'
- import AppInputText from '@/components/AppInputText.vue'
-
- const props = defineProps({
- member: Object,
- })
-
- const errors = computed(() => usePage().props.value.errors)
-
- watch(errors, () => {
- form.clearErrors()
- })
-
- const visibleDialog = ref(false)
-
- const confirmDialog = () => {
- visibleDialog.value = true
- }
-
- const onAgree = () => Inertia.delete(route('members.destroy', props.member.id))
-
- const onCancel = () => (visibleDialog.value = false)
-
- const form = useForm({
- name: props.member.name,
- phone: props.member.phone,
- })
-
- const submit = () => {
- form.put(route('members.update', props.member.id))
- }
- </script>
-
- <template>
- <Head title="Ubah Member" />
-
- <AppLayout>
- <div class="grid">
- <div class="col-12 md:col-8">
- <Card>
- <template #title> Ubah Member </template>
- <template #content>
- <div class="grid">
- <div class="col-12 md:col-6">
- <AppInputText v-model="form.name" label="Nama" placeholder="nama" :error="form.errors.name" />
- </div>
-
- <div class="col-12 md:col-6">
- <AppInputText v-model="form.phone" label="Nomor HP" placeholder="nomor hp" :error="form.errors.phone" />
- </div>
- </div>
- </template>
-
- <template #footer>
- <div class="grid">
- <div class="col-12 md:col-6 flex flex-column md:flex-row justify-content-center md:justify-content-start">
- <AppDialog
- message="Yakin akan menghapus data ini?"
- v-model:visible="visibleDialog"
- @agree="onAgree"
- @cancel="onCancel"
- />
-
- <Button
- label="Hapus"
- icon="pi pi-trash"
- class="p-button-outlined p-button-danger"
- @click="confirmDialog"
- />
- </div>
-
- <div class="col-12 md:col-6 flex flex-column md:flex-row justify-content-center md:justify-content-end">
- <Button
- label="Simpan"
- icon="pi pi-check"
- class="p-button-outlined"
- :disabled="form.processing"
- @click="submit"
- />
- </div>
- </div>
- </template>
- </Card>
- </div>
- </div>
- </AppLayout>
- </template>
|