Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | 1x 1x 66x 66x 2x 64x 3x | /** * The edit mode changed action. */ export const EDIT_MODE_CHANGED = 'validation/namespace/EDIT_MODE_CHANGED'; /** * The initial state. */ export const INITIAL_STATE = { collectionReadOnly: false, hardonReadOnly: false, writeStateStoreReadOnly: false, oldServerReadOnly: false }; /** * Reducer function for handle state changes to namespace. * * @param {String} state - The namespace state. * @param {Object} action - The action. * * @returns {String} The new state. */ export default function reducer(state = INITIAL_STATE, action) { if (action.type === EDIT_MODE_CHANGED) { return { ...state, ...action.editMode }; } return state; } /** * Action creator for the edit mode changed events. * * @param {Object} editMode - The edit mode. * * @returns {Object} The edit mode changed action. */ export const editModeChanged = (editMode) => ({ type: EDIT_MODE_CHANGED, editMode }); |