Add stateful redux functions for navigation

This commit is contained in:
Joey Payne 2016-03-11 15:04:50 -07:00
commit 0cc8e837bf
3 changed files with 267 additions and 5 deletions

View file

@ -1 +1,16 @@
export const UPDATE_SELECTION = 'UPDATE_SELECTION'
export const REFRESH = 'REFRESH'
// Menu item manipulation
export const MENU_TYPE = 'MENU_TYPE'
export const ADD_MENU_ITEM = 'ADD_MENU_ITEM'
export const UPDATE_MENU_ITEM = 'UPDATE_MENU_ITEM'
export const REMOVE_MENU_ITEM = 'REMOVE_MENU_ITEM'
// Notebook item manipulation
export const NOTEBOOK_TYPE = 'NOTEBOOK_TYPE'
export const ADD_NOTEBOOK = 'ADD_NOTEBOOK'
export const REMOVE_NOTEBOOK = 'REMOVE_NOTEBOOK'
export const SORT_NOTEBOOKS = 'SORT_NOTEBOOKS'
export const UPDATE_NOTEBOOK = 'UPDATE_NOTEBOOK'