From 14c42281faafb4866190a025f17abbe471f99fe9 Mon Sep 17 00:00:00 2001 From: ilyayudovin Date: Fri, 18 Sep 2020 16:58:06 +0300 Subject: add textField for description input --- src/containers/PollCreation/PollCreation.tsx | 30 ++++++++++++++++++++++------ 1 file changed, 24 insertions(+), 6 deletions(-) diff --git a/src/containers/PollCreation/PollCreation.tsx b/src/containers/PollCreation/PollCreation.tsx index 7f29119..05a1966 100644 --- a/src/containers/PollCreation/PollCreation.tsx +++ b/src/containers/PollCreation/PollCreation.tsx @@ -1,7 +1,7 @@ -import React, {useRef} from 'react'; +import React, { useState } from 'react'; import Bluebird from 'bluebird'; import { makeStyles } from '@material-ui/core/styles'; -import { Card, Container, LinearProgress, Divider } from '@material-ui/core'; +import { Card, Container, LinearProgress, Divider, TextField } from '@material-ui/core'; import SendIcon from '@material-ui/icons/Send'; import { useSnackbar } from 'notistack'; @@ -19,13 +19,20 @@ const useStyles = makeStyles(theme => ({ images: { height: theme.spacing(50), display: 'flex' + }, + textarea: { + width: '100%', + height: 100 + }, + descriptionText: { + padding: 10 } })); const PollCreation: React.FC = () => { + const [description, setDescription] = useState(''); const classes = useStyles(); - const ref = useRef(null); const { enqueueSnackbar } = useSnackbar(); const { user } = useAuth(); const { mutate: updateFeed } = useFeed(); @@ -43,15 +50,18 @@ const PollCreation: React.FC = () => { progress: rightProgress } = useS3Preupload(); + const handleDescriptionChange = (e: any) => { + setDescription(e.target.value); + }; + const handleSubmit = async () => { try { const [leftUrl, rightUrl] = await Bluebird.all([resolveLeft(), resolveRight()]); - const contents = { left: { url: leftUrl }, right: { url: rightUrl } }; - const description = ref?.current?.value; + post('/polls/', { contents, description }).then(() => { updateFeed(); updateProfile(); @@ -73,7 +83,15 @@ const PollCreation: React.FC = () => { {user && } -