aboutsummaryrefslogtreecommitdiff
path: root/src/pages/ProfilePage/ProfilePage.tsx
blob: 023f37c8f37f219fd82c78c638ba0d9196b8ebe8 (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
import React, { useState } from 'react';
import { User, Poll } from '../../types';
import ProfileInfo from './ProfileInfo';
import Feed from '../../components/Feed/Feed';
import { get } from '../../requests';

interface PropTypes {
  logOut: () => void;
  id: string;
}

const ProfilePage: React.FC<PropTypes> = ({ logOut, id }) => {
  const [userInfo, setUserInfo] = useState<User>();
  const [polls, setPolls] = useState<Poll[]>([]);

  get(`/users/${id}`).then(response => {
    setUserInfo(response.data);
  });

  get(`/profiles/${id}`).then(response => {
    setPolls(response.data);
  });

  return (
    <>
      <ProfileInfo user={userInfo} logOut={logOut} />
      <Feed polls={polls} />
    </>
  )
};

export default ProfilePage;