purityselect/resources/js/pages/patient/AddEditAddressDialog.vue
2024-10-25 01:05:27 +05:00

206 lines
7.0 KiB
Vue

<script setup>
const props = defineProps({
billingAddress: {
type: Object,
required: false,
default: () => ({
firstName: "",
lastName: "",
selectedCountry: null,
addressLine1: "",
addressLine2: "",
landmark: "",
contact: "",
country: null,
state: "",
zipCode: null,
}),
},
isDialogVisible: {
type: Boolean,
required: true,
},
});
const emit = defineEmits(["update:isDialogVisible", "submit"]);
const billingAddress = ref(structuredClone(toRaw(props.billingAddress)));
const resetForm = () => {
emit("update:isDialogVisible", false);
billingAddress.value = structuredClone(toRaw(props.billingAddress));
};
const onFormSubmit = () => {
emit("update:isDialogVisible", false);
emit("submit", billingAddress.value);
};
const selectedAddress = ref("Home");
const addressTypes = [
{
title: "Home",
desc: "Delivery Time (7am - 9pm)",
value: "Home",
icon: "ri-home-smile-2-line",
},
{
title: "Office",
desc: "Delivery Time (10am - 6pm)",
value: "Office",
icon: "ri-building-line",
},
];
</script>
<template>
<VDialog
:width="$vuetify.display.smAndDown ? 'auto' : 900"
:model-value="props.isDialogVisible"
@update:model-value="(val) => $emit('update:isDialogVisible', val)"
>
<VCard v-if="props.billingAddress" class="pa-sm-11 pa-3">
<VCardText class="pt-5">
<!-- 👉 dialog close btn -->
<!-- 👉 Title -->
<div class="text-center mb-6">
<h4 class="text-h4 mb-2">
{{
props.billingAddress.firstName ? "Edit" : "Add New"
}}
Address
</h4>
<p class="text-body-1">Add Address for future billing</p>
</div>
<CustomRadios
v-model:selected-radio="selectedAddress"
:radio-content="addressTypes"
:grid-column="{ sm: '6', cols: '12' }"
class="mb-5"
>
<template #default="items">
<div class="d-flex flex-column">
<div class="d-flex mb-2 align-center gap-x-1">
<VIcon :icon="items.item.icon" size="20" />
<div
class="text-body-1 font-weight-medium text-high-emphasis"
>
{{ items.item.title }}
</div>
</div>
<p class="text-body-2 mb-0">
{{ items.item.desc }}
</p>
</div>
</template>
</CustomRadios>
<!-- 👉 Form -->
<VForm @submit.prevent="onFormSubmit">
<VRow>
<!-- 👉 First Name -->
<VCol cols="12" md="6">
<VTextField
v-model="billingAddress.firstName"
label="First Name"
placeholder="John"
/>
</VCol>
<!-- 👉 Last Name -->
<VCol cols="12" md="6">
<VTextField
v-model="billingAddress.lastName"
label="Last Name"
placeholder="Doe"
/>
</VCol>
<!-- 👉 Select country -->
<VCol cols="12">
<VSelect
v-model="billingAddress.selectedCountry"
label="Select Country"
placeholder="Select Country"
:items="['USA', 'Canada', 'NZ', 'Aus']"
/>
</VCol>
<!-- 👉 Address Line 1 -->
<VCol cols="12">
<VTextField
v-model="billingAddress.addressLine1"
label="Address Line 1"
placeholder="1, New Street"
/>
</VCol>
<!-- 👉 Address Line 2 -->
<VCol cols="12">
<VTextField
v-model="billingAddress.addressLine2"
label="Address Line 2"
placeholder="Near hospital"
/>
</VCol>
<!-- 👉 Landmark -->
<VCol cols="12">
<VTextField
v-model="billingAddress.landmark"
label="Landmark & City"
placeholder="Near hospital, New York"
/>
</VCol>
<!-- 👉 State -->
<VCol cols="12" md="6">
<VTextField
v-model="billingAddress.state"
label="State/Province"
placeholder="New York"
/>
</VCol>
<!-- 👉 Zip Code -->
<VCol cols="12" md="6">
<VTextField
v-model="billingAddress.zipCode"
label="Zip Code"
placeholder="123123"
type="number"
/>
</VCol>
<VCol cols="12">
<VSwitch
label="Make this default shipping address"
/>
</VCol>
<!-- 👉 Submit and Cancel button -->
<VCol cols="12" class="text-center">
<VBtn type="submit" class="me-3"> submit </VBtn>
<VBtn
variant="outlined"
color="secondary"
@click="resetForm"
>
Cancel
</VBtn>
</VCol>
</VRow>
</VForm>
</VCardText>
</VCard>
</VDialog>
</template>