mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-07 00:29:19 +05:30
35 lines
753 B
TypeScript
35 lines
753 B
TypeScript
|
import React from 'react';
|
||
|
import { User } from 'app/components/user';
|
||
|
|
||
|
import { State as AuthState } from './reducer';
|
||
|
|
||
|
export interface AuthContext {
|
||
|
auth: AuthState;
|
||
|
user: User;
|
||
|
requestRedraw: () => Promise<void>;
|
||
|
clearErrors: () => void;
|
||
|
resolve: (payload: { [key: string]: any } | undefined) => void;
|
||
|
reject: (payload: { [key: string]: any } | undefined) => void;
|
||
|
}
|
||
|
|
||
|
const Context = React.createContext<AuthContext>({
|
||
|
auth: {
|
||
|
error: null,
|
||
|
login: '',
|
||
|
scopes: [],
|
||
|
} as any,
|
||
|
user: {
|
||
|
id: null,
|
||
|
isGuest: true,
|
||
|
} as any,
|
||
|
async requestRedraw() {},
|
||
|
clearErrors() {},
|
||
|
resolve() {},
|
||
|
reject() {},
|
||
|
});
|
||
|
Context.displayName = 'AuthContext';
|
||
|
|
||
|
export const { Provider, Consumer } = Context;
|
||
|
|
||
|
export default Context;
|