101 lines
4.2 KiB
Vue
101 lines
4.2 KiB
Vue
<template>
|
|
<layout :title="`${form.first_name} ${form.last_name}`">
|
|
<h1 class="mb-8 font-bold text-3xl">
|
|
<inertia-link class="text-indigo-light hover:text-indigo-dark" :href="route('contacts')">Contacts</inertia-link>
|
|
<span class="text-indigo-light font-medium">/</span>
|
|
{{ form.first_name }} {{ form.last_name }}
|
|
</h1>
|
|
<trashed-message v-if="contact.deleted_at" class="mb-6" @restore="restore">
|
|
This contact has been deleted.
|
|
</trashed-message>
|
|
<div class="bg-white rounded shadow overflow-hidden max-w-lg">
|
|
<form @submit.prevent="submit">
|
|
<div class="p-8 -mr-6 -mb-8 flex flex-wrap">
|
|
<text-input v-model="form.first_name" :errors="errors.first_name" class="pr-6 pb-8 w-full lg:w-1/2" label="First name" />
|
|
<text-input v-model="form.last_name" :errors="errors.last_name" class="pr-6 pb-8 w-full lg:w-1/2" label="Last name" />
|
|
<select-input v-model="form.organization_id" :errors="errors.organization_id" class="pr-6 pb-8 w-full lg:w-1/2" label="Organization">
|
|
<option :value="null" />
|
|
<option v-for="organization in organizations" :key="organization.id" :value="organization.id">{{ organization.name }}</option>
|
|
</select-input>
|
|
<text-input v-model="form.email" :errors="errors.email" class="pr-6 pb-8 w-full lg:w-1/2" label="Email" />
|
|
<text-input v-model="form.phone" :errors="errors.phone" class="pr-6 pb-8 w-full lg:w-1/2" label="Phone" />
|
|
<text-input v-model="form.address" :errors="errors.address" class="pr-6 pb-8 w-full lg:w-1/2" label="Address" />
|
|
<text-input v-model="form.city" :errors="errors.city" class="pr-6 pb-8 w-full lg:w-1/2" label="City" />
|
|
<text-input v-model="form.region" :errors="errors.region" class="pr-6 pb-8 w-full lg:w-1/2" label="Province/State" />
|
|
<select-input v-model="form.country" :errors="errors.country" class="pr-6 pb-8 w-full lg:w-1/2" label="Country">
|
|
<option :value="null" />
|
|
<option value="CA">Canada</option>
|
|
<option value="US">United States</option>
|
|
</select-input>
|
|
<text-input v-model="form.postal_code" :errors="errors.postal_code" class="pr-6 pb-8 w-full lg:w-1/2" label="Postal code" />
|
|
</div>
|
|
<div class="px-8 py-4 bg-grey-lightest border-t border-grey-lighter flex items-center">
|
|
<button v-if="!contact.deleted_at" class="text-red hover:underline" tabindex="-1" type="button" @click="destroy">Delete Contact</button>
|
|
<loading-button :loading="sending" class="btn-indigo ml-auto" type="submit">Update Contact</loading-button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</layout>
|
|
</template>
|
|
|
|
<script>
|
|
import Layout from '@/Shared/Layout'
|
|
import LoadingButton from '@/Shared/LoadingButton'
|
|
import SelectInput from '@/Shared/SelectInput'
|
|
import TextInput from '@/Shared/TextInput'
|
|
import TrashedMessage from '@/Shared/TrashedMessage'
|
|
|
|
export default {
|
|
components: {
|
|
Layout,
|
|
LoadingButton,
|
|
SelectInput,
|
|
TextInput,
|
|
TrashedMessage,
|
|
},
|
|
props: {
|
|
contact: Object,
|
|
organizations: Array,
|
|
errors: {
|
|
type: Object,
|
|
default: () => ({}),
|
|
},
|
|
},
|
|
remember: 'form',
|
|
data() {
|
|
return {
|
|
sending: false,
|
|
form: {
|
|
first_name: this.contact.first_name,
|
|
last_name: this.contact.last_name,
|
|
organization_id: this.contact.organization_id,
|
|
email: this.contact.email,
|
|
phone: this.contact.phone,
|
|
address: this.contact.address,
|
|
city: this.contact.city,
|
|
region: this.contact.region,
|
|
country: this.contact.country,
|
|
postal_code: this.contact.postal_code,
|
|
},
|
|
}
|
|
},
|
|
methods: {
|
|
submit() {
|
|
this.sending = true
|
|
this.$inertia.put(this.route('contacts.update', this.contact.id), this.form)
|
|
.then(() => this.sending = false)
|
|
},
|
|
destroy() {
|
|
if (confirm('Are you sure you want to delete this contact?')) {
|
|
this.$inertia.delete(this.route('contacts.destroy', this.contact.id))
|
|
}
|
|
},
|
|
restore() {
|
|
if (confirm('Are you sure you want to restore this contact?')) {
|
|
this.$inertia.put(this.route('contacts.restore', this.contact.id))
|
|
}
|
|
},
|
|
},
|
|
}
|
|
</script>
|