From eb2e929e2188ccfd9f575a5aa425024bf1fec67f Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sun, 15 Nov 2020 02:32:34 +0300 Subject: feat: add Event Form --- src/containers/BsuFantomSection/EventForm.tsx | 83 +++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 src/containers/BsuFantomSection/EventForm.tsx (limited to 'src/containers/BsuFantomSection/EventForm.tsx') diff --git a/src/containers/BsuFantomSection/EventForm.tsx b/src/containers/BsuFantomSection/EventForm.tsx new file mode 100644 index 0000000..64ea46b --- /dev/null +++ b/src/containers/BsuFantomSection/EventForm.tsx @@ -0,0 +1,83 @@ +import React, { useState } from 'react'; +import { Grid, TextField, Button } from '@material-ui/core'; +import { post } from '../../requests'; +import { Event } from '../../types'; + +interface PropTypes { + mutate: () => void; +} + +const EventForm: React.FC = ({ mutate }) => { + const [name, setName] = useState(''); + const [date, setDate] = useState(''); + const [attendanceId, setAttendanceId] = useState(''); + const [conferenceId, setConferenceId] = useState(''); + + const createHandler = (setter: any) => (event: React.ChangeEvent) => { + setter(event.target.value); + }; + + const handleSubmit = () => { + if (date && conferenceId) { + const event: Event["data"] = { + name, + date, + attendanceId, + conferenceId, + participants: [] + } + return post('/events', event).then(() => mutate()); + } + } + + return ( + + + + + + + + + + + + + + + + + + ); +}; + +export default EventForm; -- cgit v1.2.3