mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-13 18:30:54 +01:00
36 lines
1.0 KiB
TypeScript
36 lines
1.0 KiB
TypeScript
import React from "react";
|
|
import commands from "../../../electron/constants/commands";
|
|
|
|
type CustomModelsFolderSelectProps = {
|
|
customModelsPath: string;
|
|
setCustomModelsPath: (arg: string) => void;
|
|
};
|
|
|
|
export function CustomModelsFolderSelect({
|
|
customModelsPath,
|
|
setCustomModelsPath,
|
|
}: CustomModelsFolderSelectProps) {
|
|
return (
|
|
<div className="flex flex-col items-start gap-2">
|
|
<p className="text-sm font-medium">ADD CUSTOM MODELS</p>
|
|
<p className="text-sm text-base-content/60">{customModelsPath}</p>
|
|
<button
|
|
className="btn-primary btn"
|
|
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("");
|
|
}
|
|
}}>
|
|
Select Folder
|
|
</button>
|
|
</div>
|
|
);
|
|
}
|