1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-12-30 00:03:07 +01:00
upscayl/renderer/components/upscayl-tab/view/ProgressBar.tsx
dabucz 3424b8c481
Add progressbar when upscaling image (#858)
See history in #856

Co-authored-by: Aaron Liu <aaronliu0130@gmail.com>
2024-06-07 07:06:40 -04:00

52 lines
1.6 KiB
TypeScript

import React, { useEffect } from "react";
import Spinner from "../../icons/Spinner";
import Logo from "@/components/icons/Logo";
function ProgressBar({
progress,
doubleUpscaylCounter,
stopHandler,
batchMode,
}: {
progress: string;
doubleUpscaylCounter: number;
stopHandler: () => void;
batchMode: boolean;
}) {
const [batchProgress, setBatchProgress] = React.useState(0);
useEffect(() => {
const progressString = progress.trim().replace(/\n/g, "");
// Remove trailing and leading spaces
if (progressString.includes("Successful")) {
setBatchProgress((prev) => prev + 1);
}
}, [progress]);
return (
<div className="absolute z-50 flex h-full w-full flex-col items-center justify-center bg-base-300/50 backdrop-blur-lg">
<div className="flex flex-col items-center rounded-btn bg-base-100/50 p-4 backdrop-blur-lg">
<Logo className="spinner mb-4 h-12 w-12" />
<p className="rounded-full px-2 pb-2 font-bold flex flex-col items-center">
{batchMode && "Batch Upscale In Progress: " + batchProgress}
{!batchMode &&
(doubleUpscaylCounter > 0
? `${progress}\nPass ${doubleUpscaylCounter}`
: `${progress}`)}
<progress className='progress w-96 transition-width duration-200 ease-in-out' value={parseFloat(progress.replace("%", ''))} max='100' />
</p>
<p className="animate-pulse rounded-full px-2 pb-3 text-sm font-medium">
Doing the Upscayl magic...
</p>
<button onClick={stopHandler} className="btn btn-outline">
STOP
</button>
</div>
</div>
);
}
export default ProgressBar;