source: src/components/upload/errors-rejection-files.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 1.4 KB
Line 
1import { FileRejection } from 'react-dropzone';
2// @mui
3import { alpha } from '@mui/material/styles';
4import Box from '@mui/material/Box';
5import Paper from '@mui/material/Paper';
6import Typography from '@mui/material/Typography';
7// utils
8import { fData } from 'src/utils/format-number';
9//
10import { fileData } from '../file-thumbnail';
11
12// ----------------------------------------------------------------------
13
14type Props = {
15 fileRejections: FileRejection[];
16};
17
18export default function RejectionFiles({ fileRejections }: Props) {
19 if (!fileRejections.length) {
20 return null;
21 }
22
23 return (
24 <Paper
25 variant="outlined"
26 sx={{
27 py: 1,
28 px: 2,
29 mt: 3,
30 textAlign: 'left',
31 borderStyle: 'dashed',
32 borderColor: 'error.main',
33 bgcolor: (theme) => alpha(theme.palette.error.main, 0.08),
34 }}
35 >
36 {fileRejections.map(({ file, errors }) => {
37 const { path, size } = fileData(file);
38
39 return (
40 <Box key={path} sx={{ my: 1 }}>
41 <Typography variant="subtitle2" noWrap>
42 {path} - {size ? fData(size) : ''}
43 </Typography>
44
45 {errors.map((error) => (
46 <Box key={error.code} component="span" sx={{ typography: 'caption' }}>
47 - {error.message}
48 </Box>
49 ))}
50 </Box>
51 );
52 })}
53 </Paper>
54 );
55}
Note: See TracBrowser for help on using the repository browser.