1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-12-01 02:27:16 +01:00
upscayl/renderer/components/settings-tab/OverwriteToggle.tsx
NayamAmarshe d721e7ae7f
Update to new schema, ADD: zh, ja, ru, es and fr
MOD: All necessary strings to match
2024-09-05 21:37:19 -04:00

39 lines
1.1 KiB
TypeScript

import { translationAtom } from "@/atoms/translations-atom";
import { overwriteAtom } from "@/atoms/userSettingsAtom";
import { useAtom, useAtomValue } from "jotai";
import React, { useEffect } from "react";
const OverwriteToggle = () => {
const [overwrite, setOverwrite] = useAtom(overwriteAtom);
const t = useAtomValue(translationAtom);
return (
<div className="flex flex-col gap-2">
<p className="text-sm font-medium">
{t("SETTINGS.OVERWRITE_TOGGLE.TITLE")}
</p>
<p className="text-xs text-base-content/80">
{t("SETTINGS.OVERWRITE_TOGGLE.DESCRIPTION")}
</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;