mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-30 18:24:27 +01:00
36 lines
1005 B
TypeScript
36 lines
1005 B
TypeScript
import { overwriteAtom } from "@/atoms/userSettingsAtom";
|
|
import { useAtom } from "jotai";
|
|
import React, { useEffect } from "react";
|
|
|
|
const OverwriteToggle = () => {
|
|
const [overwrite, setOverwrite] = useAtom(overwriteAtom);
|
|
|
|
return (
|
|
<div className="flex flex-col gap-2">
|
|
<p className="text-sm font-medium">OVERWRITE PREVIOUS UPSCALE</p>
|
|
<p className="text-xs text-base-content/80">
|
|
If enabled, Upscayl will process the image again instead of loading it
|
|
directly.
|
|
</p>
|
|
<input
|
|
type="checkbox"
|
|
className="toggle"
|
|
checked={overwrite}
|
|
onClick={() => {
|
|
setOverwrite((oldValue: boolean) => {
|
|
if (oldValue) {
|
|
localStorage.removeItem("overwrite");
|
|
return false;
|
|
} else {
|
|
return true;
|
|
}
|
|
});
|
|
localStorage.setItem("overwrite", JSON.stringify(!overwrite));
|
|
}}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default OverwriteToggle;
|