1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
import React, { useState } from 'react';
import { makeStyles } from '@material-ui/core/styles';
import {
CardActionArea,
Typography,
CircularProgress
} from '@material-ui/core';
import { Check, CancelOutlined } from '@material-ui/icons';
import AttachLink from '../../components/AttachLink/AttachLink';
import FileUpload from '../../components/FileUpload/FileUpload';
import BackgroundImage from '../../components/Image/BackgroundImage';
import getLocalFileUrl from '../../utils/getLocalFileUrl';
interface PropTypes {
callback: (file?: File | string) => void;
progress?: number;
}
const useStyles = makeStyles({
root: {
display: 'flex',
justifyContent: 'center',
flexDirection: 'column',
alignItems: 'center',
width: '50%'
},
clearIcon: {
opacity: '.5',
fontSize: 50
},
overlay: {
backgroundColor: 'rgba(0, 0, 0, 0.45)',
color: 'white',
position: 'absolute',
top: 0,
left: 0,
height: '100%',
width: '100%',
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
transitionDuration: '0.5s'
},
invisible: {
backgroundColor: 'rgba(0, 0, 0, 0)'
},
icon: {
color: 'white'
}
});
const ImageInput: React.FC<PropTypes> = ({ callback, progress }) => {
const classes = useStyles();
const [url, setUrl] = useState<string>();
const handleClear = (): void => {
setUrl(undefined);
callback(undefined);
};
const childrenCallback = (value: File | string) => {
if (value instanceof File) {
getLocalFileUrl(value).then(localUrl => setUrl(localUrl));
} else setUrl(value);
callback(value);
};
const Upload = (
<div className={classes.root}>
<FileUpload callback={childrenCallback} />
<Typography variant="h6"> or </Typography>
<AttachLink callback={childrenCallback} />
</div>
);
const Media = (
<CardActionArea onClick={handleClear} className={classes.root} disabled={Boolean(progress)}>
<BackgroundImage src={url} />
<div className={`${classes.overlay} ${progress === 100 && classes.invisible}`}>
{
progress
? progress < 100
? <CircularProgress variant="static" value={progress} className={classes.icon} />
: <Check className={classes.icon} fontSize="large" />
: <CancelOutlined className={classes.icon} fontSize="large" />
}
</div>
</CardActionArea>
);
return url ? Media : Upload;
};
export default ImageInput;
|