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

127 lines
5.4 KiB
Vue
Raw Normal View History

2019-03-18 08:53:00 -03:00
<template>
<layout :title="form.name">
2019-03-18 08:53:00 -03:00
<h1 class="mb-8 font-bold text-3xl">
<inertia-link class="text-indigo-light hover:text-indigo-dark" :href="route('organizations')">Organizations</inertia-link>
<span class="text-indigo-light font-medium">/</span>
{{ form.name }}
2019-03-18 08:53:00 -03:00
</h1>
<trashed-message v-if="organization.deleted_at" class="mb-6" @restore="restore">
This organization 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">
2019-05-22 10:37:04 -03:00
<text-input v-model="form.name" :errors="$page.errors.name" class="pr-6 pb-8 w-full lg:w-1/2" label="Name" />
<text-input v-model="form.email" :errors="$page.errors.email" class="pr-6 pb-8 w-full lg:w-1/2" label="Email" />
<text-input v-model="form.phone" :errors="$page.errors.phone" class="pr-6 pb-8 w-full lg:w-1/2" label="Phone" />
<text-input v-model="form.address" :errors="$page.errors.address" class="pr-6 pb-8 w-full lg:w-1/2" label="Address" />
<text-input v-model="form.city" :errors="$page.errors.city" class="pr-6 pb-8 w-full lg:w-1/2" label="City" />
<text-input v-model="form.region" :errors="$page.errors.region" class="pr-6 pb-8 w-full lg:w-1/2" label="Province/State" />
<select-input v-model="form.country" :errors="$page.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>
2019-05-22 10:37:04 -03:00
<text-input v-model="form.postal_code" :errors="$page.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-grey-lightest border-t border-grey-lighter flex items-center">
<button v-if="!organization.deleted_at" class="text-red hover:underline" tabindex="-1" type="button" @click="destroy">Delete Organization</button>
<loading-button :loading="sending" class="btn-indigo ml-auto" type="submit">Update Organization</loading-button>
2019-03-18 08:53:00 -03:00
</div>
</form>
</div>
<h2 class="mt-12 font-bold text-2xl">Contacts</h2>
<div class="mt-6 bg-white rounded shadow overflow-x-auto">
<table class="w-full whitespace-no-wrap">
<tr class="text-left font-bold">
<th class="px-6 pt-6 pb-4">Name</th>
<th class="px-6 pt-6 pb-4">City</th>
<th class="px-6 pt-6 pb-4" colspan="2">Phone</th>
</tr>
<tr v-for="contact in organization.contacts" :key="contact.id" class="hover:bg-grey-lightest focus-within:bg-grey-lightest">
<td class="border-t">
<inertia-link class="px-6 py-4 flex items-center focus:text-indigo" :href="route('contacts.edit', contact.id)">
{{ contact.name }}
<icon v-if="contact.deleted_at" name="trash" class="flex-no-shrink w-3 h-3 fill-grey ml-2" />
</inertia-link>
</td>
<td class="border-t">
<inertia-link class="px-6 py-4 flex items-center" :href="route('contacts.edit', contact.id)" tabindex="-1">
{{ contact.city }}
</inertia-link>
</td>
<td class="border-t">
<inertia-link class="px-6 py-4 flex items-center" :href="route('contacts.edit', contact.id)" tabindex="-1">
{{ contact.phone }}
</inertia-link>
</td>
<td class="border-t w-px">
<inertia-link class="px-4 flex items-center" :href="route('contacts.edit', contact.id)" tabindex="-1">
<icon name="cheveron-right" class="block w-6 h-6 fill-grey" />
</inertia-link>
</td>
</tr>
<tr v-if="organization.contacts.length === 0">
<td class="border-t px-6 py-4" colspan="4">No contacts found.</td>
</tr>
</table>
</div>
</layout>
</template>
<script>
import Icon from '@/Shared/Icon'
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: {
Icon,
Layout,
LoadingButton,
SelectInput,
TextInput,
TrashedMessage,
},
props: {
organization: Object,
},
2019-04-25 09:13:15 -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
name: this.organization.name,
email: this.organization.email,
phone: this.organization.phone,
address: this.organization.address,
city: this.organization.city,
region: this.organization.region,
country: this.organization.country,
postal_code: this.organization.postal_code,
2019-04-24 15:45:13 -03:00
},
2019-03-18 08:53:00 -03:00
}
},
methods: {
submit() {
this.sending = true
2019-04-24 15:45:13 -03:00
this.$inertia.put(this.route('organizations.update', this.organization.id), this.form)
.then(() => this.sending = false)
2019-03-18 08:53:00 -03:00
},
destroy() {
if (confirm('Are you sure you want to delete this organization?')) {
2019-04-24 15:45:13 -03:00
this.$inertia.delete(this.route('organizations.destroy', this.organization.id))
2019-03-18 08:53:00 -03:00
}
},
restore() {
if (confirm('Are you sure you want to restore this organization?')) {
2019-04-24 15:45:13 -03:00
this.$inertia.put(this.route('organizations.restore', this.organization.id))
2019-03-18 08:53:00 -03:00
}
},
},
}
</script>