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

126 lines
5.2 KiB
Vue
Raw Normal View History

2019-03-18 08:53:00 -03:00
<template>
<div>
2021-12-08 12:15:39 -03:00
<Head :title="form.name" />
2021-12-08 14:52:56 -03:00
<h1 class="mb-8 text-3xl font-bold">
2021-12-08 12:15:39 -03:00
<Link class="text-indigo-400 hover:text-indigo-600" href="/organizations">Organizations</Link>
<span class="text-indigo-400 font-medium">/</span>
{{ form.name }}
2019-03-18 08:53:00 -03:00
</h1>
2021-12-08 14:52:56 -03:00
<trashed-message v-if="organization.deleted_at" class="mb-6" @restore="restore"> This organization has been deleted. </trashed-message>
<div class="max-w-3xl bg-white rounded-md shadow overflow-hidden">
2021-02-27 09:58:58 -03:00
<form @submit.prevent="update">
2021-12-08 14:52:56 -03:00
<div class="flex flex-wrap -mb-8 -mr-6 p-8">
<text-input v-model="form.name" :error="form.errors.name" class="pb-8 pr-6 w-full lg:w-1/2" label="Name" />
<text-input v-model="form.email" :error="form.errors.email" class="pb-8 pr-6 w-full lg:w-1/2" label="Email" />
<text-input v-model="form.phone" :error="form.errors.phone" class="pb-8 pr-6 w-full lg:w-1/2" label="Phone" />
<text-input v-model="form.address" :error="form.errors.address" class="pb-8 pr-6 w-full lg:w-1/2" label="Address" />
<text-input v-model="form.city" :error="form.errors.city" class="pb-8 pr-6 w-full lg:w-1/2" label="City" />
<text-input v-model="form.region" :error="form.errors.region" class="pb-8 pr-6 w-full lg:w-1/2" label="Province/State" />
<select-input v-model="form.country" :error="form.errors.country" class="pb-8 pr-6 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>
2021-12-08 14:52:56 -03:00
<text-input v-model="form.postal_code" :error="form.errors.postal_code" class="pb-8 pr-6 w-full lg:w-1/2" label="Postal code" />
2019-03-18 08:53:00 -03:00
</div>
2021-12-08 14:52:56 -03:00
<div class="flex items-center px-8 py-4 bg-gray-50 border-t border-gray-100">
2020-01-09 00:16:10 -03:00
<button v-if="!organization.deleted_at" class="text-red-600 hover:underline" tabindex="-1" type="button" @click="destroy">Delete Organization</button>
<loading-button :loading="form.processing" class="btn-indigo ml-auto" type="submit">Update Organization</loading-button>
2019-03-18 08:53:00 -03:00
</div>
</form>
</div>
2021-12-08 14:52:56 -03:00
<h2 class="mt-12 text-2xl font-bold">Contacts</h2>
2019-03-18 08:53:00 -03:00
<div class="mt-6 bg-white rounded shadow overflow-x-auto">
<table class="w-full whitespace-nowrap">
2019-03-18 08:53:00 -03:00
<tr class="text-left font-bold">
2021-12-08 14:52:56 -03:00
<th class="pb-4 pt-6 px-6">Name</th>
<th class="pb-4 pt-6 px-6">City</th>
<th class="pb-4 pt-6 px-6" colspan="2">Phone</th>
2019-03-18 08:53:00 -03:00
</tr>
<tr v-for="contact in organization.contacts" :key="contact.id" class="hover:bg-gray-100 focus-within:bg-gray-100">
2019-03-18 08:53:00 -03:00
<td class="border-t">
2021-12-08 14:52:56 -03:00
<Link class="flex items-center px-6 py-4 focus:text-indigo-500" :href="`/contacts/${contact.id}/edit`">
2019-03-18 08:53:00 -03:00
{{ contact.name }}
2021-12-08 14:52:56 -03:00
<icon v-if="contact.deleted_at" name="trash" class="flex-shrink-0 ml-2 w-3 h-3 fill-gray-400" />
2021-12-08 12:15:39 -03:00
</Link>
2019-03-18 08:53:00 -03:00
</td>
<td class="border-t">
2021-12-08 14:52:56 -03:00
<Link class="flex items-center px-6 py-4" :href="`/contacts/${contact.id}/edit`" tabindex="-1">
2019-03-18 08:53:00 -03:00
{{ contact.city }}
2021-12-08 12:15:39 -03:00
</Link>
2019-03-18 08:53:00 -03:00
</td>
<td class="border-t">
2021-12-08 14:52:56 -03:00
<Link class="flex items-center px-6 py-4" :href="`/contacts/${contact.id}/edit`" tabindex="-1">
2019-03-18 08:53:00 -03:00
{{ contact.phone }}
2021-12-08 12:15:39 -03:00
</Link>
2019-03-18 08:53:00 -03:00
</td>
2021-12-08 14:52:56 -03:00
<td class="w-px border-t">
<Link class="flex items-center px-4" :href="`/contacts/${contact.id}/edit`" tabindex="-1">
2019-05-22 12:39:26 -03:00
<icon name="cheveron-right" class="block w-6 h-6 fill-gray-400" />
2021-12-08 12:15:39 -03:00
</Link>
2019-03-18 08:53:00 -03:00
</td>
</tr>
<tr v-if="organization.contacts.length === 0">
2021-12-08 14:52:56 -03:00
<td class="px-6 py-4 border-t" colspan="4">No contacts found.</td>
2019-03-18 08:53:00 -03:00
</tr>
</table>
</div>
</div>
2019-03-18 08:53:00 -03:00
</template>
<script>
2021-12-08 12:15:39 -03:00
import { Head, Link } from '@inertiajs/inertia-vue3'
2019-03-18 08:53:00 -03:00
import Icon from '@/Shared/Icon'
import Layout from '@/Shared/Layout'
import TextInput from '@/Shared/TextInput'
2021-02-27 11:00:09 -03:00
import SelectInput from '@/Shared/SelectInput'
import LoadingButton from '@/Shared/LoadingButton'
2019-03-18 08:53:00 -03:00
import TrashedMessage from '@/Shared/TrashedMessage'
export default {
components: {
2021-12-08 12:15:39 -03:00
Head,
2019-03-18 08:53:00 -03:00
Icon,
2021-12-08 12:15:39 -03:00
Link,
2019-03-18 08:53:00 -03:00
LoadingButton,
SelectInput,
TextInput,
TrashedMessage,
},
2021-02-27 11:00:09 -03:00
layout: Layout,
2019-03-18 08:53:00 -03:00
props: {
organization: Object,
},
2019-04-25 09:13:15 -03:00
remember: 'form',
2019-03-18 08:53:00 -03:00
data() {
return {
form: this.$inertia.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-03-18 08:53:00 -03:00
}
},
methods: {
2021-02-27 09:58:58 -03:00
update() {
2021-12-08 12:15:39 -03:00
this.form.put(`/organizations/${this.organization.id}`)
2021-02-27 09:58:58 -03:00
},
2019-03-18 08:53:00 -03:00
destroy() {
if (confirm('Are you sure you want to delete this organization?')) {
2021-12-08 12:15:39 -03:00
this.$inertia.delete(`/organizations/${this.organization.id}`)
2019-03-18 08:53:00 -03:00
}
},
restore() {
if (confirm('Are you sure you want to restore this organization?')) {
2021-12-08 12:15:39 -03:00
this.$inertia.put(`/organizations/${this.organization.id}/restore`)
2019-03-18 08:53:00 -03:00
}
},
},
}
</script>