Files
SnapOtter/apps/web/src/components/tools/rotate-settings.tsx
T
SnapOtterandGitHub 6339370093 fix(a11y): focus indicators meet the 3:1 non-text contrast bar (#574)
Fixes #568. Adds a real --color-ring token (ink orange #A85518 light / #F0A766 dark) and sweeps all 57 focus-indicator occurrences onto it: soft opacity rings blended to 1.2-1.7:1, border-only indicators sat at 2.6-3.0:1, and four focus:ring-ring sites referenced a token that never existed. Sponsor button keeps pink via pink-700; range sliders and the file list gain their missing keyboard indicators; landing skip link and form borders hardened; the palette contrast guard pins the ring at 3:1 in both themes.
2026-07-19 16:23:15 +08:00

330 lines
11 KiB
TypeScript

import { FlipHorizontal, FlipVertical, Minus, Plus, RotateCcw, RotateCw } from "lucide-react";
import { useEffect, useRef, useState } from "react";
import { ProgressCard } from "@/components/common/progress-card";
import { useToolProcessor } from "@/hooks/use-tool-processor";
import { useFileStore } from "@/stores/file-store";
export interface PreviewTransform {
rotate: number;
flipH: boolean;
flipV: boolean;
}
export interface RotateControlsProps {
settings?: Record<string, unknown>;
onChange?: (settings: Record<string, unknown>) => void;
onPreviewTransform?: (transform: PreviewTransform) => void;
resetSignal?: number;
}
export function RotateControls({
settings: initialSettings,
onChange,
onPreviewTransform,
resetSignal,
}: RotateControlsProps) {
// Quick rotation in 90° steps: 0, 90, 180, 270
const [rotation, setRotation] = useState(0);
// Fine straighten adjustment: -45 to +45
const [straighten, setStraighten] = useState(0);
const [flipH, setFlipH] = useState(false);
const [flipV, setFlipV] = useState(false);
const initializedRef = useRef(false);
useEffect(() => {
if (!initialSettings || initializedRef.current) return;
initializedRef.current = true;
if (initialSettings.angle != null) setRotation(Number(initialSettings.angle));
if (initialSettings.horizontal != null) setFlipH(Boolean(initialSettings.horizontal));
if (initialSettings.vertical != null) setFlipV(Boolean(initialSettings.vertical));
}, [initialSettings]);
const totalAngle = rotation + straighten;
const onChangeRef = useRef(onChange);
useEffect(() => {
onChangeRef.current = onChange;
});
// Report settings on change
useEffect(() => {
const backendAngle = ((totalAngle % 360) + 360) % 360;
onChangeRef.current?.({ angle: backendAngle, horizontal: flipH, vertical: flipV });
}, [totalAngle, flipH, flipV]);
// Emit preview transform on every change
useEffect(() => {
onPreviewTransform?.({ rotate: totalAngle, flipH, flipV });
}, [totalAngle, flipH, flipV, onPreviewTransform]);
// Reset controls when resetSignal increments
useEffect(() => {
if (resetSignal !== undefined && resetSignal > 0) {
setRotation(0);
setStraighten(0);
setFlipH(false);
setFlipV(false);
}
}, [resetSignal]);
// Display angle normalized to 0-359
const displayAngle = ((totalAngle % 360) + 360) % 360;
const [angleInput, setAngleInput] = useState(String(displayAngle));
const prevDisplayAngle = useRef(displayAngle);
if (prevDisplayAngle.current !== displayAngle) {
prevDisplayAngle.current = displayAngle;
setAngleInput(String(displayAngle));
}
const rotateLeft = () => setRotation((r) => r - 90);
const rotateRight = () => setRotation((r) => r + 90);
const commitAngleInput = () => {
const parsed = Number.parseInt(angleInput, 10);
if (!Number.isNaN(parsed)) {
const normalized = ((parsed % 360) + 360) % 360;
setAngleInput(String(normalized));
setRotation(normalized - straighten);
} else {
setAngleInput(String(displayAngle));
}
};
const hasChanges = totalAngle !== 0 || flipH || flipV;
const handleReset = () => {
setRotation(0);
setStraighten(0);
setFlipH(false);
setFlipV(false);
};
return (
<div className="space-y-4">
{/* Quick rotate presets */}
<div>
<p className="text-xs text-muted-foreground">Rotate</p>
<div className="flex gap-1.5 mt-1">
<button
type="button"
data-testid="rotate-left"
onClick={rotateLeft}
className="flex-1 flex items-center justify-center gap-1 py-2 rounded-lg bg-muted text-muted-foreground hover:bg-primary hover:text-primary-foreground transition-colors text-xs font-medium"
title="Rotate 90° counter-clockwise"
>
<RotateCcw className="h-3.5 w-3.5" />
-90°
</button>
<button
type="button"
onClick={() => setRotation((r) => r + 180)}
className="flex-1 flex items-center justify-center py-2 rounded-lg bg-muted text-muted-foreground hover:bg-primary hover:text-primary-foreground transition-colors text-xs font-medium"
title="Rotate 180°"
>
180°
</button>
<button
type="button"
data-testid="rotate-right"
onClick={rotateRight}
className="flex-1 flex items-center justify-center gap-1 py-2 rounded-lg bg-muted text-muted-foreground hover:bg-primary hover:text-primary-foreground transition-colors text-xs font-medium"
title="Rotate 90° clockwise"
>
+90°
<RotateCw className="h-3.5 w-3.5" />
</button>
</div>
</div>
{/* Custom angle */}
<div>
<p className="text-xs text-muted-foreground">Angle</p>
<div className="flex items-center justify-center gap-1.5 mt-1">
<button
type="button"
onClick={() => setRotation((r) => r - 1)}
className="p-2 rounded-lg bg-muted text-muted-foreground hover:bg-primary hover:text-primary-foreground transition-colors"
title="Decrease 1°"
>
<Minus className="h-3.5 w-3.5" />
</button>
<div className="relative flex items-center">
<input
type="text"
inputMode="numeric"
value={angleInput}
onChange={(e) => setAngleInput(e.target.value)}
onBlur={commitAngleInput}
onKeyDown={(e) => {
if (e.key === "Enter") {
e.preventDefault();
commitAngleInput();
}
}}
className="w-16 text-center text-sm font-mono font-medium tabular-nums py-1.5 rounded-md bg-background border border-border focus:outline-none focus:ring-2 focus:ring-ring pe-4"
/>
<span className="absolute right-2 text-sm font-mono text-muted-foreground pointer-events-none">
°
</span>
</div>
<button
type="button"
onClick={() => setRotation((r) => r + 1)}
className="p-2 rounded-lg bg-muted text-muted-foreground hover:bg-primary hover:text-primary-foreground transition-colors"
title="Increase 1°"
>
<Plus className="h-3.5 w-3.5" />
</button>
</div>
</div>
{/* Straighten */}
<div>
<div className="flex justify-between items-center">
<label htmlFor="rotate-straighten" className="text-xs text-muted-foreground">
Straighten
</label>
<span className="text-xs font-mono tabular-nums text-muted-foreground">
{straighten > 0 ? "+" : ""}
{straighten}°
</span>
</div>
<input
id="rotate-straighten"
type="range"
min={-45}
max={45}
step={0.5}
value={straighten}
onChange={(e) => setStraighten(Number(e.target.value))}
className="w-full mt-1"
/>
<div className="flex justify-between text-[10px] text-muted-foreground mt-0.5">
<span>-45°</span>
<span>0°</span>
<span>+45°</span>
</div>
</div>
{/* Flip buttons */}
<div>
<p className="text-xs text-muted-foreground">Flip</p>
<div className="flex gap-2 mt-1">
<button
type="button"
data-testid="rotate-flip-h"
onClick={() => setFlipH(!flipH)}
className={`flex-1 flex items-center justify-center gap-1.5 py-2 rounded-lg text-xs font-medium transition-colors ${
flipH
? "bg-primary text-primary-foreground"
: "bg-muted text-muted-foreground hover:bg-primary/10"
}`}
>
<FlipHorizontal className="h-3.5 w-3.5" />
Horizontal
</button>
<button
type="button"
data-testid="rotate-flip-v"
onClick={() => setFlipV(!flipV)}
className={`flex-1 flex items-center justify-center gap-1.5 py-2 rounded-lg text-xs font-medium transition-colors ${
flipV
? "bg-primary text-primary-foreground"
: "bg-muted text-muted-foreground hover:bg-primary/10"
}`}
>
<FlipVertical className="h-3.5 w-3.5" />
Vertical
</button>
</div>
</div>
{/* Reset all */}
{hasChanges && (
<button
type="button"
onClick={handleReset}
className="w-full text-xs text-muted-foreground hover:text-foreground py-1"
>
Reset all changes
</button>
)}
</div>
);
}
interface RotateSettingsProps {
onPreviewTransform?: (transform: PreviewTransform) => void;
}
export function RotateSettings({ onPreviewTransform }: RotateSettingsProps) {
const { files } = useFileStore();
const { processFiles, processAllFiles, processing, error, progress } = useToolProcessor("rotate");
const [settings, setSettings] = useState<Record<string, unknown>>({});
const [resetSignal, setResetSignal] = useState(0);
// Reset controls after successful processing
const prevProcessing = useRef(processing);
useEffect(() => {
if (prevProcessing.current && !processing && !error) {
setResetSignal((s) => s + 1);
}
prevProcessing.current = processing;
}, [processing, error]);
const handleProcess = () => {
if (files.length > 1) {
processAllFiles(files, settings);
} else {
processFiles(files, settings);
}
};
const hasFile = files.length > 0;
const hasChanges =
(settings.angle !== undefined && settings.angle !== 0) ||
settings.horizontal === true ||
settings.vertical === true;
const handleSubmit = (e: React.FormEvent) => {
e.preventDefault();
if (hasFile && hasChanges && !processing) handleProcess();
};
return (
<form onSubmit={handleSubmit} className="space-y-4">
<RotateControls
onChange={setSettings}
onPreviewTransform={onPreviewTransform}
resetSignal={resetSignal}
/>
{/* Error */}
{error && <p className="text-xs text-destructive-ink">{error}</p>}
{/* Process */}
{processing ? (
<ProgressCard
active={processing}
phase={progress.phase === "idle" ? "uploading" : progress.phase}
label="Applying"
stage={progress.stage}
percent={progress.percent}
elapsed={progress.elapsed}
/>
) : (
<button
type="submit"
data-testid="rotate-submit"
disabled={!hasFile || !hasChanges || processing}
className="w-full py-2.5 rounded-lg bg-primary text-primary-foreground font-medium disabled:opacity-50 disabled:cursor-not-allowed flex items-center justify-center gap-2"
>
{files.length > 1 ? `Apply (${files.length} files)` : "Apply"}
</button>
)}
</form>
);
}