mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-08-23 12:49:24 +00:00
42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
![]() |
import React from 'react';
|
||
|
import { Paper, Group, TextInput, Button, Text } from '@mantine/core';
|
||
|
|
||
|
interface BulkSelectionPanelProps {
|
||
|
csvInput: string;
|
||
|
setCsvInput: (value: string) => void;
|
||
|
selectedPages: string[];
|
||
|
onUpdatePagesFromCSV: () => void;
|
||
|
}
|
||
|
|
||
|
const BulkSelectionPanel = ({
|
||
|
csvInput,
|
||
|
setCsvInput,
|
||
|
selectedPages,
|
||
|
onUpdatePagesFromCSV,
|
||
|
}: BulkSelectionPanelProps) => {
|
||
|
return (
|
||
|
<Paper p="md" mb="md" withBorder>
|
||
|
<Group>
|
||
|
<TextInput
|
||
|
value={csvInput}
|
||
|
onChange={(e) => setCsvInput(e.target.value)}
|
||
|
placeholder="1,3,5-10"
|
||
|
label="Page Selection"
|
||
|
onBlur={onUpdatePagesFromCSV}
|
||
|
onKeyDown={(e) => e.key === 'Enter' && onUpdatePagesFromCSV()}
|
||
|
style={{ flex: 1 }}
|
||
|
/>
|
||
|
<Button onClick={onUpdatePagesFromCSV} mt="xl">
|
||
|
Apply
|
||
|
</Button>
|
||
|
</Group>
|
||
|
{selectedPages.length > 0 && (
|
||
|
<Text size="sm" c="dimmed" mt="sm">
|
||
|
Selected: {selectedPages.length} pages
|
||
|
</Text>
|
||
|
)}
|
||
|
</Paper>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default BulkSelectionPanel;
|