blob: 5e1a6208910f59e0a069c0c4bf26c55ca0ddaf72 (
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
|
import { Component } from 'react';
import { graphql, compose } from 'react-apollo';
import { CURRENT_USER_QUERY } from '../queries';
import Cart from './Cart';
import Login from './LoginAuth0';
import Search from './Search';
import NProgress from 'nprogress';
import Router from 'next/router';
import Signout from './Signout';
Router.onRouteChangeStart = url => {
console.log(`Loading: ${url}`);
NProgress.start();
};
Router.onRouteChangeComplete = () => NProgress.done();
Router.onRouteChangeError = () => NProgress.done();
class Header extends Component {
componentDidMount() {
// This fetches the new data, but doesn't populate the user via props
// this.props.currentUserQuery.refetch();
// This fetches the new data, and populates the user via props
// setTimeout(this.props.currentUserQuery.refetch, 1);
}
render() {
return (
<div>
{this.props.currentUser.me ? this.props.currentUser.me.email : 'Not Signed in'}
<Signout />
{/* <Cart /> */}
{/* <Search /> */}
</div>
);
}
}
const userEnhancer = graphql(CURRENT_USER_QUERY, { name: 'currentUser' });
export default compose(userEnhancer)(Header);
// export default Header;
|