blob: 215a6e0a1e0fc0e93c65b6e70e46b17ea18e3f7f (
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 UserPage = ({ 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>
);
};
UserPage.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 UserPage;
|