import React, { useState } from 'react'; import { makeStyles } from '@material-ui/core/styles'; import Collapse from '@material-ui/core/Collapse'; import { Button, Card, ClickAwayListener, Divider, Container } from '@material-ui/core'; import { Poll } from 'which-types'; import { useSnackbar } from 'notistack'; import axios from 'axios'; import PollCreationImage from './PollCreationImage'; import UserStrip from '../../components/UserStrip/UserStrip'; import { get, post } from '../../requests'; import { useAuth } from '../../hooks/useAuth'; interface PropTypes{ addPoll: (poll: Poll) => void; } const useStyles = makeStyles(theme => ({ root: { marginBottom: theme.spacing(4) }, images: { height: theme.spacing(50), display: 'flex' } })); const PollCreation: React.FC = ({ addPoll }) => { const classes = useStyles(); const [expanded, setExpanded] = useState(true); const [left, setLeft] = useState(); const [right, setRight] = useState(); const { enqueueSnackbar } = useSnackbar(); const { user } = useAuth(); const readyToSubmit = left && right; const handleClickAway = () => { setExpanded(false); }; const uploadImage = (file?: File) => { const headers = { 'Content-Type': 'image/png' }; return get('/files') .then(response => response.data) .then(uploadUrl => axios.put(uploadUrl, file, { headers })) .then(response => { const { config: { url } } = response; return url && url.slice(0, url.indexOf('.png') + 4); }); }; const handleClick = async () => { if (expanded && readyToSubmit) { const [leftUrl, rightUrl] = await Promise.all([uploadImage(left), uploadImage(right)]); const contents = { left: { url: leftUrl }, right: { url: rightUrl } }; post('/polls/', { contents }).then(response => { addPoll(response.data); enqueueSnackbar('Your poll has been successfully created!', { variant: 'success' }); }); } setExpanded(!expanded); }; return ( {user && }
); }; export default PollCreation;