mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-07-15 11:00:47 +02:00
# Description of Changes Move frontend code into `core` folder and add infrastructure for `proprietary` folder to include premium, non-OSS features
62 lines
2.0 KiB
TypeScript
62 lines
2.0 KiB
TypeScript
import { useTranslation } from "react-i18next";
|
|
import { createToolFlow } from "@app/components/tools/shared/createToolFlow";
|
|
import FlattenSettings from "@app/components/tools/flatten/FlattenSettings";
|
|
import { useFlattenParameters } from "@app/hooks/tools/flatten/useFlattenParameters";
|
|
import { useFlattenOperation } from "@app/hooks/tools/flatten/useFlattenOperation";
|
|
import { useBaseTool } from "@app/hooks/tools/shared/useBaseTool";
|
|
import { useFlattenTips } from "@app/components/tooltips/useFlattenTips";
|
|
import { BaseToolProps, ToolComponent } from "@app/types/tool";
|
|
|
|
const Flatten = (props: BaseToolProps) => {
|
|
const { t } = useTranslation();
|
|
const flattenTips = useFlattenTips();
|
|
|
|
const base = useBaseTool(
|
|
'flatten',
|
|
useFlattenParameters,
|
|
useFlattenOperation,
|
|
props
|
|
);
|
|
|
|
return createToolFlow({
|
|
files: {
|
|
selectedFiles: base.selectedFiles,
|
|
isCollapsed: base.hasResults,
|
|
},
|
|
steps: [
|
|
{
|
|
title: t("flatten.options.stepTitle", "Flatten Options"),
|
|
isCollapsed: base.settingsCollapsed,
|
|
onCollapsedClick: base.settingsCollapsed ? base.handleSettingsReset : undefined,
|
|
tooltip: flattenTips,
|
|
content: (
|
|
<FlattenSettings
|
|
parameters={base.params.parameters}
|
|
onParameterChange={base.params.updateParameter}
|
|
disabled={base.endpointLoading}
|
|
/>
|
|
),
|
|
},
|
|
],
|
|
executeButton: {
|
|
text: t("flatten.submit", "Flatten PDF"),
|
|
isVisible: !base.hasResults,
|
|
loadingText: t("loading"),
|
|
onClick: base.handleExecute,
|
|
disabled: !base.params.validateParameters() || !base.hasFiles || !base.endpointEnabled,
|
|
},
|
|
review: {
|
|
isVisible: base.hasResults,
|
|
operation: base.operation,
|
|
title: t("flatten.results.title", "Flatten Results"),
|
|
onFileClick: base.handleThumbnailClick,
|
|
onUndo: base.handleUndo,
|
|
},
|
|
});
|
|
};
|
|
|
|
// Static method to get the operation hook for automation
|
|
Flatten.tool = () => useFlattenOperation;
|
|
|
|
export default Flatten as ToolComponent;
|