Files
SnapOtter/apps/web/src/components/tools/merge-pdf-settings.tsx
T
SnapOtterandGitHub 51022628dc fix(a11y): WCAG AA contrast retune for the Otter Orange palette (#567)
Fixes #557. Vivid fill, ink label: brand #E07832 stays on fills while primary-foreground flips to #1A1814 (5.83:1); new theme-aware ink tokens carry orange, destructive, and success text roles; opacity-modified text purged; landing, demo, and the docs fund button retuned. Guarded by a CSS-parsing unit contrast test, rebuilt axe baselines with zero contrast entries, a new landing axe smoke, and fully regenerated darwin visual baselines.
2026-07-18 12:56:48 +08:00

52 lines
1.6 KiB
TypeScript

import { ProgressCard } from "@/components/common/progress-card";
import { useTranslation } from "@/contexts/i18n-context";
import { useToolProcessor } from "@/hooks/use-tool-processor";
import { format } from "@/lib/format";
import { useFileStore } from "@/stores/file-store";
export function MergePdfSettings() {
const { t } = useTranslation();
const s = t.toolSettings["merge-pdf"];
const { files } = useFileStore();
const { processFiles, processing, error, progress } = useToolProcessor("merge-pdf");
const hasEnough = files.length >= 2;
const handleProcess = () => {
processFiles(files, {});
};
return (
<div className="space-y-4">
{files.length > 0 && (
<p className="text-xs text-muted-foreground">
{hasEnough ? format(s.orderHint, { count: files.length }) : s.needTwo}
</p>
)}
{error && <p className="text-xs text-destructive-ink">{error}</p>}
{processing ? (
<ProgressCard
active={processing}
phase={progress.phase === "idle" ? "uploading" : progress.phase}
label={s.progressLabel}
stage={progress.stage}
percent={progress.percent}
elapsed={progress.elapsed}
/>
) : (
<button
type="button"
data-testid="merge-pdf-submit"
onClick={handleProcess}
disabled={!hasEnough || processing}
className="w-full py-2.5 rounded-lg bg-primary text-primary-foreground font-medium disabled:opacity-50 disabled:cursor-not-allowed"
>
{s.submit}
</button>
)}
</div>
);
}