Create FolderSelectInput.tsx

This commit is contained in:
thororen 2024-04-17 14:46:12 -04:00 committed by GitHub
parent 3444b89ae8
commit 7b49fa4de3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,95 @@
/*
* Vencord, a modification for Discord's desktop app
* Copyright (c) 2023 Vendicated and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import { classNameFactory } from "@api/Styles";
import { copyWithToast } from "@utils/misc";
import { Button, Forms, Toasts } from "@webpack/common";
import { Native, settings } from "../..";
import { DEFAULT_IMAGE_CACHE_DIR } from "../../utils/constants";
const cl = classNameFactory("folder-upload");
function createDirSelector(settingKey: "logsDir" | "imageCacheDir", successMessage: string) {
return function DirSelector({ option }) {
if (IS_WEB) return null;
return (
<Forms.FormSection>
<Forms.FormTitle>{option.description}</Forms.FormTitle>
<SelectFolderInput
settingsKey={settingKey}
successMessage={successMessage}
/>
</Forms.FormSection>
);
};
}
export const ImageCacheDir = createDirSelector("imageCacheDir", "Successfully updated Image Cache Dir");
export const LogsDir = createDirSelector("logsDir", "Successfully updated Logs Dir");
interface Props {
settingsKey: "imageCacheDir" | "logsDir",
successMessage: string,
}
export function SelectFolderInput({ settingsKey, successMessage }: Props) {
const path = settings.store[settingsKey];
function getDirName(path: string) {
const parts = path.split("\\").length > 1 ? path.split("\\") : path.split("/");
return parts.slice(parts.length - 2, parts.length).join("\\");
}
async function onFolderSelect() {
try {
const res = await Native.chooseDir(settingsKey);
settings.store[settingsKey] = res;
return Toasts.show({
id: Toasts.genId(),
type: Toasts.Type.SUCCESS,
message: successMessage
});
} catch (err) {
Toasts.show({
id: Toasts.genId(),
type: Toasts.Type.FAILURE,
message: "Failed to update directory"
});
}
}
return (
<div className={cl("-container")}>
<div onClick={() => copyWithToast(path)} className={cl("-input")}>
{path == null || path === DEFAULT_IMAGE_CACHE_DIR ? "Choose Folder" : getDirName(path)}
</div>
<Button
className={cl("-button")}
size={Button.Sizes.SMALL}
onClick={onFolderSelect}
>
Browse
</Button>
</div>
);
}