aboutsummaryrefslogtreecommitdiff
path: root/src/components/FileUpload/FileUpload.tsx
blob: 961fa9aff224073b3d46cb72eaf0c46cf97025bc (plain)
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
import React, { useRef } from 'react';
import Button from '@material-ui/core/Button';
import CloudUpload from '@material-ui/icons/CloudUpload';

interface PropTypes {
  callback: (file: File) => void;
}


const FileUpload: React.FC<PropTypes> = ({ callback, children }) => {
  const inputRef = useRef<HTMLInputElement>(null);

  const handleChange = (event: React.ChangeEvent<HTMLInputElement>) => {
    const files = event.target?.files;
    if (files?.length) callback(files[0]);
  };

  const handleClick = () => {
    if (inputRef?.current) inputRef.current.click();
  };

  const child = children && React.Children.only(children);

  const defaultButton = (
    <Button
      onClick={handleClick}
      variant="contained"
      color="primary"
      size="large"
      startIcon={<CloudUpload />}
    >
      Upload
    </Button>
  );

  return (
    <>
      <input
        type="file"
        ref={inputRef}
        multiple={false}
        accept=".jpg, .jpeg, .png, .gif"
        style={{ display: 'none' }}
        onChange={handleChange}
      />
      {
        React.isValidElement(child)
          ? React.cloneElement(child, { onClick: handleClick })
          : defaultButton
      }
    </>
  );
};

export default FileUpload;