Created
June 8, 2019 18:09
-
-
Save GaZaTu/5a43b593e110efef7a2152bb81a115ad to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as React from 'react'; | |
import { createContext } from '../lib/context-utils'; | |
interface User { | |
[key: string]: any // idk yet | |
} | |
interface Auth { | |
token: string | |
user: User | |
} | |
export const AuthContext = createContext('authContext', { | |
auth: undefined as Auth | undefined, | |
login: undefined as ((auth: Auth) => void) | undefined, | |
logout: undefined as (() => void) | undefined | |
}) | |
interface Props { | |
children?: React.ReactNode | |
} | |
interface State { | |
auth: Auth | undefined | |
} | |
class AuthProvider extends React.PureComponent<Props, State> { | |
readonly state: State = { | |
auth: undefined, | |
} | |
login = (auth: Auth) => { | |
this.setState({ auth }) | |
} | |
logout = () => { | |
this.setState({ auth: undefined }) | |
} | |
render() { | |
return ( | |
<AuthContext.Provider value={this.authContext}> | |
{this.props.children} | |
</AuthContext.Provider> | |
) | |
} | |
get authContext() { | |
return { | |
auth: this.state.auth, | |
login: this.login, | |
logout: this.logout, | |
} | |
} | |
} | |
export default AuthProvider |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment