blob: 262d8bd5a5a3f8bc09828bce7e9ac15a324b2035 (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
import { Component, PropTypes } from 'react'
import Auth0Lock from 'auth0-lock'
import { graphql, compose } from 'react-apollo'
import { CURRENT_USER_QUERY } from '../queries/index';
class LoginAuth0 extends Component {
constructor (props) {
super(props)
if(typeof window === 'undefined') return;
const redirectUrl = `http://localhost:3000/signup`;
console.log(redirectUrl);
this._lock = new Auth0Lock('l851ev2q8X48wf56eGLjIWFbMwwbvWPE', 'wesbos.auth0.com', {
auth: {
redirect: false,
}
});
}
logout = () => {
window.localStorage.removeItem('auth0IdToken');
this.props.currentUserQuery.refetch();
}
createUser = () => {
const variables = {
idToken: window.localStorage.getItem('auth0IdToken'),
emailAddress: 'wesbos@gmail.com',
name: 'Hardcoded Wes'
};
// TODO - make a createUser function
this.props
.createUser({ variables })
.then(response => {
// this.props.currentUserQuery.refetch();
this.props.history.replace("/");
})
.catch(e => {
console.error(e);
this.props.history.replace("/");
});
};
componentDidMount() {
console.log('MOUNT');
this._lock.on('authenticated', (authResult) => {
window.localStorage.setItem('auth0IdToken', authResult.idToken)
this.props.currentUserQuery.refetch();
})
}
_showLogin = () => {
this._lock.show()
}
render() {
const { user } = this.props.currentUserQuery;
if ( user ) {
return <button onClick={this.logout}>Log out 👋</button>
}
return (
<div>
<button onClick={this._showLogin}>Log in with Auth0 </button>
</div>
)
}
}
const userEnhancer = graphql(CURRENT_USER_QUERY, { name: 'currentUserQuery' });
export default compose(userEnhancer)(LoginAuth0)
|