1
|
import {
|
2
|
Button,
|
3
|
CircularProgress,
|
4
|
Link,
|
5
|
Stack,
|
6
|
Typography,
|
7
|
} from '@mui/material'
|
8
|
import { Fragment, FunctionComponent } from 'react'
|
9
|
import AttachmentIcon from '@mui/icons-material/Attachment'
|
10
|
import DeleteIcon from '@mui/icons-material/Delete'
|
11
|
import SendIcon from '@mui/icons-material/Send'
|
12
|
|
13
|
export interface SingleFileSelectionFormProps {
|
14
|
filename?: string
|
15
|
onFileSelected: (event: any) => void
|
16
|
formik: any
|
17
|
onClearSelectedFile: () => void
|
18
|
loading?: boolean
|
19
|
}
|
20
|
|
21
|
/**
|
22
|
* Reusable form component for selecting a single file
|
23
|
*/
|
24
|
const SingleFileSelectionForm: FunctionComponent<
|
25
|
SingleFileSelectionFormProps
|
26
|
> = ({ filename, onFileSelected, formik, onClearSelectedFile, loading }) => {
|
27
|
return (
|
28
|
<form onSubmit={formik.handleSubmit}>
|
29
|
{!filename ? (
|
30
|
<Fragment>
|
31
|
<Stack
|
32
|
direction="row"
|
33
|
justifyContent="flex-end"
|
34
|
alignItems="center"
|
35
|
>
|
36
|
<Button
|
37
|
variant="contained"
|
38
|
color="primary"
|
39
|
component="label"
|
40
|
// size="small"
|
41
|
disabled={loading}
|
42
|
startIcon={<AttachmentIcon />}
|
43
|
>
|
44
|
Select File
|
45
|
<input
|
46
|
id="file"
|
47
|
name="file"
|
48
|
type="file"
|
49
|
hidden
|
50
|
onChange={onFileSelected}
|
51
|
/>
|
52
|
</Button>
|
53
|
</Stack>
|
54
|
</Fragment>
|
55
|
) : (
|
56
|
<Fragment>
|
57
|
<Stack direction="row" spacing={1}>
|
58
|
<Typography variant="body1">Selected File: </Typography>
|
59
|
<Typography
|
60
|
sx={{
|
61
|
textOverflow: 'ellipsis',
|
62
|
overflow: 'hidden',
|
63
|
}}
|
64
|
component={Link}
|
65
|
>
|
66
|
{filename}
|
67
|
</Typography>
|
68
|
</Stack>
|
69
|
<Stack
|
70
|
direction="row"
|
71
|
spacing={1}
|
72
|
justifyContent="space-between"
|
73
|
sx={{mt: 1}}
|
74
|
>
|
75
|
<Stack
|
76
|
justifyContent="flex-start"
|
77
|
alignSelf="flex-start"
|
78
|
>
|
79
|
{loading ? <CircularProgress size={24} /> : <Fragment />}
|
80
|
</Stack>
|
81
|
<Stack
|
82
|
direction="row"
|
83
|
justifyContent="flex-end"
|
84
|
alignItems="center"
|
85
|
spacing={2}
|
86
|
sx={{ mt: 2 }}
|
87
|
>
|
88
|
<Button
|
89
|
// sx={{ mb: 2, mt: 1 }}
|
90
|
variant="contained"
|
91
|
size="small"
|
92
|
endIcon={<DeleteIcon />}
|
93
|
onClick={onClearSelectedFile}
|
94
|
disabled={loading}
|
95
|
>
|
96
|
Remove Selection
|
97
|
</Button>
|
98
|
<Button
|
99
|
size="small"
|
100
|
type="submit"
|
101
|
variant="contained"
|
102
|
startIcon={<SendIcon />}
|
103
|
disabled={loading}
|
104
|
>
|
105
|
Submit
|
106
|
</Button>
|
107
|
</Stack>
|
108
|
</Stack>
|
109
|
</Fragment>
|
110
|
)}
|
111
|
</form>
|
112
|
)
|
113
|
}
|
114
|
|
115
|
export default SingleFileSelectionForm
|