theluyuan 38ba663466
Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
init
2025-09-02 14:49:16 +08:00

30 lines
694 B
TypeScript

import { APP_WILL_MOUNT, APP_WILL_UNMOUNT } from '../app/actionTypes';
import ReducerRegistry from '../redux/ReducerRegistry';
import { USER_INTERACTION_RECEIVED } from './actionTypes';
export interface IUserInteractionState {
interacted?: boolean;
}
ReducerRegistry.register<IUserInteractionState>('features/base/user-interaction',
(state = {}, action): IUserInteractionState => {
switch (action.type) {
case APP_WILL_MOUNT:
case APP_WILL_UNMOUNT:
return {
...state,
interacted: false
};
case USER_INTERACTION_RECEIVED:
return {
...state,
interacted: true
};
}
return state;
});