1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-12-20 11:26:00 +01:00
upscayl/renderer/components/upscayl-tab/view/ImageOptions.tsx

110 lines
3.4 KiB
TypeScript
Raw Normal View History

2024-01-23 09:44:32 +01:00
import { lensSizeAtom, viewTypeAtom } from "@/atoms/userSettingsAtom";
2024-01-21 07:48:22 +01:00
import SidebarClosed from "@/components/icons/SidebarClosed";
import SidebarOpened from "@/components/icons/SidebarOpened";
2024-01-23 09:44:32 +01:00
import { useAtom } from "jotai";
2024-04-01 11:04:56 +02:00
import { useEffect, useState } from "react";
2022-11-23 19:24:30 +01:00
2022-12-16 17:20:46 +01:00
const ImageOptions = ({
zoomAmount,
setZoomAmount,
2022-12-21 16:43:54 +01:00
resetImagePaths,
2022-12-24 08:40:45 +01:00
hideZoomOptions,
2022-12-16 17:20:46 +01:00
}: {
2022-12-21 11:32:45 +01:00
zoomAmount: string;
2022-12-16 17:20:46 +01:00
setZoomAmount: (arg: any) => void;
2022-12-21 16:43:54 +01:00
resetImagePaths: () => void;
2022-12-24 08:40:45 +01:00
hideZoomOptions?: boolean;
2022-12-16 17:20:46 +01:00
}) => {
2024-01-21 07:48:22 +01:00
const [openSidebar, setOpenSidebar] = useState(false);
2024-01-23 09:44:32 +01:00
const [viewType, setViewType] = useAtom(viewTypeAtom);
const [lensSize, setLensSize] = useAtom(lensSizeAtom);
2024-01-21 07:48:22 +01:00
useEffect(() => {
if (!localStorage.getItem("zoomAmount")) {
localStorage.setItem("zoomAmount", zoomAmount);
} else {
setZoomAmount(localStorage.getItem("zoomAmount"));
2022-12-16 17:20:46 +01:00
}
}, []);
2022-12-16 17:20:46 +01:00
2022-11-23 19:24:30 +01:00
return (
2024-01-23 09:44:32 +01:00
<div
onDoubleClick={(e) => {
e.stopPropagation();
}}
2024-04-01 11:04:56 +02:00
className="absolute h-full w-full"
>
2024-01-21 07:48:22 +01:00
<div
2024-04-01 11:04:56 +02:00
className={`fixed right-0 top-0 z-50 h-screen w-[28rem] bg-base-100 text-base-content shadow-xl shadow-black transition-all duration-500 ${
2024-01-21 07:48:22 +01:00
openSidebar ? "right-0" : "-right-full translate-x-full"
2024-04-01 11:04:56 +02:00
}`}
>
2024-01-21 07:48:22 +01:00
<div
2024-04-01 11:04:56 +02:00
className={`group rounded-btn absolute right-[100%] top-1/2 z-50 flex cursor-pointer items-center gap-2 rounded-r-none bg-base-100 p-4 transition-all duration-500`}
2024-01-21 07:48:22 +01:00
onClick={() => {
setOpenSidebar(!openSidebar);
2024-04-01 11:04:56 +02:00
}}
>
2024-01-21 07:48:22 +01:00
{openSidebar ? (
2024-04-01 11:04:56 +02:00
<SidebarOpened className="text-xl text-white" />
2024-01-21 07:48:22 +01:00
) : (
2024-04-01 11:04:56 +02:00
<SidebarClosed className="text-xl text-white" />
2024-01-21 07:48:22 +01:00
)}
</div>
2024-01-23 09:44:32 +01:00
2024-01-21 07:48:22 +01:00
<div className="flex flex-col justify-center gap-5 overflow-auto p-5">
2024-04-01 11:04:56 +02:00
<button className="btn btn-primary" onClick={resetImagePaths}>
2022-12-21 16:43:54 +01:00
Reset Image
</button>
2024-01-23 09:54:08 +01:00
<div className="flex flex-row items-center gap-2">
2024-04-01 11:04:56 +02:00
<p className="text-sm font-medium">Lens View</p>
2024-01-23 09:54:08 +01:00
<input
type="checkbox"
className="toggle"
2024-04-01 11:04:56 +02:00
checked={viewType === "slider"}
2024-01-23 09:54:08 +01:00
onChange={(e) => {
setViewType(e.target.checked ? "slider" : "lens");
}}
/>
2024-04-01 11:04:56 +02:00
<p className="text-sm font-medium">Slider View</p>
2024-01-23 09:54:08 +01:00
</div>
<div className="flex flex-col gap-2">
2024-04-01 11:04:56 +02:00
<p className="text-sm font-medium">Zoom Amount ({zoomAmount}%)</p>
2024-01-23 09:54:08 +01:00
<input
type="range"
min="100"
max="1000"
step={10}
className="range range-md"
value={parseInt(zoomAmount)}
onChange={(e) => {
setZoomAmount(e.target.value);
localStorage.setItem("zoomAmount", e.target.value);
}}
/>
</div>
2024-01-23 09:44:32 +01:00
<div className="flex flex-col gap-2">
2024-04-01 11:04:56 +02:00
<p className="text-sm font-medium">Lens Size ({lensSize / 10})</p>
2024-01-23 09:44:32 +01:00
<input
type="range"
min="20"
max="400"
step={10}
className="range range-md"
value={lensSize}
onChange={(e) => {
setLensSize(parseInt(e.target.value));
}}
/>
</div>
2022-11-23 19:24:30 +01:00
</div>
</div>
</div>
);
};
export default ImageOptions;