diff --git a/striker-ui/components/Files/Files.tsx b/striker-ui/components/Files/Files.tsx index 697ef331..e37f9c25 100644 --- a/striker-ui/components/Files/Files.tsx +++ b/striker-ui/components/Files/Files.tsx @@ -1,6 +1,7 @@ -import { Box, IconButton } from '@material-ui/core'; +import { Box, IconButton, Input, InputLabel } from '@material-ui/core'; import AddIcon from '@material-ui/icons/Add'; import { makeStyles } from '@material-ui/styles'; +import { useRef } from 'react'; import ICON_BUTTON_STYLE from '../../lib/consts/ICON_BUTTON_STYLE'; import { Panel } from '../Panels'; @@ -9,10 +10,19 @@ import { HeaderText } from '../Text'; const useStyles = makeStyles(() => ({ addFileButton: ICON_BUTTON_STYLE, + addFileInput: { + display: 'none', + }, })); const Files = (): JSX.Element => { const classes = useStyles(); + const addFileInputRef = useRef(); + + // Let the icon button trigger the invisible input element. + const onAddFileButtonClick = () => { + addFileInputRef.current?.click(); + }; return ( @@ -21,9 +31,22 @@ const Files = (): JSX.Element => { - - - +
+ + + + + + +