File size: 672 Bytes
1e92f2d |
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 |
import type { CurrentUser } from './types';
export function createActions() {
const receiveCurrentUser = ( currentUser: CurrentUser ) => ( {
type: 'RECEIVE_CURRENT_USER' as const,
currentUser,
} );
const receiveCurrentUserFailed = () => ( {
type: 'RECEIVE_CURRENT_USER_FAILED' as const,
} );
return {
receiveCurrentUser,
receiveCurrentUserFailed,
};
}
export type ActionCreators = ReturnType< typeof createActions >;
export type Action =
| ReturnType<
ActionCreators[ 'receiveCurrentUser' ] | ActionCreators[ 'receiveCurrentUserFailed' ]
>
// Type added so we can dispatch actions in tests, but has no runtime cost
| { type: 'TEST_ACTION' };
|