aboutsummaryrefslogtreecommitdiff
path: root/src/containers/FeedPage/FeedPage.tsx
blob: 7445c254ab260854e179a4a0578a74f1c05dadd3 (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
import React from 'react';
import { Poll } from 'which-types';
import { Container } from '@material-ui/core/';

import PollsList from '../../components/PollsList/PollsList';
import PollSubmission from './PollSubmission';
import { useAuth } from '../../hooks/useAuth';
import { useFeed } from '../../hooks/APIClient';

const FeedPage: React.FC = () => {
  const { data: polls, mutate } = useFeed();
  const { isAuthenticated } = useAuth();

  const addPoll = (poll: Poll): void => {
    mutate([poll, ...polls], true);
  };

  return (
    <Container maxWidth="sm" disableGutters>
      {isAuthenticated && <PollSubmission addPoll={addPoll} />}
      <PollsList polls={polls} mutate={mutate} />
    </Container>
  );
};

export default FeedPage;