mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-08-26 06:09:23 +00:00
246 lines
7.2 KiB
TypeScript
246 lines
7.2 KiB
TypeScript
import React from "react";
|
|
import {
|
|
Tooltip,
|
|
ActionIcon,
|
|
Paper
|
|
} from "@mantine/core";
|
|
import UndoIcon from "@mui/icons-material/Undo";
|
|
import RedoIcon from "@mui/icons-material/Redo";
|
|
import ContentCutIcon from "@mui/icons-material/ContentCut";
|
|
import DownloadIcon from "@mui/icons-material/Download";
|
|
import RotateLeftIcon from "@mui/icons-material/RotateLeft";
|
|
import RotateRightIcon from "@mui/icons-material/RotateRight";
|
|
import DeleteIcon from "@mui/icons-material/Delete";
|
|
import CloseIcon from "@mui/icons-material/Close";
|
|
import InsertPageBreakIcon from "@mui/icons-material/InsertPageBreak";
|
|
|
|
interface PageEditorControlsProps {
|
|
// Close/Reset functions
|
|
onClosePdf: () => void;
|
|
|
|
// Undo/Redo
|
|
onUndo: () => void;
|
|
onRedo: () => void;
|
|
canUndo: boolean;
|
|
canRedo: boolean;
|
|
|
|
// Page operations
|
|
onRotate: (direction: 'left' | 'right') => void;
|
|
onDelete: () => void;
|
|
onSplit: () => void;
|
|
onSplitAll: () => void;
|
|
onPageBreak: () => void;
|
|
onPageBreakAll: () => void;
|
|
|
|
// Export functions
|
|
onExportSelected: () => void;
|
|
onExportAll: () => void;
|
|
exportLoading: boolean;
|
|
|
|
// Selection state
|
|
selectionMode: boolean;
|
|
selectedPages: number[];
|
|
|
|
// Split state (for tooltip logic)
|
|
splitPositions?: Set<number>;
|
|
totalPages?: number;
|
|
}
|
|
|
|
const PageEditorControls = ({
|
|
onClosePdf,
|
|
onUndo,
|
|
onRedo,
|
|
canUndo,
|
|
canRedo,
|
|
onRotate,
|
|
onDelete,
|
|
onSplit,
|
|
onSplitAll,
|
|
onPageBreak,
|
|
onPageBreakAll,
|
|
onExportSelected,
|
|
onExportAll,
|
|
exportLoading,
|
|
selectionMode,
|
|
selectedPages,
|
|
splitPositions,
|
|
totalPages
|
|
}: PageEditorControlsProps) => {
|
|
// Calculate split all tooltip text
|
|
const getSplitAllTooltip = () => {
|
|
if (selectionMode) {
|
|
return "Split Selected";
|
|
}
|
|
|
|
if (!splitPositions || !totalPages) {
|
|
return "Split All";
|
|
}
|
|
|
|
// Check if all possible splits are active
|
|
const allPossibleSplitsCount = totalPages - 1;
|
|
const hasAllSplits = splitPositions.size === allPossibleSplitsCount &&
|
|
Array.from({length: allPossibleSplitsCount}, (_, i) => i).every(pos => splitPositions.has(pos));
|
|
|
|
return hasAllSplits ? "Remove All Splits" : "Split All";
|
|
};
|
|
|
|
// Calculate page break tooltip text
|
|
const getPageBreakTooltip = () => {
|
|
if (selectionMode) {
|
|
return selectedPages.length > 0
|
|
? `Insert ${selectedPages.length} Page Break${selectedPages.length > 1 ? 's' : ''}`
|
|
: "Insert Page Breaks";
|
|
}
|
|
return "Insert Page Breaks After All Pages";
|
|
};
|
|
|
|
return (
|
|
<div
|
|
style={{
|
|
position: 'absolute',
|
|
left: '50%',
|
|
bottom: '20px',
|
|
transform: 'translateX(-50%)',
|
|
zIndex: 50,
|
|
display: 'flex',
|
|
justifyContent: 'center',
|
|
pointerEvents: 'none',
|
|
background: 'transparent',
|
|
}}
|
|
>
|
|
<Paper
|
|
radius="xl"
|
|
shadow="lg"
|
|
p={16}
|
|
style={{
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
gap: 12,
|
|
borderRadius: 32,
|
|
boxShadow: '0 8px 32px rgba(0,0,0,0.12)',
|
|
pointerEvents: 'auto',
|
|
minWidth: 400,
|
|
justifyContent: 'center'
|
|
}}
|
|
>
|
|
{/* Close PDF */}
|
|
<Tooltip label="Close PDF">
|
|
<ActionIcon
|
|
onClick={onClosePdf}
|
|
color="red"
|
|
variant="light"
|
|
size="lg"
|
|
>
|
|
<CloseIcon />
|
|
</ActionIcon>
|
|
</Tooltip>
|
|
|
|
<div style={{ width: 1, height: 28, backgroundColor: 'var(--mantine-color-gray-3)', margin: '0 8px' }} />
|
|
|
|
{/* Undo/Redo */}
|
|
<Tooltip label="Undo">
|
|
<ActionIcon onClick={onUndo} disabled={!canUndo} size="lg">
|
|
<UndoIcon />
|
|
</ActionIcon>
|
|
</Tooltip>
|
|
<Tooltip label="Redo">
|
|
<ActionIcon onClick={onRedo} disabled={!canRedo} size="lg">
|
|
<RedoIcon />
|
|
</ActionIcon>
|
|
</Tooltip>
|
|
|
|
<div style={{ width: 1, height: 28, backgroundColor: 'var(--mantine-color-gray-3)', margin: '0 8px' }} />
|
|
|
|
{/* Page Operations */}
|
|
<Tooltip label={selectionMode ? "Rotate Selected Left" : "Rotate All Left"}>
|
|
<ActionIcon
|
|
onClick={() => onRotate('left')}
|
|
disabled={selectionMode && selectedPages.length === 0}
|
|
variant={selectionMode && selectedPages.length > 0 ? "light" : "default"}
|
|
color={selectionMode && selectedPages.length > 0 ? "blue" : undefined}
|
|
size="lg"
|
|
>
|
|
<RotateLeftIcon />
|
|
</ActionIcon>
|
|
</Tooltip>
|
|
<Tooltip label={selectionMode ? "Rotate Selected Right" : "Rotate All Right"}>
|
|
<ActionIcon
|
|
onClick={() => onRotate('right')}
|
|
disabled={selectionMode && selectedPages.length === 0}
|
|
variant={selectionMode && selectedPages.length > 0 ? "light" : "default"}
|
|
color={selectionMode && selectedPages.length > 0 ? "blue" : undefined}
|
|
size="lg"
|
|
>
|
|
<RotateRightIcon />
|
|
</ActionIcon>
|
|
</Tooltip>
|
|
{selectionMode && (
|
|
<Tooltip label="Delete Selected">
|
|
<ActionIcon
|
|
onClick={onDelete}
|
|
disabled={selectedPages.length === 0}
|
|
color="red"
|
|
variant={selectedPages.length > 0 ? "light" : "default"}
|
|
size="lg"
|
|
>
|
|
<DeleteIcon />
|
|
</ActionIcon>
|
|
</Tooltip>
|
|
)}
|
|
<Tooltip label={getSplitAllTooltip()}>
|
|
<ActionIcon
|
|
onClick={selectionMode ? onSplit : onSplitAll}
|
|
disabled={selectionMode && selectedPages.length === 0}
|
|
variant={selectionMode && selectedPages.length > 0 ? "light" : "default"}
|
|
color={selectionMode && selectedPages.length > 0 ? "blue" : undefined}
|
|
size="lg"
|
|
>
|
|
<ContentCutIcon />
|
|
</ActionIcon>
|
|
</Tooltip>
|
|
<Tooltip label={getPageBreakTooltip()}>
|
|
<ActionIcon
|
|
onClick={selectionMode ? onPageBreak : onPageBreakAll}
|
|
disabled={selectionMode && selectedPages.length === 0}
|
|
variant={selectionMode && selectedPages.length > 0 ? "light" : "default"}
|
|
color={selectionMode && selectedPages.length > 0 ? "orange" : undefined}
|
|
size="lg"
|
|
>
|
|
<InsertPageBreakIcon />
|
|
</ActionIcon>
|
|
</Tooltip>
|
|
|
|
<div style={{ width: 1, height: 28, backgroundColor: 'var(--mantine-color-gray-3)', margin: '0 8px' }} />
|
|
|
|
{/* Export Controls */}
|
|
{selectionMode && (
|
|
<Tooltip label="Export Selected">
|
|
<ActionIcon
|
|
onClick={onExportSelected}
|
|
disabled={exportLoading || selectedPages.length === 0}
|
|
color="blue"
|
|
variant={selectedPages.length > 0 ? "light" : "default"}
|
|
size="lg"
|
|
>
|
|
<DownloadIcon />
|
|
</ActionIcon>
|
|
</Tooltip>
|
|
)}
|
|
<Tooltip label="Export All">
|
|
<ActionIcon
|
|
onClick={onExportAll}
|
|
disabled={exportLoading}
|
|
color="green"
|
|
variant="light"
|
|
size="lg"
|
|
>
|
|
<DownloadIcon />
|
|
</ActionIcon>
|
|
</Tooltip>
|
|
</Paper>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default PageEditorControls;
|