mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-08-27 06:39:24 +00:00
67 lines
2.4 KiB
TypeScript
67 lines
2.4 KiB
TypeScript
![]() |
import React from 'react';
|
||
|
import { Stack, Card, Box, Text, Badge, Group, Divider, ScrollArea } from '@mantine/core';
|
||
|
import { useTranslation } from 'react-i18next';
|
||
|
import { detectFileExtension, getFileSize } from '../../utils/fileUtils';
|
||
|
import { FileWithUrl } from '../../types/file';
|
||
|
|
||
|
interface FileInfoCardProps {
|
||
|
currentFile: FileWithUrl | null;
|
||
|
modalHeight: string;
|
||
|
}
|
||
|
|
||
|
const FileInfoCard: React.FC<FileInfoCardProps> = ({
|
||
|
currentFile,
|
||
|
modalHeight
|
||
|
}) => {
|
||
|
const { t } = useTranslation();
|
||
|
|
||
|
return (
|
||
|
<Card withBorder p={0} h={`calc(${modalHeight} * 0.32 - 1rem)`} style={{ flex: 1, overflow: 'hidden' }}>
|
||
|
<Box bg="blue.6" p="sm" style={{ borderTopLeftRadius: 'var(--mantine-radius-md)', borderTopRightRadius: 'var(--mantine-radius-md)' }}>
|
||
|
<Text size="sm" fw={500} ta="center" c="white">
|
||
|
{t('fileManager.details', 'File Details')}
|
||
|
</Text>
|
||
|
</Box>
|
||
|
<ScrollArea style={{ flex: 1 }} p="md">
|
||
|
<Stack gap="sm">
|
||
|
<Group justify="space-between" py="xs">
|
||
|
<Text size="sm" c="dimmed">{t('fileManager.fileName', 'Name')}</Text>
|
||
|
<Text size="sm" fw={500} style={{ maxWidth: '60%', textAlign: 'right' }} truncate>
|
||
|
{currentFile ? currentFile.name : ''}
|
||
|
</Text>
|
||
|
</Group>
|
||
|
<Divider />
|
||
|
|
||
|
<Group justify="space-between" py="xs">
|
||
|
<Text size="sm" c="dimmed">{t('fileManager.fileFormat', 'Format')}</Text>
|
||
|
{currentFile ? (
|
||
|
<Badge size="sm" variant="light">
|
||
|
{detectFileExtension(currentFile.name).toUpperCase()}
|
||
|
</Badge>
|
||
|
) : (
|
||
|
<Text size="sm" fw={500}></Text>
|
||
|
)}
|
||
|
</Group>
|
||
|
<Divider />
|
||
|
|
||
|
<Group justify="space-between" py="xs">
|
||
|
<Text size="sm" c="dimmed">{t('fileManager.fileSize', 'Size')}</Text>
|
||
|
<Text size="sm" fw={500}>
|
||
|
{currentFile ? getFileSize(currentFile) : ''}
|
||
|
</Text>
|
||
|
</Group>
|
||
|
<Divider />
|
||
|
|
||
|
<Group justify="space-between" py="xs">
|
||
|
<Text size="sm" c="dimmed">{t('fileManager.fileVersion', 'Version')}</Text>
|
||
|
<Text size="sm" fw={500}>
|
||
|
{currentFile ? '1.0' : ''}
|
||
|
</Text>
|
||
|
</Group>
|
||
|
</Stack>
|
||
|
</ScrollArea>
|
||
|
</Card>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default FileInfoCard;
|