1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-12-19 10:55:53 +01:00
upscayl/renderer/components/settings-tab/CustomModelsFolderSelect.tsx

51 lines
1.5 KiB
TypeScript
Raw Normal View History

2023-07-22 13:07:53 +02:00
import React from "react";
2024-01-16 08:33:43 +01:00
import commands from "../../../common/commands";
import { useAtomValue } from "jotai";
import { translationAtom } from "@/atoms/translations-atom";
2023-07-22 13:07:53 +02:00
type CustomModelsFolderSelectProps = {
customModelsPath: string;
setCustomModelsPath: (arg: string) => void;
};
export function CustomModelsFolderSelect({
customModelsPath,
setCustomModelsPath,
}: CustomModelsFolderSelectProps) {
const t = useAtomValue(translationAtom);
2023-07-22 13:07:53 +02:00
return (
<div className="flex flex-col items-start gap-2">
<p className="text-sm font-medium">{t("APP.INFOS.CUSTOM_MODELS.ADD")}</p>
2024-01-16 08:33:43 +01:00
<p className="text-xs text-base-content/80">
{t("APP.INFOS.CUSTOM_MODELS.INFO")}
2024-01-16 08:33:43 +01:00
<a
href="https://github.com/upscayl/custom-models/blob/main/README.md"
className="link underline"
target="_blank"
>
{t("APP.INFOS.CUSTOM_MODELS.LINK_TEXT")}
2024-01-16 08:33:43 +01:00
</a>
</p>
2023-07-22 13:07:53 +02:00
<p className="text-sm text-base-content/60">{customModelsPath}</p>
<button
className="btn btn-primary"
2023-07-22 13:07:53 +02:00
onClick={async () => {
const customModelPath = await window.electron.invoke(
commands.SELECT_CUSTOM_MODEL_FOLDER,
2023-07-22 13:07:53 +02:00
);
if (customModelPath !== null) {
setCustomModelsPath(customModelPath);
window.electron.send(commands.GET_MODELS_LIST, customModelPath);
} else {
setCustomModelsPath("");
}
}}
>
{t("APP.INFOS.CUSTOM_MODELS.SELECT_FOLDER")}
2023-07-22 13:07:53 +02:00
</button>
</div>
);
}