mirror of
https://github.com/upscayl/upscayl.git
synced 2024-12-19 02:45:54 +01:00
d721e7ae7f
MOD: All necessary strings to match
51 lines
1.5 KiB
TypeScript
51 lines
1.5 KiB
TypeScript
import React from "react";
|
|
import commands from "../../../common/commands";
|
|
import { useAtomValue } from "jotai";
|
|
import { translationAtom } from "@/atoms/translations-atom";
|
|
|
|
type CustomModelsFolderSelectProps = {
|
|
customModelsPath: string;
|
|
setCustomModelsPath: (arg: string) => void;
|
|
};
|
|
|
|
export function CustomModelsFolderSelect({
|
|
customModelsPath,
|
|
setCustomModelsPath,
|
|
}: CustomModelsFolderSelectProps) {
|
|
const t = useAtomValue(translationAtom);
|
|
|
|
return (
|
|
<div className="flex flex-col items-start gap-2">
|
|
<p className="text-sm font-medium">{t("SETTINGS.CUSTOM_MODELS.TITLE")}</p>
|
|
<p className="text-xs text-base-content/80">
|
|
{t("SETTINGS.CUSTOM_MODELS.DESCRIPTION")}
|
|
<a
|
|
href="https://github.com/upscayl/custom-models/blob/main/README.md"
|
|
className="link underline"
|
|
target="_blank"
|
|
>
|
|
{t("SETTINGS.CUSTOM_MODELS.LINK_TITLE")}
|
|
</a>
|
|
</p>
|
|
<p className="text-sm text-base-content/60">{customModelsPath}</p>
|
|
<button
|
|
className="btn btn-primary"
|
|
onClick={async () => {
|
|
const customModelPath = await window.electron.invoke(
|
|
commands.SELECT_CUSTOM_MODEL_FOLDER,
|
|
);
|
|
|
|
if (customModelPath !== null) {
|
|
setCustomModelsPath(customModelPath);
|
|
window.electron.send(commands.GET_MODELS_LIST, customModelPath);
|
|
} else {
|
|
setCustomModelsPath("");
|
|
}
|
|
}}
|
|
>
|
|
{t("SETTINGS.CUSTOM_MODELS.BUTTON_FOLDER")}
|
|
</button>
|
|
</div>
|
|
);
|
|
}
|