1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-12-18 18:35:58 +01:00
upscayl/renderer/components/sidebar/upscayl-tab/upscayl-steps.tsx

359 lines
11 KiB
TypeScript
Raw Normal View History

2023-11-10 12:41:35 +01:00
import { useAtom, useAtomValue } from "jotai";
import React, { useEffect, useMemo, useState } from "react";
import { Tooltip } from "react-tooltip";
2022-12-08 04:25:26 +01:00
import { themeChange } from "theme-change";
import { TModelsList, modelsListAtom } from "../../../atoms/models-list-atom";
import useLogger from "../../hooks/use-logger";
2023-09-19 16:51:38 +02:00
import {
2024-04-09 20:11:24 +02:00
savedOutputPathAtom,
2023-11-10 12:41:35 +01:00
progressAtom,
2024-02-14 07:32:52 +01:00
rememberOutputFolderAtom,
2023-09-19 16:51:38 +02:00
scaleAtom,
customWidthAtom,
useCustomWidthAtom,
} from "../../../atoms/user-settings-atom";
import { FEATURE_FLAGS } from "@common/feature-flags";
import { ELECTRON_COMMANDS } from "@common/electron-commands";
2024-04-20 13:11:03 +02:00
import Select from "react-select";
import { cn } from "@/lib/utils";
2024-04-21 16:04:59 +02:00
import { useToast } from "@/components/ui/use-toast";
import { translationAtom } from "@/atoms/translations-atom";
import { SelectImageScale } from "../settings-tab/select-image-scale";
2022-11-11 21:39:28 +01:00
2022-11-15 15:54:06 +01:00
interface IProps {
selectImageHandler: () => Promise<void>;
selectFolderHandler: () => Promise<void>;
handleModelChange: (e: any) => void;
upscaylHandler: () => Promise<void>;
batchMode: boolean;
2023-03-12 08:41:43 +01:00
setBatchMode: React.Dispatch<React.SetStateAction<boolean>>;
2022-11-15 15:54:06 +01:00
imagePath: string;
doubleUpscayl: boolean;
2023-03-12 08:41:43 +01:00
setDoubleUpscayl: React.Dispatch<React.SetStateAction<boolean>>;
2022-12-24 08:17:54 +01:00
dimensions: {
width: number | null;
height: number | null;
};
2023-05-01 11:23:11 +02:00
setSaveImageAs: React.Dispatch<React.SetStateAction<string>>;
2023-09-19 17:14:15 +02:00
model: string;
2023-05-01 11:23:11 +02:00
setModel: React.Dispatch<React.SetStateAction<string>>;
setGpuId: React.Dispatch<React.SetStateAction<string>>;
2022-11-15 15:54:06 +01:00
}
function UpscaylSteps({
2022-11-15 15:54:06 +01:00
selectImageHandler,
selectFolderHandler,
handleModelChange,
upscaylHandler,
batchMode,
setBatchMode,
imagePath,
doubleUpscayl,
setDoubleUpscayl,
2022-12-24 08:17:54 +01:00
dimensions,
2023-05-01 11:23:11 +02:00
setSaveImageAs,
2023-09-19 17:14:15 +02:00
model,
2023-05-01 11:23:11 +02:00
setModel,
setGpuId,
2022-11-15 15:54:06 +01:00
}: IProps) {
2024-04-20 13:11:03 +02:00
const [currentModel, setCurrentModel] = useState<TModelsList[0]>({
2022-12-24 09:45:15 +01:00
label: null,
value: null,
});
const modelOptions = useAtomValue(modelsListAtom);
2024-04-21 19:27:16 +02:00
const [scale, setScale] = useAtom(scaleAtom);
2024-04-09 20:11:24 +02:00
const [outputPath, setOutputPath] = useAtom(savedOutputPathAtom);
2023-11-10 12:41:35 +01:00
const [progress, setProgress] = useAtom(progressAtom);
2024-02-14 07:32:52 +01:00
const rememberOutputFolder = useAtomValue(rememberOutputFolderAtom);
2024-04-17 18:18:45 +02:00
const [open, setOpen] = React.useState(false);
const customWidth = useAtomValue(customWidthAtom);
const useCustomWidth = useAtomValue(useCustomWidthAtom);
2023-03-12 08:41:43 +01:00
const logit = useLogger();
2024-04-21 16:04:59 +02:00
const { toast } = useToast();
const t = useAtomValue(translationAtom);
2023-05-01 11:23:11 +02:00
2024-02-14 07:32:52 +01:00
const outputHandler = async () => {
const path = await window.electron.invoke(ELECTRON_COMMANDS.SELECT_FOLDER);
2024-02-14 07:32:52 +01:00
if (path !== null) {
logit("🗂 Setting Output Path: ", path);
setOutputPath(path);
} else {
setOutputPath(null);
}
};
2023-05-01 11:23:11 +02:00
useEffect(() => {
themeChange(false);
if (!localStorage.getItem("saveImageAs")) {
logit("⚙️ Setting saveImageAs to png");
2023-05-01 11:23:11 +02:00
localStorage.setItem("saveImageAs", "png");
} else {
const currentlySavedImageFormat = localStorage.getItem("saveImageAs");
logit(
2023-09-13 16:07:45 +02:00
"⚙️ Getting saveImageAs from localStorage: ",
2024-02-07 02:46:01 +01:00
currentlySavedImageFormat,
2023-05-01 11:23:11 +02:00
);
setSaveImageAs(currentlySavedImageFormat);
}
if (!localStorage.getItem("model")) {
setCurrentModel(modelOptions[0]);
setModel(modelOptions[0].value);
localStorage.setItem("model", JSON.stringify(modelOptions[0]));
logit("🔀 Setting model to", modelOptions[0].value);
2023-05-01 11:23:11 +02:00
} else {
const currentlySavedModel = JSON.parse(
2024-02-07 02:46:01 +01:00
localStorage.getItem("model"),
2023-05-01 11:23:11 +02:00
) as (typeof modelOptions)[0];
setCurrentModel(currentlySavedModel);
setModel(currentlySavedModel.value);
logit(
2023-09-13 16:07:45 +02:00
"⚙️ Getting model from localStorage: ",
2024-02-07 02:46:01 +01:00
JSON.stringify(currentlySavedModel),
2023-05-01 11:23:11 +02:00
);
}
if (!localStorage.getItem("gpuId")) {
localStorage.setItem("gpuId", "");
logit("⚙️ Setting gpuId to empty string");
2023-05-01 11:23:11 +02:00
} else {
const currentlySavedGpuId = localStorage.getItem("gpuId");
setGpuId(currentlySavedGpuId);
2023-09-13 16:07:45 +02:00
logit("⚙️ Getting gpuId from localStorage: ", currentlySavedGpuId);
2023-05-01 11:23:11 +02:00
}
}, []);
useEffect(() => {
logit("🔀 Setting model to", currentModel.value);
2023-05-01 11:23:11 +02:00
}, [currentModel]);
const upscaylResolution = useMemo(() => {
2023-06-03 02:49:13 +02:00
const newDimensions = {
width: dimensions.width,
height: dimensions.height,
};
2023-08-30 07:35:40 +02:00
2023-09-19 16:51:38 +02:00
let doubleScale = parseInt(scale) * parseInt(scale);
let singleScale = parseInt(scale);
2023-06-03 02:49:13 +02:00
if (doubleUpscayl) {
2024-04-21 19:33:02 +02:00
if (useCustomWidth) {
newDimensions.width = customWidth;
newDimensions.height = Math.round(
customWidth * (dimensions.height / dimensions.width),
);
} else {
const newWidth = dimensions.width * doubleScale;
const newHeight = dimensions.height * doubleScale;
newDimensions.width = newWidth;
newDimensions.height = newHeight;
}
2023-06-03 02:49:13 +02:00
} else {
2024-04-21 19:33:02 +02:00
if (useCustomWidth) {
newDimensions.width = customWidth;
newDimensions.height = Math.round(
customWidth * (dimensions.height / dimensions.width),
);
} else {
newDimensions.width = dimensions.width * singleScale;
newDimensions.height = dimensions.height * singleScale;
}
2023-06-03 02:49:13 +02:00
}
return newDimensions;
2023-08-30 07:35:40 +02:00
}, [dimensions.width, dimensions.height, doubleUpscayl, scale]);
2023-06-03 02:49:13 +02:00
2022-11-11 21:39:28 +01:00
return (
2023-08-30 06:54:16 +02:00
<div
2024-02-07 02:46:01 +01:00
className={`animate-step-in animate flex h-screen flex-col gap-7 overflow-y-auto overflow-x-hidden p-5`}
>
2022-11-11 21:39:28 +01:00
{/* BATCH OPTION */}
2022-11-11 22:32:24 +01:00
<div className="flex flex-row items-center gap-2">
<input
type="checkbox"
2022-11-15 15:42:20 +01:00
className="toggle"
2023-04-15 07:00:19 +02:00
defaultChecked={batchMode}
2023-11-10 12:41:35 +01:00
onClick={() => {
2024-02-14 07:32:52 +01:00
if (!rememberOutputFolder) {
setOutputPath("");
}
2023-11-10 12:41:35 +01:00
setProgress("");
setBatchMode((oldValue) => !oldValue);
2024-02-07 02:46:01 +01:00
}}
></input>
2022-11-23 19:24:30 +01:00
<p
2023-08-30 06:54:16 +02:00
className="mr-1 inline-block cursor-help text-sm"
data-tooltip-id="tooltip"
data-tooltip-content={t("APP.BATCH_MODE.DESCRIPTION")}
2024-02-07 02:46:01 +01:00
>
{t("APP.BATCH_MODE.TITLE")}
2022-11-23 19:24:30 +01:00
</p>
2022-11-11 21:39:28 +01:00
</div>
{/* STEP 1 */}
<div className="animate-step-in">
<p className="step-heading">{t("APP.FILE_SELECTION.TITLE")}</p>
2022-11-11 21:39:28 +01:00
<button
2024-02-07 02:46:01 +01:00
className="btn btn-primary"
onClick={!batchMode ? selectImageHandler : selectFolderHandler}
data-tooltip-id="tooltip"
data-tooltip-content={imagePath}
2024-02-07 02:46:01 +01:00
>
{batchMode
? t("APP.FILE_SELECTION.BATCH_MODE_TYPE")
: t("APP.FILE_SELECTION.SINGLE_MODE_TYPE")}
2022-11-11 21:39:28 +01:00
</button>
</div>
{/* STEP 2 */}
2024-04-21 19:27:16 +02:00
<div className="animate-step-in group flex flex-col gap-4">
<div>
<p className="step-heading">{t("APP.MODEL_SELECTION.TITLE")}</p>
<p className="mb-2 text-sm">{t("APP.MODEL_SELECTION.DESCRIPTION")}</p>
2022-11-11 21:39:28 +01:00
2024-04-21 19:27:16 +02:00
<Select
onMenuOpen={() => setOpen(true)}
onMenuClose={() => setOpen(false)}
options={modelOptions}
components={{
IndicatorSeparator: () => null,
DropdownIndicator: () => null,
}}
onChange={(e) => {
handleModelChange(e);
setCurrentModel({ label: e.label, value: e.value });
}}
className={cn(
"react-select-container transition-all group-hover:w-full group-active:w-full focus:w-full",
open && "!w-full",
)}
classNamePrefix="react-select"
value={currentModel}
/>
</div>
2022-11-11 21:39:28 +01:00
2023-03-18 13:33:17 +01:00
{!batchMode && (
2024-04-21 19:27:16 +02:00
<div className="flex items-center gap-1">
2022-11-11 21:39:28 +01:00
<input
type="checkbox"
2022-11-11 22:32:24 +01:00
className="checkbox"
2022-11-15 15:54:06 +01:00
checked={doubleUpscayl}
2022-11-11 21:39:28 +01:00
onChange={(e) => {
if (e.target.checked) {
2022-11-15 15:54:06 +01:00
setDoubleUpscayl(true);
2022-11-11 21:39:28 +01:00
} else {
2022-11-15 15:54:06 +01:00
setDoubleUpscayl(false);
2022-11-11 21:39:28 +01:00
}
}}
/>
<p
2022-11-11 22:32:24 +01:00
className="cursor-pointer text-sm"
2022-11-11 21:39:28 +01:00
onClick={(e) => {
2022-11-15 15:54:06 +01:00
setDoubleUpscayl(!doubleUpscayl);
2024-02-07 02:46:01 +01:00
}}
>
{t("APP.DOUBLE_UPSCAYL.TITLE")}
2022-11-11 21:39:28 +01:00
</p>
2022-11-23 19:24:30 +01:00
<button
2024-02-07 02:46:01 +01:00
className="badge badge-neutral badge-sm cursor-help"
data-tooltip-id="tooltip"
data-tooltip-content={t("APP.DOUBLE_UPSCAYL.DESCRIPTION")}
2024-02-07 02:46:01 +01:00
>
?
2022-11-23 19:24:30 +01:00
</button>
2022-11-11 21:39:28 +01:00
</div>
)}
2024-04-21 19:27:16 +02:00
<SelectImageScale scale={scale} setScale={setScale} hideInfo />
2022-11-11 21:39:28 +01:00
</div>
{/* STEP 3 */}
<div className="animate-step-in">
2024-01-15 14:13:16 +01:00
<div className="flex flex-col pb-2">
<div className="step-heading flex items-center gap-2">
<span className="leading-none">
{t("APP.OUTPUT_PATH_SELECTION.TITLE")}
</span>
{FEATURE_FLAGS.APP_STORE_BUILD && (
2024-01-15 14:13:16 +01:00
<button
2024-02-07 02:46:01 +01:00
className="badge badge-outline badge-sm cursor-pointer"
2024-01-15 14:13:16 +01:00
onClick={() =>
alert(t("APP.OUTPUT_PATH_SELECTION.MAC_APP_STORE_ALERT"))
2024-02-07 02:46:01 +01:00
}
>
2024-01-15 14:13:16 +01:00
?
</button>
)}
</div>
{!outputPath && FEATURE_FLAGS.APP_STORE_BUILD && (
2023-11-02 16:03:21 +01:00
<div className="text-xs">
2024-02-07 02:46:01 +01:00
<span className="rounded-btn bg-base-200 px-2 font-medium uppercase text-base-content/50">
{t("APP.OUTPUT_PATH_SELECTION.NOT_SELECTED")}
2023-11-02 16:03:21 +01:00
</span>
</div>
)}
</div>
{!batchMode && !FEATURE_FLAGS.APP_STORE_BUILD && (
2023-11-02 16:03:21 +01:00
<p className="mb-2 text-sm">
{!batchMode
? t("APP.OUTPUT_PATH_SELECTION.DEFAULT_IMG_PATH")
: t("APP.OUTPUT_PATH_SELECTION.DEFAULT_FOLDER_PATH")}
2023-11-02 16:03:21 +01:00
</p>
)}
<button
className="btn btn-primary"
data-tooltip-content={outputPath}
data-tooltip-id="tooltip"
onClick={outputHandler}
>
{t("APP.OUTPUT_PATH_SELECTION.BUTTON_TITLE")}
2022-11-11 21:39:28 +01:00
</button>
</div>
{/* STEP 4 */}
<div className="animate-step-in">
<p className="step-heading">{t("APP.SCALE_SELECTION.TITLE")}</p>
2022-12-24 08:17:54 +01:00
{dimensions.width && dimensions.height && (
<p className="mb-2 text-sm">
{t("APP.SCALE_SELECTION.FROM_TITLE")}
2022-12-24 08:17:54 +01:00
<span className="font-bold">
{dimensions.width}x{dimensions.height}
</span>
{t("APP.SCALE_SELECTION.TO_TITLE")}
2024-02-08 15:57:35 +01:00
<span className="font-bold">
{upscaylResolution.width}x{upscaylResolution.height}
2024-02-08 15:57:35 +01:00
</span>
2022-12-24 08:17:54 +01:00
</p>
)}
2022-11-11 21:39:28 +01:00
<button
className="btn btn-secondary"
2023-11-10 12:41:35 +01:00
onClick={
progress.length > 0 || !outputPath
2024-04-21 16:04:59 +02:00
? () =>
toast({
description: t(
"APP.SCALE_SELECTION.NO_OUTPUT_FOLDER_ALERT",
),
2024-04-21 16:04:59 +02:00
})
2023-11-10 12:41:35 +01:00
: upscaylHandler
2024-02-07 02:46:01 +01:00
}
>
{progress.length > 0
? t("APP.SCALE_SELECTION.IN_PROGRESS_BUTTON_TITLE")
: t("APP.SCALE_SELECTION.START_BUTTON_TITLE")}
2022-11-11 21:39:28 +01:00
</button>
</div>
2022-11-23 19:24:30 +01:00
<Tooltip
className="z-[999] max-w-sm break-words !bg-secondary"
id="tooltip"
/>
2022-11-11 21:39:28 +01:00
</div>
);
}
export default UpscaylSteps;