mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2026-03-04 02:20:19 +01: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.3 KiB
TypeScript
62 lines
2.3 KiB
TypeScript
import { useTranslation } from "react-i18next";
|
|
import { createToolFlow } from "@app/components/tools/shared/createToolFlow";
|
|
import ChangePermissionsSettings from "@app/components/tools/changePermissions/ChangePermissionsSettings";
|
|
import { useChangePermissionsParameters } from "@app/hooks/tools/changePermissions/useChangePermissionsParameters";
|
|
import { useChangePermissionsOperation } from "@app/hooks/tools/changePermissions/useChangePermissionsOperation";
|
|
import { useChangePermissionsTips } from "@app/components/tooltips/useChangePermissionsTips";
|
|
import { useBaseTool } from "@app/hooks/tools/shared/useBaseTool";
|
|
import { BaseToolProps, ToolComponent } from "@app/types/tool";
|
|
|
|
const ChangePermissions = (props: BaseToolProps) => {
|
|
const { t } = useTranslation();
|
|
const changePermissionsTips = useChangePermissionsTips();
|
|
|
|
const base = useBaseTool(
|
|
'changePermissions',
|
|
useChangePermissionsParameters,
|
|
useChangePermissionsOperation,
|
|
props
|
|
);
|
|
|
|
return createToolFlow({
|
|
files: {
|
|
selectedFiles: base.selectedFiles,
|
|
isCollapsed: base.hasResults,
|
|
},
|
|
steps: [
|
|
{
|
|
title: t("changePermissions.title", "Document Permissions"),
|
|
isCollapsed: base.settingsCollapsed,
|
|
onCollapsedClick: base.settingsCollapsed ? base.handleSettingsReset : undefined,
|
|
tooltip: changePermissionsTips,
|
|
content: (
|
|
<ChangePermissionsSettings
|
|
parameters={base.params.parameters}
|
|
onParameterChange={base.params.updateParameter}
|
|
disabled={base.endpointLoading}
|
|
/>
|
|
),
|
|
},
|
|
],
|
|
executeButton: {
|
|
text: t("changePermissions.submit", "Change Permissions"),
|
|
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("changePermissions.results.title", "Modified PDFs"),
|
|
onFileClick: base.handleThumbnailClick,
|
|
onUndo: base.handleUndo,
|
|
},
|
|
});
|
|
};
|
|
|
|
// Static method to get the operation hook for automation
|
|
ChangePermissions.tool = () => useChangePermissionsOperation;
|
|
|
|
export default ChangePermissions as ToolComponent;
|