How to use keyMirror with flow?

576 Views Asked by At

In my flux/react setup, I have defined ActionTypes as a keyMirror.

export const ActionType = keyMirror({
  START_TIMER: null,
  STOP_TIMER: null,
  PERFORM_STARTUP_CHECKS: null,
  SELECT_TASK_SERVICE:null,
  ADD_TASK: null,
  CLEAR_ALL_TASKS: null,
  COMPLETE_TASK: null,
  UNDO_COMPLETE_TASK: null,
  EDIT_TASK_TEXT: null,
});

I then define different types of Action as follows:

export type TaskAction = {
 type: ActionType.ADD_TASK,
 text: string
} | {
 type: ActionType.COMPLETE_TASK,
 taskId: string 
}

export type TimerAction = {
  type: ActionType.START_TIMER
} | {
  type: ActionType.STOP_TIMER
}

These different type of actions correspond to different stores. E.g.

In TasksStore
.
.
  reduce(state: TasksList, action: TaskAction) 

In TimerStore 
.
.
reduce(state: State, action: TimerAction) 

However, when I run flow, the action is not recognized.

 56:         indexOfTask = state.findIndex(function(task){ return task.get('_id') === action.taskId});
                                                                                             ^^^^^^ property `taskId`. Property not found in
 56:         indexOfTask = state.findIndex(function(task){ return task.get('_id') === action.taskId});
                                                                                      ^^^^^^ object type
0

There are 0 best solutions below