2022-03-10 05:35:04 +00:00
|
|
|
import React, { useState, useRef } from "react";
|
|
|
|
import { createPortal } from "react-dom";
|
|
|
|
|
|
|
|
import { WorkerPool } from "../lib/WorkerPool";
|
|
|
|
import { isPluginPath, parsePluginFiles } from "../lib/plugins";
|
|
|
|
import { setPluginsTxtAndApplyLoadOrder } from "../slices/pluginsTxt";
|
|
|
|
import { useAppDispatch } from "../lib/hooks";
|
|
|
|
import styles from "../styles/DropZone.module.css";
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
children?: React.ReactNode;
|
|
|
|
workerPool: WorkerPool | null;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const DropZone: React.FC<Props> = ({ children, workerPool }) => {
|
|
|
|
const dispatch = useAppDispatch();
|
|
|
|
const [entered, setEntered] = useState(0);
|
|
|
|
const overlay = useRef<HTMLDivElement>(null);
|
|
|
|
|
|
|
|
const handleDropFileSystemHandle = async (
|
|
|
|
item: DataTransferItem
|
|
|
|
): Promise<boolean> => {
|
|
|
|
if (!item.getAsFileSystemHandle) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
const entry = await item.getAsFileSystemHandle();
|
2022-03-13 01:36:55 +00:00
|
|
|
if (entry?.kind === "file") {
|
2022-03-10 05:35:04 +00:00
|
|
|
const file = await (entry as FileSystemFileHandle).getFile();
|
|
|
|
dispatch(setPluginsTxtAndApplyLoadOrder(await file.text()));
|
|
|
|
return true;
|
2022-03-13 01:36:55 +00:00
|
|
|
} else if (entry?.kind === "directory") {
|
2022-03-10 05:35:04 +00:00
|
|
|
const plugins: { getFile: () => Promise<File> }[] = [];
|
|
|
|
const values = (
|
|
|
|
entry as FileSystemDirectoryHandle & { values: any }
|
|
|
|
).values();
|
|
|
|
// I'm scared of yield and generators so I'm just going to do a lame while loop
|
|
|
|
while (true) {
|
|
|
|
const next = await values.next();
|
|
|
|
if (next.done) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (next.value.kind == "file" && isPluginPath(next.value.name)) {
|
|
|
|
plugins.push(next.value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const pluginFiles = await Promise.all(
|
|
|
|
plugins.map(async (plugin) => plugin.getFile())
|
|
|
|
);
|
|
|
|
if (workerPool) {
|
|
|
|
parsePluginFiles(pluginFiles, workerPool);
|
|
|
|
} else {
|
|
|
|
alert("Workers not loaded yet");
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
|
|
|
const handleDropWebkitEntry = async (
|
|
|
|
item: DataTransferItem
|
|
|
|
): Promise<boolean> => {
|
|
|
|
if (!item.webkitGetAsEntry) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
const entry = item.webkitGetAsEntry();
|
|
|
|
if (entry?.isFile) {
|
|
|
|
(entry as FileSystemFileEntry).file(async (file) => {
|
|
|
|
dispatch(setPluginsTxtAndApplyLoadOrder(await file.text()));
|
|
|
|
});
|
|
|
|
return true;
|
|
|
|
} else if (entry?.isDirectory) {
|
|
|
|
const reader = (entry as FileSystemDirectoryEntry).createReader();
|
|
|
|
const plugins = await new Promise<FileSystemFileEntry[]>(
|
|
|
|
(resolve, reject) => {
|
|
|
|
const plugins: FileSystemFileEntry[] = [];
|
|
|
|
reader.readEntries((entries) => {
|
|
|
|
entries.forEach((entry) => {
|
|
|
|
if (entry?.isFile && isPluginPath(entry.name)) {
|
|
|
|
plugins.push(entry as FileSystemFileEntry);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
resolve(plugins);
|
|
|
|
}, reject);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
const pluginFiles = await Promise.all(
|
|
|
|
plugins.map(
|
|
|
|
(plugin) =>
|
|
|
|
new Promise<File>((resolve, reject) =>
|
|
|
|
plugin.file((file) => resolve(file), reject)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
if (workerPool) {
|
|
|
|
parsePluginFiles(pluginFiles, workerPool);
|
|
|
|
} else {
|
|
|
|
alert("Workers not loaded yet");
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
|
|
|
const handleDrop = async (event: React.DragEvent<HTMLDivElement>) => {
|
|
|
|
event.preventDefault();
|
|
|
|
setEntered(0);
|
|
|
|
|
|
|
|
if (event.dataTransfer.items && event.dataTransfer.items.length > 0) {
|
|
|
|
const item = event.dataTransfer.items[0];
|
|
|
|
if (item.kind === "file") {
|
|
|
|
// Gotta love all these competing web file system standards...
|
|
|
|
let processed = await handleDropFileSystemHandle(item);
|
|
|
|
if (!processed) {
|
|
|
|
processed = await handleDropWebkitEntry(item);
|
|
|
|
}
|
|
|
|
if (!processed) {
|
|
|
|
const file = item.getAsFile();
|
|
|
|
if (file) {
|
|
|
|
dispatch(setPluginsTxtAndApplyLoadOrder(await file.text()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (item.kind === "string") {
|
|
|
|
item.getAsString((str) => {
|
|
|
|
dispatch(setPluginsTxtAndApplyLoadOrder(str));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<div id="drop-zone-overlay" ref={overlay} />
|
|
|
|
{overlay.current && entered > 0
|
|
|
|
? createPortal(
|
|
|
|
<div className={styles.overlay}>
|
|
|
|
Drop Skyrim Data folder or plugins.txt file
|
|
|
|
</div>,
|
|
|
|
overlay.current
|
|
|
|
)
|
|
|
|
: null}
|
|
|
|
<div
|
|
|
|
className={styles["drop-zone"]}
|
|
|
|
onDragOver={(event) => event.preventDefault()}
|
|
|
|
onDragEnter={() => setEntered((entered) => entered + 1)}
|
|
|
|
onDragLeave={() => setEntered((entered) => entered - 1)}
|
|
|
|
onDrop={handleDrop}
|
|
|
|
>
|
|
|
|
{children}
|
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|