Add state for navigation
Currently selected navigation item is available under the navigation variable so that the whole application has access to it.
This commit is contained in:
parent
c9b324c68b
commit
d14eed9965
10 changed files with 154 additions and 45 deletions
|
|
@ -1,13 +1,12 @@
|
|||
import { UPDATE_CONTEXT_MENU, OPEN_CONTEXT_MENU, CLOSE_CONTEXT_MENU } from '../constants/contextMenu'
|
||||
|
||||
|
||||
const initialState =
|
||||
{
|
||||
const initialState = {
|
||||
opened: false,
|
||||
x: 0,
|
||||
y: 0,
|
||||
items: []
|
||||
}
|
||||
}
|
||||
|
||||
export default function contextMenu(state = initialState, action){
|
||||
switch (action.type) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue