2024-09-01 14:01:45 +02:00
|
|
|
import { translationAtom } from "@/atoms/translations-atom";
|
|
|
|
import { useAtomValue } from "jotai";
|
|
|
|
|
2023-09-16 12:34:35 +02:00
|
|
|
type CompressionInputProps = {
|
2023-09-13 16:07:45 +02:00
|
|
|
compression: number;
|
2023-09-16 12:34:35 +02:00
|
|
|
handleCompressionChange: (arg: any) => void;
|
2023-07-23 11:07:18 +02:00
|
|
|
};
|
|
|
|
|
2024-10-04 11:15:54 +02:00
|
|
|
export function InputCompression({
|
2023-09-13 16:07:45 +02:00
|
|
|
compression,
|
2023-09-16 12:34:35 +02:00
|
|
|
handleCompressionChange,
|
|
|
|
}: CompressionInputProps) {
|
2024-09-01 14:01:45 +02:00
|
|
|
const t = useAtomValue(translationAtom);
|
|
|
|
|
2023-07-23 11:07:18 +02:00
|
|
|
return (
|
|
|
|
<div className="flex flex-col gap-2">
|
2023-08-30 06:54:16 +02:00
|
|
|
<div className="flex gap-1 text-sm font-medium uppercase">
|
2024-09-01 14:01:45 +02:00
|
|
|
<p className="shrink-0">
|
2024-09-03 09:34:58 +02:00
|
|
|
{t("SETTINGS.IMAGE_COMPRESSION.TITLE", {
|
2024-09-01 14:01:45 +02:00
|
|
|
compression: compression.toString(),
|
|
|
|
})}
|
|
|
|
</p>
|
2023-08-30 06:54:16 +02:00
|
|
|
</div>
|
2023-11-23 06:39:46 +01:00
|
|
|
{compression > 0 && (
|
|
|
|
<p className="text-xs text-base-content/80">
|
2024-09-03 09:34:58 +02:00
|
|
|
{t("SETTINGS.IMAGE_COMPRESSION.DESCRIPTION")}
|
2023-11-23 06:39:46 +01:00
|
|
|
</p>
|
|
|
|
)}
|
2023-07-23 11:07:18 +02:00
|
|
|
<input
|
|
|
|
type="range"
|
|
|
|
placeholder="Type here"
|
|
|
|
className="range range-primary w-full max-w-xs"
|
|
|
|
min={0}
|
|
|
|
max={100}
|
2023-09-13 16:07:45 +02:00
|
|
|
value={compression}
|
2023-09-16 12:34:35 +02:00
|
|
|
onChange={handleCompressionChange}
|
2023-07-23 11:07:18 +02:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|