diff --git a/frontend/src/app/pdf/compress/page.tsx b/frontend/src/app/pdf/compress/page.tsx index f031716..64367c2 100644 --- a/frontend/src/app/pdf/compress/page.tsx +++ b/frontend/src/app/pdf/compress/page.tsx @@ -16,10 +16,7 @@ export default function PdfCompressPage() { const [jobId, setJobId] = useState(null); const [errorMsg, setErrorMsg] = useState(null); - const { upload } = useUpload({ - tool: "pdf-compress", - options: { quality: 80 }, - }); + const { upload } = useUpload({ tool: "pdf-compress" }); const handleComplete = useCallback(() => setPageState("result"), []); const handleError = useCallback( @@ -58,46 +55,30 @@ export default function PdfCompressPage() { title="Compress PDF" description="Kecilin ukuran PDF" icon={FileImage} - phase={2} + phase={1} > {pageState === "upload" && ( )} {pageState === "processing" && jobId && ( - + )} {pageState === "result" && result && ( - + )} {pageState === "error" && (
-

- {errorMsg || "Terjadi kesalahan"} -

- +

{errorMsg || "Terjadi kesalahan"}

+
)} ); -} +} \ No newline at end of file diff --git a/frontend/src/app/pdf/split/page.tsx b/frontend/src/app/pdf/split/page.tsx index a698d77..441e5b1 100644 --- a/frontend/src/app/pdf/split/page.tsx +++ b/frontend/src/app/pdf/split/page.tsx @@ -15,10 +15,11 @@ export default function PdfSplitPage() { const [pageState, setPageState] = useState("upload"); const [jobId, setJobId] = useState(null); const [errorMsg, setErrorMsg] = useState(null); + const [pages, setPages] = useState("1,3-5"); const { upload } = useUpload({ tool: "pdf-split", - options: { quality: 80 }, + options: { pages }, }); const handleComplete = useCallback(() => setPageState("result"), []); @@ -56,48 +57,48 @@ export default function PdfSplitPage() { return ( {pageState === "upload" && ( - +
+
+

Page Range

+

+ Contoh: 1-3,5,7-9 ambil halaman 1-3, 5, dan 7-9 +

+ setPages(e.target.value)} + className="w-full bg-muted border rounded px-3 py-2 text-sm font-mono" + placeholder="1-3,5,7-9" + /> +
+ + +
)} {pageState === "processing" && jobId && ( - + )} {pageState === "result" && result && ( - + )} {pageState === "error" && (
-

- {errorMsg || "Terjadi kesalahan"} -

- +

{errorMsg || "Terjadi kesalahan"}

+
)}
); -} +} \ No newline at end of file diff --git a/frontend/src/components/tools/tool-grid.tsx b/frontend/src/components/tools/tool-grid.tsx index 08e4d75..3ad581a 100644 --- a/frontend/src/components/tools/tool-grid.tsx +++ b/frontend/src/components/tools/tool-grid.tsx @@ -82,10 +82,10 @@ const tools: ToolDefinition[] = [ { id: "pdf-split", title: "Split PDF", - description: "Ekstrak halaman tertentu dari PDF. Pilih via thumbnail atau range.", + description: "Ekstrak halaman tertentu dari PDF. Pilih page range seperti 1-3,5,7-9.", icon: Split, href: "/pdf/split", - phase: 2, + phase: 1, }, { id: "images-to-pdf", @@ -98,10 +98,10 @@ const tools: ToolDefinition[] = [ { id: "pdf-compress", title: "Compress PDF", - description: "Kecilin ukuran PDF dengan kompresi embedded images.", + description: "Kecilin ukuran PDF dengan kompresi ulang.", icon: FileImage, href: "/pdf/compress", - phase: 2, + phase: 1, }, { id: "video-compress",