mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
119 lines
3.7 KiB
TypeScript
119 lines
3.7 KiB
TypeScript
import { useState } from "react";
|
|
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 PdfMetadataSettings() {
|
|
const { t } = useTranslation();
|
|
const s = t.toolSettings["pdf-metadata"];
|
|
const { files } = useFileStore();
|
|
const { processFiles, processAllFiles, processing, error, progress } =
|
|
useToolProcessor("pdf-metadata");
|
|
|
|
const [title, setTitle] = useState("");
|
|
const [author, setAuthor] = useState("");
|
|
const [subject, setSubject] = useState("");
|
|
const [keywords, setKeywords] = useState("");
|
|
|
|
const hasFile = files.length > 0;
|
|
const hasMultiple = files.length > 1;
|
|
|
|
const handleProcess = () => {
|
|
const settings: Record<string, string> = {};
|
|
if (title) settings.title = title;
|
|
if (author) settings.author = author;
|
|
if (subject) settings.subject = subject;
|
|
if (keywords) settings.keywords = keywords;
|
|
if (hasMultiple) {
|
|
processAllFiles(files, settings);
|
|
} else {
|
|
processFiles(files, settings);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="space-y-4">
|
|
<div>
|
|
<label htmlFor="pm-title" className="text-xs text-muted-foreground">
|
|
{s.title}
|
|
</label>
|
|
<input
|
|
id="pm-title"
|
|
type="text"
|
|
maxLength={500}
|
|
value={title}
|
|
onChange={(e) => setTitle(e.target.value)}
|
|
className="w-full mt-0.5 px-2 py-1.5 rounded border border-border bg-background text-sm text-foreground"
|
|
/>
|
|
</div>
|
|
|
|
<div>
|
|
<label htmlFor="pm-author" className="text-xs text-muted-foreground">
|
|
{s.author}
|
|
</label>
|
|
<input
|
|
id="pm-author"
|
|
type="text"
|
|
maxLength={500}
|
|
value={author}
|
|
onChange={(e) => setAuthor(e.target.value)}
|
|
className="w-full mt-0.5 px-2 py-1.5 rounded border border-border bg-background text-sm text-foreground"
|
|
/>
|
|
</div>
|
|
|
|
<div>
|
|
<label htmlFor="pm-subject" className="text-xs text-muted-foreground">
|
|
{s.subject}
|
|
</label>
|
|
<input
|
|
id="pm-subject"
|
|
type="text"
|
|
maxLength={500}
|
|
value={subject}
|
|
onChange={(e) => setSubject(e.target.value)}
|
|
className="w-full mt-0.5 px-2 py-1.5 rounded border border-border bg-background text-sm text-foreground"
|
|
/>
|
|
</div>
|
|
|
|
<div>
|
|
<label htmlFor="pm-keywords" className="text-xs text-muted-foreground">
|
|
{s.keywords}
|
|
</label>
|
|
<input
|
|
id="pm-keywords"
|
|
type="text"
|
|
maxLength={500}
|
|
value={keywords}
|
|
onChange={(e) => setKeywords(e.target.value)}
|
|
className="w-full mt-0.5 px-2 py-1.5 rounded border border-border bg-background text-sm text-foreground"
|
|
/>
|
|
</div>
|
|
|
|
{error && <p className="text-xs text-red-500">{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="pdf-metadata-submit"
|
|
onClick={handleProcess}
|
|
disabled={!hasFile || processing}
|
|
className="w-full py-2.5 rounded-lg bg-primary text-primary-foreground font-medium disabled:opacity-50 disabled:cursor-not-allowed"
|
|
>
|
|
{hasMultiple ? format(s.submitBatch, { count: files.length }) : s.submit}
|
|
</button>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|