pingcrm/resources/js/Pages/Contacts/Edit.vue

104 lines
4.2 KiB
Vue
Raw Normal View History

2019-03-18 08:53:00 -03:00
<template>
<div>
2019-03-18 08:53:00 -03:00
<h1 class="mb-8 font-bold text-3xl">
<inertia-link class="text-indigo-400 hover:text-indigo-600" :href="route('contacts')">Contacts</inertia-link>
<span class="text-indigo-400 font-medium">/</span>
{{ form.first_name }} {{ form.last_name }}
2019-03-18 08:53:00 -03:00
</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-3xl">
2019-03-18 08:53:00 -03:00
<form @submit.prevent="submit">
<div class="p-8 -mr-6 -mb-8 flex flex-wrap">
2020-09-08 17:14:52 -03:00
<text-input v-model="form.first_name" :error="errors.first_name" class="pr-6 pb-8 w-full lg:w-1/2" label="First name" />
<text-input v-model="form.last_name" :error="errors.last_name" class="pr-6 pb-8 w-full lg:w-1/2" label="Last name" />
<select-input v-model="form.organization_id" :error="errors.organization_id" class="pr-6 pb-8 w-full lg:w-1/2" label="Organization">
2019-03-18 08:53:00 -03:00
<option :value="null" />
<option v-for="organization in organizations" :key="organization.id" :value="organization.id">{{ organization.name }}</option>
</select-input>
2020-09-08 17:14:52 -03:00
<text-input v-model="form.email" :error="errors.email" class="pr-6 pb-8 w-full lg:w-1/2" label="Email" />
<text-input v-model="form.phone" :error="errors.phone" class="pr-6 pb-8 w-full lg:w-1/2" label="Phone" />
<text-input v-model="form.address" :error="errors.address" class="pr-6 pb-8 w-full lg:w-1/2" label="Address" />
<text-input v-model="form.city" :error="errors.city" class="pr-6 pb-8 w-full lg:w-1/2" label="City" />
<text-input v-model="form.region" :error="errors.region" class="pr-6 pb-8 w-full lg:w-1/2" label="Province/State" />
<select-input v-model="form.country" :error="errors.country" class="pr-6 pb-8 w-full lg:w-1/2" label="Country">
2019-03-18 08:53:00 -03:00
<option :value="null" />
<option value="CA">Canada</option>
<option value="US">United States</option>
</select-input>
2020-09-08 17:14:52 -03:00
<text-input v-model="form.postal_code" :error="errors.postal_code" class="pr-6 pb-8 w-full lg:w-1/2" label="Postal code" />
2019-03-18 08:53:00 -03:00
</div>
<div class="px-8 py-4 bg-gray-100 border-t border-gray-200 flex items-center">
2020-01-09 00:16:10 -03:00
<button v-if="!contact.deleted_at" class="text-red-600 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>
2019-03-18 08:53:00 -03:00
</div>
</form>
</div>
</div>
2019-03-18 08:53:00 -03:00
</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 {
metaInfo() {
return {
title: `${this.form.first_name} ${this.form.last_name}`,
}
},
2019-12-18 15:49:19 -03:00
layout: Layout,
2019-03-18 08:53:00 -03:00
components: {
LoadingButton,
SelectInput,
TextInput,
TrashedMessage,
},
props: {
2020-09-08 17:14:52 -03:00
errors: Object,
2019-03-18 08:53:00 -03:00
contact: Object,
organizations: Array,
},
2019-04-24 15:45:13 -03:00
remember: 'form',
2019-03-18 08:53:00 -03:00
data() {
return {
sending: false,
2019-04-24 15:45:13 -03:00
form: {
2019-03-18 08:53:00 -03:00
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,
2019-04-24 15:45:13 -03:00
},
2019-03-18 08:53:00 -03:00
}
},
methods: {
submit() {
2020-09-24 12:37:26 -03:00
this.$inertia.put(this.route('contacts.update', this.contact.id), this.form, {
onStart: () => this.sending = true,
onFinish: () => this.sending = false,
})
2019-03-18 08:53:00 -03:00
},
destroy() {
if (confirm('Are you sure you want to delete this contact?')) {
2019-04-24 15:45:13 -03:00
this.$inertia.delete(this.route('contacts.destroy', this.contact.id))
2019-03-18 08:53:00 -03:00
}
},
restore() {
if (confirm('Are you sure you want to restore this contact?')) {
2019-04-24 15:45:13 -03:00
this.$inertia.put(this.route('contacts.restore', this.contact.id))
2019-03-18 08:53:00 -03:00
}
},
},
}
</script>