mirror of
https://github.com/upscayl/upscayl.git
synced 2024-12-19 10:55:53 +01:00
54 lines
1.8 KiB
TypeScript
54 lines
1.8 KiB
TypeScript
import { customWidthAtom, useCustomWidthAtom } from "@/atoms/userSettingsAtom";
|
|
import { useAtom } from "jotai";
|
|
import React, { useState } from "react";
|
|
import { Input } from "../ui/input";
|
|
|
|
export function CustomResolutionInput() {
|
|
const [useCustomWidth, setUseCustomWidth] = useAtom(useCustomWidthAtom);
|
|
const [customWidth, setCustomWidth] = useAtom(customWidthAtom);
|
|
|
|
return (
|
|
<div>
|
|
<div className="flex flex-col gap-1">
|
|
<p className="text-sm font-medium">CUSTOM OUTPUT WIDTH</p>
|
|
<p className="text-xs text-base-content/80">
|
|
<b>REQUIRES RESTART</b>
|
|
<br />
|
|
Use a custom width for the output images. The height will be adjusted
|
|
automatically. Enabling this will override the scale setting.
|
|
</p>
|
|
</div>
|
|
<div className="mt-2 flex items-center gap-2">
|
|
<input
|
|
type="checkbox"
|
|
className="toggle"
|
|
checked={useCustomWidth}
|
|
onClick={(e) => {
|
|
if (!e.currentTarget.checked) {
|
|
localStorage.removeItem("customWidth");
|
|
}
|
|
setUseCustomWidth(!useCustomWidth);
|
|
}}
|
|
/>
|
|
<input
|
|
type="number"
|
|
value={customWidth}
|
|
disabled={!useCustomWidth}
|
|
onChange={(e) => {
|
|
if (e.currentTarget.value === "") {
|
|
setUseCustomWidth(false);
|
|
setCustomWidth(null);
|
|
localStorage.removeItem("customWidth");
|
|
return;
|
|
}
|
|
setCustomWidth(parseInt(e.currentTarget.value));
|
|
}}
|
|
step="1"
|
|
min="1"
|
|
className="input input-primary h-7 w-32 [appearance:textfield] [&::-webkit-inner-spin-button]:appearance-none [&::-webkit-outer-spin-button]:appearance-none"
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|