1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-01-27 16:33:44 +01:00
upscayl/renderer/components/settings-tab/OverwriteToggle.tsx

36 lines
1005 B
TypeScript
Raw Normal View History

import { overwriteAtom } from "@/atoms/userSettingsAtom";
import { useAtom } from "jotai";
2023-08-11 15:15:27 +05:30
import React, { useEffect } from "react";
2023-08-10 15:47:35 +05:30
const OverwriteToggle = () => {
const [overwrite, setOverwrite] = useAtom(overwriteAtom);
2023-08-30 10:24:16 +05:30
2023-08-10 15:47:35 +05:30
return (
<div className="flex flex-col gap-2">
<p className="text-sm font-medium">OVERWRITE PREVIOUS UPSCALE</p>
2023-09-09 19:28:21 +05:30
<p className="text-xs text-base-content/80">
If enabled, Upscayl will process the image again instead of loading it
directly.
</p>
2023-08-10 15:47:35 +05:30
<input
type="checkbox"
2023-08-26 12:57:15 +05:30
className="toggle"
2023-08-10 15:47:35 +05:30
checked={overwrite}
onClick={() => {
2023-08-30 10:24:16 +05:30
setOverwrite((oldValue: boolean) => {
if (oldValue) {
2023-08-10 15:47:35 +05:30
localStorage.removeItem("overwrite");
2023-08-30 10:24:16 +05:30
return false;
} else {
return true;
2023-08-10 15:47:35 +05:30
}
});
localStorage.setItem("overwrite", JSON.stringify(!overwrite));
}}
/>
</div>
);
};
2023-09-19 00:00:43 +05:30
export default OverwriteToggle;