aboutsummaryrefslogtreecommitdiff
path: root/src/client/react/components/page/User.js
blob: 10d608d6b6c6bf5de2db6dd8e33694627e13be3c (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
45
46
47
import React from 'react';
import PropTypes from 'prop-types';
import { Redirect } from 'react-router-dom';
import queryString from 'query-string';
import moment from 'moment';
import purifyWeek from '../../lib/purifyWeek';
import Search from '../container/Search';
import View from '../container/View';
import users from '../../users';
import WeekSelector from '../container/WeekSelector';

const App = ({ match, location }) => {
  const user = `${match.params.type}/${match.params.value}`;
  const weekStr = queryString.parse(location.search).week;
  const week = purifyWeek(weekStr ? parseInt(weekStr, 10) : moment().week());

  if (!users.allIds.includes(user)) {
    // Invalid user, redirect to index.
    return <Redirect to="/" />;
  }

  return (
    <div className="page-user">
      <div className="menu">
        <div className="menu-container">
          <Search urlUser={user} />
          <WeekSelector urlWeek={week} />
        </div>
      </div>
      <View user={user} week={week} />
    </div>
  );
};

App.propTypes = {
  match: PropTypes.shape({
    params: PropTypes.shape({
      type: PropTypes.string.isRequired,
      value: PropTypes.string.isRequired,
    }).isRequired,
  }).isRequired,
  location: PropTypes.shape({
    search: PropTypes.string.isRequired,
  }).isRequired,
};

export default App;