aboutsummaryrefslogtreecommitdiff
path: root/src/pages/FeedPage/FeedPage.tsx
blob: 8149c8c1dd9eb0ba3eb717b0c6a75cb68101bc2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import React, { useState, useEffect } from 'react';
import { Poll } from 'which-types';
import { makeStyles } from '@material-ui/core/styles';

import Feed from '../../components/Feed/Feed';
import { get } from '../../requests';
import PollSubmission from './PollSubmission';
import { useAuth } from '../../hooks/useAuth';


const useStyles = makeStyles(theme => ({
  root: {
    width: theme.spacing(75),
    margin: '0 auto'
  }
}));

const FeedPage: React.FC = () => {
  const [polls, setPolls] = useState<Poll[]>([]);
  const { isAuthenticated } = useAuth();
  const classes = useStyles();

  useEffect(() => {
    get('/feed').then(response => {
      setPolls(response.data);
    });
  }, []);

  const addPoll = (poll: Poll): void => {
    polls.unshift(poll);
    setPolls([]);
    setPolls(polls);
  };

  return (
    <div className={classes.root}>
      {isAuthenticated() && <PollSubmission addPoll={addPoll} />}
      <Feed polls={polls} />
    </div>
  );
};

export default FeedPage;