mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-08-29 15:49:22 +00:00

# Description of Changes Reduce boilerplate in tool frontends by creating a base frontend hook for the simple tools to use. I've done all the simple tools here. It'd be nice to add in some of the more complex tools as well in the future if we can figure out how.
56 lines
1.7 KiB
TypeScript
56 lines
1.7 KiB
TypeScript
import { useEffect } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { createToolFlow } from "../components/tools/shared/createToolFlow";
|
|
import SplitSettings from "../components/tools/split/SplitSettings";
|
|
import { useSplitParameters } from "../hooks/tools/split/useSplitParameters";
|
|
import { useSplitOperation } from "../hooks/tools/split/useSplitOperation";
|
|
import { useBaseTool } from "../hooks/tools/shared/useBaseTool";
|
|
import { BaseToolProps, ToolComponent } from "../types/tool";
|
|
|
|
const Split = (props: BaseToolProps) => {
|
|
const { t } = useTranslation();
|
|
|
|
const base = useBaseTool(
|
|
'split',
|
|
useSplitParameters,
|
|
useSplitOperation,
|
|
props
|
|
);
|
|
|
|
return createToolFlow({
|
|
files: {
|
|
selectedFiles: base.selectedFiles,
|
|
isCollapsed: base.hasResults,
|
|
},
|
|
steps: [
|
|
{
|
|
title: "Settings",
|
|
isCollapsed: base.settingsCollapsed,
|
|
onCollapsedClick: base.hasResults ? base.handleSettingsReset : undefined,
|
|
content: (
|
|
<SplitSettings
|
|
parameters={base.params.parameters}
|
|
onParameterChange={base.params.updateParameter}
|
|
disabled={base.endpointLoading}
|
|
/>
|
|
),
|
|
},
|
|
],
|
|
executeButton: {
|
|
text: t("split.submit", "Split PDF"),
|
|
loadingText: t("loading"),
|
|
onClick: base.handleExecute,
|
|
isVisible: !base.hasResults,
|
|
disabled: !base.params.validateParameters() || !base.hasFiles || !base.endpointEnabled,
|
|
},
|
|
review: {
|
|
isVisible: base.hasResults,
|
|
operation: base.operation,
|
|
title: "Split Results",
|
|
onFileClick: base.handleThumbnailClick,
|
|
},
|
|
});
|
|
};
|
|
|
|
export default Split as ToolComponent;
|