diff options
author | Eugene Sokolov <eug-vs@keemail.me> | 2020-08-13 21:44:12 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-13 21:44:12 +0300 |
commit | 6ace75beae6ab6a466c4d0a9a60ca30aaad0a87c (patch) | |
tree | 7c1611c8dd7d45a72bb2316f78ea3980b27e09a5 /src/components | |
parent | d1e0dcd8538a61184eca50fbf7769c6d2943ff6b (diff) | |
parent | 474dd922ac0512f1e0f64c145e9f76d2b10a1ba5 (diff) | |
download | which-ui-6ace75beae6ab6a466c4d0a9a60ca30aaad0a87c.tar.gz |
Merge pull request #79 from which-ecosystem/improved-poll-creation
PollCreation redesign
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/AttachLink/AttachLink.tsx | 42 | ||||
-rw-r--r-- | src/components/AttachLink/Modal.tsx (renamed from src/components/UploadImage/UploadImage.tsx) | 8 | ||||
-rw-r--r-- | src/components/FileUpload/FileUpload.tsx | 47 |
3 files changed, 93 insertions, 4 deletions
diff --git a/src/components/AttachLink/AttachLink.tsx b/src/components/AttachLink/AttachLink.tsx new file mode 100644 index 0000000..e73f5c1 --- /dev/null +++ b/src/components/AttachLink/AttachLink.tsx @@ -0,0 +1,42 @@ +import React, { useState } from 'react'; +import Button from '@material-ui/core/Button'; +import LinkIcon from '@material-ui/icons/Link'; +import Modal from './Modal'; + +interface PropTypes { + callback: (url: string) => void; +} + +const AttachLink: React.FC<PropTypes> = ({ callback, children }) => { + const [isOpen, setIsOpen] = useState<boolean>(false); + + const handleOpen = (): void => { + setIsOpen(true); + }; + + const defaultButton = ( + <Button + onClick={handleOpen} + variant="outlined" + color="primary" + startIcon={<LinkIcon />} + > + Attach a link + </Button> + ); + + const child = children && React.Children.toArray(children)[0]; + + return ( + <> + <Modal callback={callback} isOpen={isOpen} setIsOpen={setIsOpen} /> + { + React.isValidElement(child) + ? React.cloneElement(child, { onClick: handleOpen }) + : defaultButton + } + </> + ); +}; + +export default AttachLink; diff --git a/src/components/UploadImage/UploadImage.tsx b/src/components/AttachLink/Modal.tsx index 238d5cd..fa58fc4 100644 --- a/src/components/UploadImage/UploadImage.tsx +++ b/src/components/AttachLink/Modal.tsx @@ -15,7 +15,7 @@ interface PropTypes { callback: (url: string) => void; } -const UploadImage: React.FC<PropTypes> = ({ setIsOpen, isOpen, callback }) => { +const Modal: React.FC<PropTypes> = ({ setIsOpen, isOpen, callback }) => { const [url, setUrl] = useState<string>(''); const handleClose = () => { @@ -44,10 +44,10 @@ const UploadImage: React.FC<PropTypes> = ({ setIsOpen, isOpen, callback }) => { return ( <div> <Dialog open={isOpen} onClose={handleClose}> - <DialogTitle>Upload an Image</DialogTitle> + <DialogTitle>Upload via link</DialogTitle> <DialogContent> <DialogContentText> - Unfortunetly we do not support uploading images yet. Please provide a valid URL to your image: + Provide a valid URL to your image: </DialogContentText> <TextField autoFocus @@ -73,4 +73,4 @@ const UploadImage: React.FC<PropTypes> = ({ setIsOpen, isOpen, callback }) => { ); }; -export default UploadImage; +export default Modal; diff --git a/src/components/FileUpload/FileUpload.tsx b/src/components/FileUpload/FileUpload.tsx new file mode 100644 index 0000000..67d280d --- /dev/null +++ b/src/components/FileUpload/FileUpload.tsx @@ -0,0 +1,47 @@ +import React, { useEffect } from 'react'; +import { useFilePicker, utils } from 'react-sage'; +import Button from '@material-ui/core/Button'; +import CloudUpload from '@material-ui/icons/CloudUpload'; + +interface PropTypes { + callback: (fileUrl: string, file: File) => void; +} + + +const FileUpload: React.FC<PropTypes> = ({ callback, children }) => { + const { files, onClick, HiddenFileInput } = useFilePicker(); + + useEffect(() => { + if (files?.length) { + const file = files[0]; + utils.loadFile(file).then(url => callback(url, file)); + } + }, [files, callback]); + + const child = children && React.Children.toArray(children)[0]; + + const defaultButton = ( + <Button + onClick={onClick} + variant="contained" + color="primary" + size="large" + startIcon={<CloudUpload />} + > + Upload + </Button> + ); + + return ( + <> + <HiddenFileInput accept=".jpg, .jpeg, .png, .gif" multiple={false} /> + { + React.isValidElement(child) + ? React.cloneElement(child, { onClick }) + : defaultButton + } + </> + ); +}; + +export default FileUpload; |