212 lines
5.5 KiB
Vue
212 lines
5.5 KiB
Vue
<script setup lang="ts">
|
|
import { useDropZone } from '@vueuse/core';
|
|
import { toast } from 'vue-sonner';
|
|
import DirectoryListContextMenu from '~/components/DirectoryListContextMenu.vue';
|
|
import RenameEntryDialog from '~/components/actions/RenameEntryDialog.vue';
|
|
import { fetchFile, getWarrenDirectory, warrenRm } from '~/lib/api/warrens';
|
|
import type { DirectoryEntry } from '~/shared/types';
|
|
import { useImageViewer, useTextEditor } from '~/stores/viewers';
|
|
|
|
definePageMeta({
|
|
middleware: ['authenticated'],
|
|
});
|
|
|
|
const warrenStore = useWarrenStore();
|
|
|
|
const imageViewer = useImageViewer();
|
|
const textEditor = useTextEditor();
|
|
|
|
const loadingIndicator = useLoadingIndicator();
|
|
const uploadStore = useUploadStore();
|
|
const warrenPath = computed(() => useWarrenPath());
|
|
|
|
const dropZoneRef = ref<HTMLElement>();
|
|
|
|
const dropZone = useDropZone(dropZoneRef, {
|
|
onDrop,
|
|
multiple: true,
|
|
});
|
|
|
|
if (warrenStore.current == null) {
|
|
await navigateTo({
|
|
path: '/warrens',
|
|
});
|
|
}
|
|
|
|
useAsyncData(
|
|
'current-directory',
|
|
async () => {
|
|
if (warrenStore.current == null) {
|
|
return {
|
|
files: [],
|
|
parent: null,
|
|
};
|
|
}
|
|
|
|
loadingIndicator.start();
|
|
warrenStore.loading = true;
|
|
|
|
const { files, parent } = await getWarrenDirectory(
|
|
warrenStore.current.warrenId,
|
|
warrenStore.current.path
|
|
);
|
|
|
|
warrenStore.loading = false;
|
|
loadingIndicator.finish();
|
|
|
|
warrenStore.setCurrentWarrenEntries(files, parent);
|
|
},
|
|
{ watch: [warrenPath] }
|
|
);
|
|
|
|
function onDrop(files: File[] | null, e: DragEvent) {
|
|
if (files == null) {
|
|
return;
|
|
}
|
|
|
|
e.preventDefault();
|
|
|
|
if (warrenStore.current == null) {
|
|
toast.warning('Upload', {
|
|
description: 'Enter a warren before attempting to upload files',
|
|
});
|
|
return;
|
|
}
|
|
|
|
const added = uploadStore.addFiles(
|
|
warrenStore.current.warrenId,
|
|
warrenStore.current.path,
|
|
files
|
|
);
|
|
|
|
if (added) {
|
|
uploadStore.dialogOpen = true;
|
|
}
|
|
}
|
|
|
|
async function onEntryClicked(entry: DirectoryEntry, event: MouseEvent) {
|
|
event.stopPropagation();
|
|
|
|
if (warrenStore.loading || warrenStore.current == null) {
|
|
return;
|
|
}
|
|
|
|
if (warrenStore.handleSelectionClick(entry, event)) {
|
|
return;
|
|
}
|
|
|
|
if (entry.fileType === 'directory') {
|
|
warrenStore.addToCurrentWarrenPath(entry.name);
|
|
return;
|
|
}
|
|
|
|
if (entry.mimeType == null) {
|
|
return;
|
|
}
|
|
|
|
if (entry.mimeType.startsWith('image/')) {
|
|
const result = await fetchFile(
|
|
warrenStore.current.warrenId,
|
|
warrenStore.current.path,
|
|
entry.name
|
|
);
|
|
|
|
if (result.success) {
|
|
const url = URL.createObjectURL(result.data);
|
|
imageViewer.open(url);
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
if (entry.mimeType.startsWith('text/')) {
|
|
const result = await fetchFile(
|
|
warrenStore.current.warrenId,
|
|
warrenStore.current.path,
|
|
entry.name
|
|
);
|
|
|
|
if (result.success) {
|
|
textEditor.open(
|
|
warrenStore.current.warrenId,
|
|
warrenStore.current.path,
|
|
entry,
|
|
result.data
|
|
);
|
|
}
|
|
|
|
return;
|
|
}
|
|
}
|
|
|
|
function onEntryDownload(entry: DirectoryEntry) {
|
|
if (warrenStore.current == null) {
|
|
return;
|
|
}
|
|
|
|
let downloadName: string;
|
|
let downloadApiUrl: string;
|
|
|
|
const targets = getTargetsFromSelection(entry, warrenStore.selection);
|
|
if (targets.length === 1) {
|
|
downloadName =
|
|
entry.fileType === 'directory'
|
|
? `${targets[0].name}.zip`
|
|
: targets[0].name;
|
|
downloadApiUrl = getApiUrl(
|
|
`warrens/files/cat?warrenId=${warrenStore.current.warrenId}&paths=${joinPaths(warrenStore.current.path, targets[0].name)}`
|
|
);
|
|
} else {
|
|
downloadName = 'download.zip';
|
|
const paths = targets
|
|
.map((entry) => joinPaths(warrenStore.current!.path, entry.name))
|
|
.join(':');
|
|
|
|
downloadApiUrl = getApiUrl(
|
|
`warrens/files/cat?warrenId=${warrenStore.current.warrenId}&paths=${paths}`
|
|
);
|
|
}
|
|
|
|
downloadFile(downloadName, downloadApiUrl);
|
|
}
|
|
async function onEntryDelete(entry: DirectoryEntry, force: boolean) {
|
|
if (warrenStore.current == null) {
|
|
return;
|
|
}
|
|
|
|
const targets = getTargetsFromSelection(entry, warrenStore.selection).map(
|
|
(entry) => joinPaths(warrenStore.current!.path, entry.name)
|
|
);
|
|
|
|
await warrenRm(warrenStore.current.warrenId, targets, force);
|
|
}
|
|
|
|
function onBack() {
|
|
warrenStore.backCurrentPath();
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div ref="dropZoneRef" class="grow">
|
|
<DirectoryListContextMenu class="w-full grow">
|
|
<DirectoryList
|
|
v-if="
|
|
warrenStore.current != null &&
|
|
warrenStore.current.dir != null
|
|
"
|
|
:is-over-drop-zone="
|
|
dropZone.isOverDropZone.value &&
|
|
dropZone.files.value != null
|
|
"
|
|
:entries="warrenStore.current.dir.entries"
|
|
:parent="warrenStore.current.dir.parent"
|
|
@entry-click="onEntryClicked"
|
|
@entry-download="onEntryDownload"
|
|
@entry-delete="onEntryDelete"
|
|
@back="onBack"
|
|
/>
|
|
</DirectoryListContextMenu>
|
|
<RenameEntryDialog />
|
|
</div>
|
|
</template>
|