Files
Website/resources/js/views/dashboard/MediaEdit.vue

417 lines
14 KiB
Vue

<template>
<SMPage :page-error="pageError" permission="admin/media">
<SMMastHead
:title="pageHeading"
:back-link="{ name: 'dashboard-media-list' }"
back-title="Back to Media" />
<SMLoading v-if="progressText" overlay :text="progressText" />
<SMContainer class="flex-grow-1">
<SMLoading v-if="pageLoading" large />
<SMForm
v-else
:model-value="form"
@submit="handleSubmit"
@failed-validation="handleFailValidation">
<SMRow v-if="route.params.id">
<SMColumn class="media-container">
<SMImage v-if="!editMultiple" :src="imageUrl" />
<SMImageStack
v-if="editMultiple"
:src="imageStackUrls" />
</SMColumn>
</SMRow>
<SMRow>
<SMColumn>
<SMInput
v-if="!editMultiple"
control="file"
type="file" />
</SMColumn>
</SMRow>
<SMRow>
<SMColumn>
<SMInput control="title" />
</SMColumn>
<SMColumn>
<SMInput control="permission" />
</SMColumn>
</SMRow>
<SMRow v-if="!editMultiple">
<SMColumn>
<SMInput
v-model="computedFileSize"
type="static"
label="File Size" />
</SMColumn>
<SMColumn>
<SMInput
v-model="fileData.mime_type"
type="static"
label="File Mime Type" />
</SMColumn>
</SMRow>
<SMRow v-if="!editMultiple">
<SMColumn>
<SMInput
v-model="fileData.status"
type="static"
label="Status" />
</SMColumn>
<SMColumn>
<SMInput
v-model="fileData.dimensions"
type="static"
label="Dimensions" />
</SMColumn>
</SMRow>
<SMRow v-if="!editMultiple">
<SMColumn>
<SMInput
v-model="fileData.url"
type="static"
label="URL" />
</SMColumn>
</SMRow>
<SMRow>
<SMColumn>
<SMInput type="textarea" control="description" />
</SMColumn>
</SMRow>
<SMRow>
<SMColumn>
<SMButtonRow>
<template #right>
<SMButton
type="submit"
:label="editMultiple ? 'Save All' : 'Save'"
:form="form" />
</template>
<template #left>
<SMButton
:form="form"
v-if="route.params.id"
type="danger"
:label="
editMultiple ? 'Delete All' : 'Delete'
"
@click="handleDelete" />
</template>
</SMButtonRow>
</SMColumn>
</SMRow>
</SMForm>
</SMContainer>
</SMPage>
</template>
<script setup lang="ts">
import { computed, reactive, ref, watch } from "vue";
import { useRoute, useRouter } from "vue-router";
import { api } from "../../helpers/api";
import { Form, FormControl } from "../../helpers/form";
import { bytesReadable } from "../../helpers/types";
import { And, FileSize, Required } from "../../helpers/validate";
import { MediaResponse } from "../../helpers/api.types";
import { openDialog } from "../../components/SMDialog";
import DialogConfirm from "../../components/dialogs/SMDialogConfirm.vue";
import SMButton from "../../components/SMButton.vue";
import SMForm from "../../components/SMForm.vue";
import SMInput from "../../components/SMInput.vue";
import SMMastHead from "../../components/SMMastHead.vue";
import SMLoading from "../../components/SMLoading.vue";
import { useToastStore } from "../../store/ToastStore";
import SMColumn from "../../components/SMColumn.vue";
import SMImage from "../../components/SMImage.vue";
import SMButtonRow from "../../components/SMButtonRow.vue";
import SMImageStack from "../../components/SMImageStack.vue";
const route = useRoute();
const router = useRouter();
const pageError = ref(200);
const pageLoading = ref(true);
const editMultiple = "id" in route.params && route.params.id.includes(",");
const pageHeading = route.params.id
? editMultiple
? "Edit Multiple Media"
: "Edit Media"
: "Upload Media";
const progressText = ref("");
const imageStackUrls = ref([]);
const form = reactive(
Form({
file: FormControl("", And([Required(), FileSize({ size: 5242880 })])),
title: FormControl(),
description: FormControl(),
permission: FormControl(),
})
);
const fileData = reactive({
url: "Not available",
mime_type: "--",
size: "--",
storage: "--",
status: "--",
dimensions: "--",
user: {},
});
const imageUrl = ref("");
const handleLoad = async () => {
if (route.params.id) {
if (editMultiple === false) {
try {
let result = await api.get({
url: "/media/{id}",
params: {
id: route.params.id,
},
});
const data = result.data as MediaResponse;
form.controls.file.value = data.medium.name;
form.controls.title.value = data.medium.title;
form.controls.description.value = data.medium.description;
form.controls.permission.value = data.medium.permission;
fileData.url = data.medium.url;
fileData.mime_type = data.medium.mime_type;
fileData.size = data.medium.size;
fileData.storage = data.medium.storage;
fileData.status =
data.medium.status == "" ? "OK" : data.medium.status;
fileData.dimensions = data.medium.dimensions;
imageUrl.value = fileData.url;
} catch (err) {
pageError.value = err.status;
}
} else {
(route.params.id as string).split(",").forEach(async (id) => {
try {
let result = await api.get({
url: "/media/{id}",
params: {
id: id,
},
});
const data = result.data as MediaResponse;
imageStackUrls.value.push(data.medium.url);
} catch (err) {
pageError.value = err.status;
}
});
}
}
pageLoading.value = false;
};
const handleSubmit = async () => {
try {
form.loading(true);
if (editMultiple === false) {
let submitData = new FormData();
// add file if there is one
if (form.controls.file.value instanceof File) {
submitData.append("file", form.controls.file.value);
}
submitData.append("title", form.controls.title.value as string);
submitData.append(
"permission",
form.controls.permission.value as string
);
submitData.append(
"description",
form.controls.description.value as string
);
if (route.params.id) {
await api.put({
url: "/media/{id}",
params: {
id: route.params.id,
},
body: submitData,
headers: {
"Content-Type": "multipart/form-data",
},
progress: (progressEvent) =>
(progressText.value = `Uploading File: ${Math.floor(
(progressEvent.loaded / progressEvent.total) * 100
)}%`),
});
} else {
await api.post({
url: "/media",
body: submitData,
headers: {
"Content-Type": "multipart/form-data",
},
progress: (progressEvent) =>
(progressText.value = `Uploading File: ${Math.floor(
(progressEvent.loaded / progressEvent.total) * 100
)}%`),
});
}
useToastStore().addToast({
title: route.params.id ? "Media Updated" : "Media Created",
content: route.params.id
? "The media item has been updated."
: "The media item been created.",
type: "success",
});
} else {
let successCount = 0;
let errorCount = 0;
(route.params.id as string).split(",").forEach(async (id) => {
try {
let data = {
title: form.controls.title.value,
content: form.controls.content.value,
};
await api.put({
url: "/media/{id}",
params: {
id: id,
},
body: data,
});
successCount++;
} catch (err) {
errorCount++;
}
});
if (errorCount === 0) {
useToastStore().addToast({
title: "Media Updated",
content: `The selected media have been updated.`,
type: "success",
});
} else if (successCount === 0) {
useToastStore().addToast({
title: "Error Updating Media",
content: "An unexpected server error occurred.",
type: "danger",
});
} else {
useToastStore().addToast({
title: "Some Media Updated",
content: `Only ${successCount} media items where updated. ${errorCount} could not because of an unexpected error.`,
type: "warning",
});
}
}
const urlParams = new URLSearchParams(window.location.search);
const returnUrl = urlParams.get("return");
if (returnUrl) {
router.push(decodeURIComponent(returnUrl));
} else {
router.push({ name: "dashboard-media-list" });
}
} catch (error) {
useToastStore().addToast({
title: "Server error",
content: "An error occurred saving the media.",
type: "danger",
});
} finally {
progressText.value = "";
form.loading(false);
}
};
const handleFailValidation = () => {
useToastStore().addToast({
title: "Save Error",
content:
"There are some errors in the form. Fix these before continuing.",
type: "danger",
});
};
const handleDelete = async () => {
let result = await openDialog(DialogConfirm, {
title: "Delete File?",
text: `Are you sure you want to delete the file <strong>${form.controls.title.value}</strong>?`,
cancel: {
type: "secondary",
label: "Cancel",
},
confirm: {
type: "danger",
label: "Delete File",
},
});
if (result) {
try {
await api.delete({
url: "/media/{id}",
params: {
id: route.params.id,
},
});
router.push({ name: "media" });
} catch (error) {
useToastStore().addToast({
title: "Error Deleting File",
content:
error.data?.message ||
"An unexpected server error occurred",
type: "danger",
});
}
}
};
const computedFileSize = computed(() => {
if (isNaN(+fileData.size) == true) {
return fileData.size;
}
return bytesReadable(fileData.size);
});
watch(
() => form.controls.file.value,
(newValue) => {
fileData.mime_type = (newValue as File).type;
fileData.size = (newValue as File).size;
if ((form.controls.title.value as string).length == 0) {
form.controls.title.value = (newValue as File).name
.replace(/\.[^/.]+$/, "")
.replace(/[^\w\s]/g, " ")
.toLowerCase()
.replace(/\b\w/g, (c) => c.toUpperCase());
}
}
);
handleLoad();
</script>
<style lang="scss">
.page-dashboard-media-edit {
.media-container {
display: flex;
justify-content: center;
align-items: center;
}
}
</style>