You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
456 B
22 lines
456 B
import Immutable from 'immutable'; |
|
|
|
import { |
|
BLOCKS_INIT_MODAL, |
|
} from '../actions/blocks'; |
|
|
|
const initialState = Immutable.Map({ |
|
new: Immutable.Map({ |
|
account_id: null, |
|
}), |
|
}); |
|
|
|
export default function mutes(state = initialState, action) { |
|
switch (action.type) { |
|
case BLOCKS_INIT_MODAL: |
|
return state.withMutations((state) => { |
|
state.setIn(['new', 'account_id'], action.account.get('id')); |
|
}); |
|
default: |
|
return state; |
|
} |
|
}
|
|
|