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>
155 lines
4.9 KiB
TypeScript
155 lines
4.9 KiB
TypeScript
import React, { useRef, useEffect, useState, useCallback } from 'react';
|
|
import { Box } from '@mantine/core';
|
|
import { useVirtualizer } from '@tanstack/react-virtual';
|
|
import { dropTargetForElements } from '@atlaskit/pragmatic-drag-and-drop/element/adapter';
|
|
import styles from './PageEditor.module.css';
|
|
|
|
interface DragDropItem {
|
|
id: string;
|
|
splitBefore?: boolean;
|
|
}
|
|
|
|
interface DragDropGridProps<T extends DragDropItem> {
|
|
items: T[];
|
|
selectedItems: number[];
|
|
selectionMode: boolean;
|
|
isAnimating: boolean;
|
|
onReorderPages: (sourcePageNumber: number, targetIndex: number, selectedPages?: number[]) => void;
|
|
renderItem: (item: T, index: number, refs: React.MutableRefObject<Map<string, HTMLDivElement>>) => React.ReactNode;
|
|
renderSplitMarker?: (item: T, index: number) => React.ReactNode;
|
|
}
|
|
|
|
const DragDropGrid = <T extends DragDropItem>({
|
|
items,
|
|
selectedItems,
|
|
selectionMode,
|
|
isAnimating,
|
|
onReorderPages,
|
|
renderItem,
|
|
renderSplitMarker,
|
|
}: DragDropGridProps<T>) => {
|
|
const itemRefs = useRef<Map<string, HTMLDivElement>>(new Map());
|
|
const containerRef = useRef<HTMLDivElement>(null);
|
|
|
|
// Responsive grid configuration
|
|
const [itemsPerRow, setItemsPerRow] = useState(4);
|
|
const ITEM_WIDTH = 320; // 20rem (page width)
|
|
const ITEM_GAP = 24; // 1.5rem gap between items
|
|
const ITEM_HEIGHT = 340; // 20rem + gap
|
|
const OVERSCAN = items.length > 1000 ? 8 : 4; // More overscan for large documents
|
|
|
|
// Calculate items per row based on container width
|
|
const calculateItemsPerRow = useCallback(() => {
|
|
if (!containerRef.current) return 4; // Default fallback
|
|
|
|
const containerWidth = containerRef.current.offsetWidth;
|
|
if (containerWidth === 0) return 4; // Container not measured yet
|
|
|
|
// Calculate how many items fit: (width - gap) / (itemWidth + gap)
|
|
const availableWidth = containerWidth - ITEM_GAP; // Account for first gap
|
|
const itemWithGap = ITEM_WIDTH + ITEM_GAP;
|
|
const calculated = Math.floor(availableWidth / itemWithGap);
|
|
|
|
return Math.max(1, calculated); // At least 1 item per row
|
|
}, []);
|
|
|
|
// Update items per row when container resizes
|
|
useEffect(() => {
|
|
const updateLayout = () => {
|
|
const newItemsPerRow = calculateItemsPerRow();
|
|
setItemsPerRow(newItemsPerRow);
|
|
};
|
|
|
|
// Initial calculation
|
|
updateLayout();
|
|
|
|
// Listen for window resize
|
|
window.addEventListener('resize', updateLayout);
|
|
|
|
// Use ResizeObserver for container size changes
|
|
const resizeObserver = new ResizeObserver(updateLayout);
|
|
if (containerRef.current) {
|
|
resizeObserver.observe(containerRef.current);
|
|
}
|
|
|
|
return () => {
|
|
window.removeEventListener('resize', updateLayout);
|
|
resizeObserver.disconnect();
|
|
};
|
|
}, [calculateItemsPerRow]);
|
|
|
|
// Virtualization with react-virtual library
|
|
const rowVirtualizer = useVirtualizer({
|
|
count: Math.ceil(items.length / itemsPerRow),
|
|
getScrollElement: () => containerRef.current?.closest('[data-scrolling-container]') as Element,
|
|
estimateSize: () => ITEM_HEIGHT,
|
|
overscan: OVERSCAN,
|
|
});
|
|
|
|
|
|
|
|
return (
|
|
<Box
|
|
ref={containerRef}
|
|
style={{
|
|
// Basic container styles
|
|
width: '100%',
|
|
height: '100%',
|
|
}}
|
|
>
|
|
<div
|
|
style={{
|
|
height: `${rowVirtualizer.getTotalSize()}px`,
|
|
width: '100%',
|
|
position: 'relative',
|
|
}}
|
|
>
|
|
{rowVirtualizer.getVirtualItems().map((virtualRow) => {
|
|
const startIndex = virtualRow.index * itemsPerRow;
|
|
const endIndex = Math.min(startIndex + itemsPerRow, items.length);
|
|
const rowItems = items.slice(startIndex, endIndex);
|
|
|
|
return (
|
|
<div
|
|
key={virtualRow.index}
|
|
style={{
|
|
position: 'absolute',
|
|
top: 0,
|
|
left: 0,
|
|
width: '100%',
|
|
height: `${virtualRow.size}px`,
|
|
transform: `translateY(${virtualRow.start}px)`,
|
|
}}
|
|
>
|
|
<div
|
|
style={{
|
|
display: 'flex',
|
|
gap: '1.5rem',
|
|
justifyContent: 'flex-start',
|
|
height: '100%',
|
|
alignItems: 'center',
|
|
}}
|
|
>
|
|
{rowItems.map((item, itemIndex) => {
|
|
const actualIndex = startIndex + itemIndex;
|
|
return (
|
|
<React.Fragment key={item.id}>
|
|
{/* Split marker */}
|
|
{renderSplitMarker && item.splitBefore && actualIndex > 0 && renderSplitMarker(item, actualIndex)}
|
|
{/* Item */}
|
|
{renderItem(item, actualIndex, itemRefs)}
|
|
</React.Fragment>
|
|
);
|
|
})}
|
|
|
|
</div>
|
|
</div>
|
|
);
|
|
})}
|
|
</div>
|
|
</Box>
|
|
);
|
|
};
|
|
|
|
export default DragDropGrid;
|