2022-09-01 22:32:03 +00:00
|
|
|
<script setup lang="ts">
|
2022-09-25 22:33:13 +00:00
|
|
|
import { Detail, DateDetail } from "~~/components/global/DetailsSection/types";
|
2022-09-01 22:32:03 +00:00
|
|
|
|
|
|
|
definePageMeta({
|
2022-09-09 22:46:53 +00:00
|
|
|
layout: "home",
|
2022-09-01 22:32:03 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const route = useRoute();
|
|
|
|
const api = useUserApi();
|
|
|
|
const toast = useNotifier();
|
|
|
|
|
2022-09-02 17:46:20 +00:00
|
|
|
const preferences = useViewPreferences();
|
2022-09-01 22:32:03 +00:00
|
|
|
|
|
|
|
const locationId = computed<string>(() => route.params.id as string);
|
|
|
|
|
2022-09-02 01:52:40 +00:00
|
|
|
const { data: location } = useAsyncData(locationId.value, async () => {
|
|
|
|
const { data, error } = await api.locations.get(locationId.value);
|
|
|
|
if (error) {
|
2022-09-09 22:46:53 +00:00
|
|
|
toast.error("Failed to load location");
|
|
|
|
navigateTo("/home");
|
2022-09-02 01:52:40 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
return data;
|
|
|
|
});
|
|
|
|
|
2022-09-25 22:33:13 +00:00
|
|
|
const details = computed<(Detail | DateDetail)[]>(() => {
|
|
|
|
const details = [
|
|
|
|
{
|
|
|
|
name: "Name",
|
|
|
|
text: location.value?.name,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Description",
|
|
|
|
text: location.value?.description,
|
|
|
|
},
|
|
|
|
];
|
2022-09-01 22:32:03 +00:00
|
|
|
|
|
|
|
if (preferences.value.showDetails) {
|
2022-09-25 22:33:13 +00:00
|
|
|
return [
|
|
|
|
...details,
|
|
|
|
{
|
|
|
|
name: "Created",
|
|
|
|
text: location.value?.createdAt,
|
|
|
|
type: "date",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Updated",
|
|
|
|
text: location.value?.updatedAt,
|
|
|
|
type: "date",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Database ID",
|
|
|
|
text: location.value?.id,
|
|
|
|
},
|
|
|
|
];
|
2022-09-01 22:32:03 +00:00
|
|
|
}
|
|
|
|
|
2022-09-25 22:33:13 +00:00
|
|
|
return details;
|
2022-09-01 22:32:03 +00:00
|
|
|
});
|
|
|
|
|
2022-09-25 22:33:13 +00:00
|
|
|
const confirm = useConfirm();
|
2022-09-01 22:32:03 +00:00
|
|
|
|
|
|
|
async function confirmDelete() {
|
2022-09-25 22:33:13 +00:00
|
|
|
const { isCanceled } = await confirm.open(
|
|
|
|
"Are you sure you want to delete this location? This action cannot be undone."
|
|
|
|
);
|
2022-09-01 22:32:03 +00:00
|
|
|
if (isCanceled) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const { error } = await api.locations.delete(locationId.value);
|
|
|
|
if (error) {
|
2022-09-09 22:46:53 +00:00
|
|
|
toast.error("Failed to delete location");
|
2022-09-01 22:32:03 +00:00
|
|
|
return;
|
|
|
|
}
|
2022-09-25 22:33:13 +00:00
|
|
|
|
2022-09-09 22:46:53 +00:00
|
|
|
toast.success("Location deleted");
|
|
|
|
navigateTo("/home");
|
2022-09-01 22:32:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const updateModal = ref(false);
|
|
|
|
const updating = ref(false);
|
|
|
|
const updateData = reactive({
|
2022-09-09 22:46:53 +00:00
|
|
|
name: "",
|
|
|
|
description: "",
|
2022-09-01 22:32:03 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
function openUpdate() {
|
2022-09-09 22:46:53 +00:00
|
|
|
updateData.name = location.value?.name || "";
|
|
|
|
updateData.description = location.value?.description || "";
|
2022-09-01 22:32:03 +00:00
|
|
|
updateModal.value = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function update() {
|
|
|
|
updating.value = true;
|
|
|
|
const { error, data } = await api.locations.update(locationId.value, updateData);
|
|
|
|
|
|
|
|
if (error) {
|
2022-09-09 22:46:53 +00:00
|
|
|
toast.error("Failed to update location");
|
2022-09-01 22:32:03 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-09-09 22:46:53 +00:00
|
|
|
toast.success("Location updated");
|
2022-09-01 22:32:03 +00:00
|
|
|
location.value = data;
|
|
|
|
updateModal.value = false;
|
|
|
|
updating.value = false;
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<BaseContainer>
|
|
|
|
<BaseModal v-model="updateModal">
|
|
|
|
<template #title> Update Location </template>
|
|
|
|
<form v-if="location" @submit.prevent="update">
|
2022-09-09 22:46:53 +00:00
|
|
|
<FormTextField v-model="updateData.name" :autofocus="true" label="Location Name" />
|
2022-09-25 22:33:13 +00:00
|
|
|
<FormTextArea v-model="updateData.description" label="Location Description" />
|
2022-09-01 22:32:03 +00:00
|
|
|
<div class="modal-action">
|
|
|
|
<BaseButton type="submit" :loading="updating"> Update </BaseButton>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</BaseModal>
|
2022-09-25 22:33:13 +00:00
|
|
|
|
|
|
|
<BaseCard class="mb-16">
|
|
|
|
<template #title>
|
|
|
|
<BaseSectionHeader>
|
|
|
|
<Icon name="mdi-map-marker" class="mr-2 text-gray-600" />
|
|
|
|
<span class="text-gray-600">
|
|
|
|
{{ location ? location.name : "" }}
|
|
|
|
</span>
|
|
|
|
</BaseSectionHeader>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<template #title-actions>
|
|
|
|
<div class="flex mt-2 gap-2">
|
|
|
|
<div class="form-control max-w-[160px]">
|
|
|
|
<label class="label cursor-pointer">
|
|
|
|
<input v-model="preferences.showDetails" type="checkbox" class="toggle toggle-primary" />
|
|
|
|
<span class="label-text ml-2"> Detailed View </span>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<BaseButton class="ml-auto" size="sm" @click="openUpdate">
|
|
|
|
<Icon class="mr-1" name="mdi-pencil" />
|
|
|
|
Edit
|
|
|
|
</BaseButton>
|
|
|
|
<BaseButton size="sm" @click="confirmDelete">
|
|
|
|
<Icon class="mr-1" name="mdi-delete" />
|
|
|
|
Delete
|
|
|
|
</BaseButton>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<DetailsSection :details="details" />
|
|
|
|
</BaseCard>
|
2022-09-01 22:32:03 +00:00
|
|
|
|
2022-09-03 09:17:57 +00:00
|
|
|
<section v-if="location">
|
|
|
|
<BaseSectionHeader class="mb-5"> Items </BaseSectionHeader>
|
2022-09-25 22:33:13 +00:00
|
|
|
<div class="grid gap-2 grid-cols-1 sm:grid-cols-2">
|
2022-09-09 22:46:53 +00:00
|
|
|
<ItemCard v-for="item in location.items" :key="item.id" :item="item" />
|
2022-09-03 09:17:57 +00:00
|
|
|
</div>
|
|
|
|
</section>
|
2022-09-01 22:32:03 +00:00
|
|
|
</BaseContainer>
|
|
|
|
</template>
|