mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-08-22 04:09:22 +00:00

# Description of Changes A new universal file context rather than the splintered ones for the main views, tools and manager we had before (manager still has its own but its better integreated with the core context) File context has been split it into a handful of different files managing various file related issues separately to reduce the monolith - FileReducer.ts - State management fileActions.ts - File operations fileSelectors.ts - Data access patterns lifecycle.ts - Resource cleanup and memory management fileHooks.ts - React hooks interface contexts.ts - Context providers Improved thumbnail generation Improved indexxedb handling Stopped handling files as blobs were not necessary to improve performance A new library handling drag and drop https://github.com/atlassian/pragmatic-drag-and-drop (Out of scope yes but I broke the old one with the new filecontext and it needed doing so it was a might as well) A new library handling virtualisation on page editor @tanstack/react-virtual, as above. Quickly ripped out the last remnants of the old URL params stuff and replaced with the beginnings of what will later become the new URL navigation system (for now it just restores the tool name in url behavior) Fixed selected file not regestered when opening a tool Fixed png thumbnails Closes #(issue_number) --- ## Checklist ### General - [ ] I have read the [Contribution Guidelines](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/CONTRIBUTING.md) - [ ] I have read the [Stirling-PDF Developer Guide](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/DeveloperGuide.md) (if applicable) - [ ] I have read the [How to add new languages to Stirling-PDF](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/HowToAddNewLanguage.md) (if applicable) - [ ] I have performed a self-review of my own code - [ ] My changes generate no new warnings ### Documentation - [ ] I have updated relevant docs on [Stirling-PDF's doc repo](https://github.com/Stirling-Tools/Stirling-Tools.github.io/blob/main/docs/) (if functionality has heavily changed) - [ ] I have read the section [Add New Translation Tags](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/HowToAddNewLanguage.md#add-new-translation-tags) (for new translation tags only) ### UI Changes (if applicable) - [ ] Screenshots or videos demonstrating the UI changes are attached (e.g., as comments or direct attachments in the PR) ### Testing (if applicable) - [ ] I have tested my changes locally. Refer to the [Testing Guide](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/DeveloperGuide.md#6-testing) for more details. --------- Co-authored-by: Reece Browne <you@example.com>
167 lines
5.2 KiB
TypeScript
167 lines
5.2 KiB
TypeScript
import React from 'react';
|
|
import { Box } from '@mantine/core';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { useRainbowThemeContext } from '../shared/RainbowThemeProvider';
|
|
import { useToolWorkflow } from '../../contexts/ToolWorkflowContext';
|
|
import { useFileHandler } from '../../hooks/useFileHandler';
|
|
import { useFileState, useFileActions } from '../../contexts/FileContext';
|
|
import { useNavigationState, useNavigationActions } from '../../contexts/NavigationContext';
|
|
|
|
import TopControls from '../shared/TopControls';
|
|
import FileEditor from '../fileEditor/FileEditor';
|
|
import PageEditor from '../pageEditor/PageEditor';
|
|
import PageEditorControls from '../pageEditor/PageEditorControls';
|
|
import Viewer from '../viewer/Viewer';
|
|
import ToolRenderer from '../tools/ToolRenderer';
|
|
import LandingPage from '../shared/LandingPage';
|
|
|
|
// No props needed - component uses contexts directly
|
|
export default function Workbench() {
|
|
const { t } = useTranslation();
|
|
const { isRainbowMode } = useRainbowThemeContext();
|
|
|
|
// Use context-based hooks to eliminate all prop drilling
|
|
const { state } = useFileState();
|
|
const { actions } = useFileActions();
|
|
const { currentMode: currentView } = useNavigationState();
|
|
const { actions: navActions } = useNavigationActions();
|
|
const setCurrentView = navActions.setMode;
|
|
const activeFiles = state.files.ids;
|
|
const {
|
|
previewFile,
|
|
pageEditorFunctions,
|
|
sidebarsVisible,
|
|
setPreviewFile,
|
|
setPageEditorFunctions,
|
|
setSidebarsVisible
|
|
} = useToolWorkflow();
|
|
|
|
const { selectedToolKey, selectedTool, handleToolSelect } = useToolWorkflow();
|
|
const { addToActiveFiles } = useFileHandler();
|
|
|
|
const handlePreviewClose = () => {
|
|
setPreviewFile(null);
|
|
const previousMode = sessionStorage.getItem('previousMode');
|
|
if (previousMode === 'split') {
|
|
// Use context's handleToolSelect which coordinates tool selection and view changes
|
|
handleToolSelect('split');
|
|
sessionStorage.removeItem('previousMode');
|
|
} else if (previousMode === 'compress') {
|
|
handleToolSelect('compress');
|
|
sessionStorage.removeItem('previousMode');
|
|
} else if (previousMode === 'convert') {
|
|
handleToolSelect('convert');
|
|
sessionStorage.removeItem('previousMode');
|
|
} else {
|
|
setCurrentView('fileEditor');
|
|
}
|
|
};
|
|
|
|
const renderMainContent = () => {
|
|
if (activeFiles.length === 0) {
|
|
return (
|
|
<LandingPage
|
|
/>
|
|
);
|
|
}
|
|
|
|
switch (currentView) {
|
|
case "fileEditor":
|
|
return (
|
|
<FileEditor
|
|
toolMode={!!selectedToolKey}
|
|
showUpload={true}
|
|
showBulkActions={!selectedToolKey}
|
|
supportedExtensions={selectedTool?.supportedFormats || ["pdf"]}
|
|
{...(!selectedToolKey && {
|
|
onOpenPageEditor: (file) => {
|
|
setCurrentView("pageEditor");
|
|
},
|
|
onMergeFiles: (filesToMerge) => {
|
|
filesToMerge.forEach(addToActiveFiles);
|
|
setCurrentView("viewer");
|
|
}
|
|
})}
|
|
/>
|
|
);
|
|
|
|
case "viewer":
|
|
return (
|
|
<Viewer
|
|
sidebarsVisible={sidebarsVisible}
|
|
setSidebarsVisible={setSidebarsVisible}
|
|
previewFile={previewFile}
|
|
onClose={handlePreviewClose}
|
|
/>
|
|
);
|
|
|
|
case "pageEditor":
|
|
return (
|
|
<>
|
|
<PageEditor
|
|
onFunctionsReady={setPageEditorFunctions}
|
|
/>
|
|
{pageEditorFunctions && (
|
|
<PageEditorControls
|
|
onClosePdf={pageEditorFunctions.closePdf}
|
|
onUndo={pageEditorFunctions.handleUndo}
|
|
onRedo={pageEditorFunctions.handleRedo}
|
|
canUndo={pageEditorFunctions.canUndo}
|
|
canRedo={pageEditorFunctions.canRedo}
|
|
onRotate={pageEditorFunctions.handleRotate}
|
|
onDelete={pageEditorFunctions.handleDelete}
|
|
onSplit={pageEditorFunctions.handleSplit}
|
|
onExportSelected={pageEditorFunctions.onExportSelected}
|
|
onExportAll={pageEditorFunctions.onExportAll}
|
|
exportLoading={pageEditorFunctions.exportLoading}
|
|
selectionMode={pageEditorFunctions.selectionMode}
|
|
selectedPages={pageEditorFunctions.selectedPages}
|
|
/>
|
|
)}
|
|
</>
|
|
);
|
|
|
|
default:
|
|
// Check if it's a tool view
|
|
if (selectedToolKey && selectedTool) {
|
|
return (
|
|
<ToolRenderer
|
|
selectedToolKey={selectedToolKey}
|
|
/>
|
|
);
|
|
}
|
|
return (
|
|
<LandingPage/>
|
|
);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<Box
|
|
className="flex-1 h-screen min-w-80 relative flex flex-col"
|
|
style={
|
|
isRainbowMode
|
|
? {} // No background color in rainbow mode
|
|
: { backgroundColor: 'var(--bg-background)' }
|
|
}
|
|
>
|
|
{/* Top Controls */}
|
|
<TopControls
|
|
currentView={currentView}
|
|
setCurrentView={setCurrentView}
|
|
selectedToolKey={selectedToolKey}
|
|
/>
|
|
|
|
{/* Main content area */}
|
|
<Box
|
|
className="flex-1 min-h-0 relative z-10"
|
|
style={{
|
|
transition: 'opacity 0.15s ease-in-out',
|
|
}}
|
|
>
|
|
{renderMainContent()}
|
|
</Box>
|
|
</Box>
|
|
);
|
|
}
|