341 lines
8.5 KiB
Vue
341 lines
8.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';
|
|
|
|
definePageMeta({
|
|
middleware: ['authenticated'],
|
|
});
|
|
|
|
const warrenStore = useWarrenStore();
|
|
const loadingIndicator = useLoadingIndicator();
|
|
const uploadStore = useUploadStore();
|
|
const warrenPath = computed(() => useWarrenPath());
|
|
|
|
const dropZoneRef = ref<HTMLElement>();
|
|
|
|
const dropZone = useDropZone(dropZoneRef, {
|
|
onDrop,
|
|
multiple: true,
|
|
});
|
|
|
|
const selectionRect = useSelectionRect();
|
|
const dirtySelection = ref<boolean>(false);
|
|
|
|
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;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns whether the event was a selection event (so further execution can be stopped)
|
|
*/
|
|
function handleEntrySelectionClick(
|
|
selectedEntry: DirectoryEntry,
|
|
event: MouseEvent
|
|
): boolean {
|
|
if (!event.ctrlKey && !event.shiftKey) {
|
|
return false;
|
|
}
|
|
|
|
if (warrenStore.current == null || warrenStore.current.dir == null) {
|
|
return true;
|
|
}
|
|
|
|
if (event.ctrlKey || (event.shiftKey && warrenStore.selection.size === 0)) {
|
|
if (
|
|
warrenStore.toggleSelection(selectedEntry) ||
|
|
warrenStore.selectionRangeAnchor == null
|
|
) {
|
|
warrenStore.setSelectedRangeAnchor(selectedEntry);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
if (!event.shiftKey) {
|
|
return false;
|
|
}
|
|
|
|
const anchor = warrenStore.selectionRangeAnchor;
|
|
|
|
if (anchor == null) {
|
|
return true;
|
|
}
|
|
|
|
const entries = warrenStore.current.dir.entries;
|
|
|
|
const anchorIndex = entries.findIndex(
|
|
(entry) => entry.name === anchor.name
|
|
);
|
|
|
|
const clickedIndex = entries.findIndex(
|
|
(e) => e.name === selectedEntry.name
|
|
);
|
|
|
|
const targetSelection = [];
|
|
|
|
if (clickedIndex > anchorIndex) {
|
|
for (let i = anchorIndex; i <= clickedIndex; i++) {
|
|
targetSelection.push(entries[i]);
|
|
}
|
|
} else {
|
|
for (let i = clickedIndex; i <= anchorIndex; i++) {
|
|
targetSelection.push(entries[i]);
|
|
}
|
|
}
|
|
|
|
warrenStore.setSelection(targetSelection);
|
|
|
|
return true;
|
|
}
|
|
|
|
async function onEntryClicked(entry: DirectoryEntry, event: MouseEvent) {
|
|
event.stopPropagation();
|
|
|
|
if (warrenStore.loading || warrenStore.current == null) {
|
|
return;
|
|
}
|
|
|
|
if (handleEntrySelectionClick(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);
|
|
warrenStore.imageViewer.src = url;
|
|
}
|
|
}
|
|
}
|
|
|
|
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();
|
|
}
|
|
|
|
function onParentClick(_e: MouseEvent) {
|
|
if (dirtySelection.value) {
|
|
dirtySelection.value = false;
|
|
return;
|
|
}
|
|
|
|
warrenStore.clearSelection();
|
|
}
|
|
|
|
function onParentMouseDown(e: MouseEvent) {
|
|
const point = { x: e.x, y: e.y };
|
|
selectionRect.set(point, point);
|
|
}
|
|
|
|
function onParentMouseMove(e: MouseEvent) {
|
|
selectionRect.updateB(e.x, e.y);
|
|
|
|
if (
|
|
e.shiftKey ||
|
|
!selectionRect.enabled ||
|
|
warrenStore.selection.size === 0
|
|
) {
|
|
return;
|
|
}
|
|
|
|
warrenStore.clearSelection();
|
|
}
|
|
|
|
function onParentMouseUp(e: MouseEvent) {
|
|
selectionRect.disable();
|
|
|
|
if (warrenStore.current == null || warrenStore.current.dir == null) {
|
|
return;
|
|
}
|
|
|
|
const start = selectionRect.a;
|
|
const end = { x: e.x, y: e.y };
|
|
|
|
const left = Math.min(start.x, end.x);
|
|
const top = Math.min(start.y, end.y);
|
|
const width = Math.abs(start.x - end.x);
|
|
const height = Math.abs(start.y - end.y);
|
|
|
|
if (!selectionRect.isMinSize()) {
|
|
return;
|
|
}
|
|
|
|
const rect = new DOMRect(left, top, width, height);
|
|
|
|
const entryElements = document.querySelectorAll('[data-entry-index]');
|
|
|
|
const targetEntries = [];
|
|
|
|
for (const entry of entryElements) {
|
|
const attributeValue = entry.getAttribute('data-entry-index');
|
|
if (attributeValue == null) {
|
|
continue;
|
|
}
|
|
|
|
const index = parseInt(attributeValue);
|
|
if (isNaN(index)) {
|
|
continue;
|
|
}
|
|
|
|
const entryRect = entry.getBoundingClientRect();
|
|
if (intersectRect(rect, entryRect)) {
|
|
targetEntries.push(warrenStore.current.dir.entries[index]);
|
|
}
|
|
}
|
|
|
|
dirtySelection.value = true;
|
|
|
|
if (!e.shiftKey) {
|
|
warrenStore.setSelection(targetEntries);
|
|
return;
|
|
}
|
|
|
|
if (!e.ctrlKey) {
|
|
warrenStore.addMultipleToSelection(targetEntries);
|
|
} else {
|
|
warrenStore.removeMultipleFromSelection(targetEntries);
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
ref="dropZoneRef"
|
|
class="grow"
|
|
@click="onParentClick"
|
|
@mousedown="onParentMouseDown"
|
|
@mousemove="onParentMouseMove"
|
|
@mouseup="onParentMouseUp"
|
|
>
|
|
<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>
|