mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-15 03:07:42 +01:00
50 lines
1.4 KiB
TypeScript
50 lines
1.4 KiB
TypeScript
import { app, dialog } from "electron";
|
|
import {
|
|
savedBatchUpscaylFolderPath,
|
|
setSavedBatchUpscaylFolderPath,
|
|
} from "../utils/config-variables";
|
|
import logit from "../utils/logit";
|
|
import settings from "electron-settings";
|
|
import { featureFlags } from "../../common/feature-flags";
|
|
|
|
const selectFolder = async (event, message) => {
|
|
let closeAccess;
|
|
const folderBookmarks = await settings.get("folder-bookmarks");
|
|
if (featureFlags.APP_STORE_BUILD && folderBookmarks) {
|
|
logit("🚨 Folder Bookmarks: ", folderBookmarks);
|
|
try {
|
|
closeAccess = app.startAccessingSecurityScopedResource(
|
|
folderBookmarks as string,
|
|
);
|
|
} catch (error) {
|
|
logit("📁 Folder Bookmarks Error: ", error);
|
|
}
|
|
}
|
|
|
|
const {
|
|
canceled,
|
|
filePaths: folderPaths,
|
|
bookmarks,
|
|
} = await dialog.showOpenDialog({
|
|
properties: ["openDirectory"],
|
|
defaultPath: savedBatchUpscaylFolderPath,
|
|
securityScopedBookmarks: true,
|
|
});
|
|
|
|
if (featureFlags.APP_STORE_BUILD && bookmarks && bookmarks.length > 0) {
|
|
console.log("🚨 Setting folder Bookmark: ", bookmarks);
|
|
await settings.set("folder-bookmarks", bookmarks[0]);
|
|
}
|
|
|
|
if (canceled) {
|
|
logit("🚫 Select Folder Operation Cancelled");
|
|
return null;
|
|
} else {
|
|
setSavedBatchUpscaylFolderPath(folderPaths[0]);
|
|
logit("📁 Selected Folder Path: ", savedBatchUpscaylFolderPath);
|
|
return folderPaths[0];
|
|
}
|
|
};
|
|
|
|
export default selectFolder;
|