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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 62x 62x 1x | import { combineReducers } from 'redux'; import appRegistry, { INITIAL_STATE as APP_REGISTRY_STATE } from 'mongodb-redux-common/app-registry'; import dataService, { INITIAL_STATE as DS_INITIAL_STATE } from './data-service'; import fields, { INITIAL_STATE as FIELDS_INITIAL_STATE } from './fields'; import namespace, { INITIAL_STATE as NS_INITIAL_STATE } from './namespace'; import serverVersion, { INITIAL_STATE as SV_INITIAL_STATE } from './server-version'; import validation, { INITIAL_STATE as VALIDATION_STATE } from './validation'; import sampleDocuments, { INITIAL_STATE as SAMPLE_DOCUMENTS_STATE } from './sample-documents'; import isZeroState, { INITIAL_STATE as IS_ZERO_STATE } from './zero-state'; import editMode, { INITIAL_STATE as EDIT_MODE_STATE } from './edit-mode'; /** * Reset action constant. */ export const RESET = 'validation/reset'; /** * The intial state of the root reducer. */ export const INITIAL_STATE = { appRegistry: APP_REGISTRY_STATE, dataService: DS_INITIAL_STATE, fields: FIELDS_INITIAL_STATE, namespace: NS_INITIAL_STATE, serverVersion: SV_INITIAL_STATE, validation: VALIDATION_STATE, sampleDocuments: SAMPLE_DOCUMENTS_STATE, isZeroState: IS_ZERO_STATE, editMode: EDIT_MODE_STATE }; /** * The reducer. */ const appReducer = combineReducers({ appRegistry, dataService, fields, namespace, serverVersion, validation, sampleDocuments, isZeroState, editMode }); /** * Handle the reset. * * @returns {Object} The new state. */ const doReset = () => ({ ...INITIAL_STATE }); /** * The action to state modifier mappings. */ const MAPPINGS = { [RESET]: doReset }; /** * Reset the entire state. * * @returns {Object} The action. */ export const reset = () => ({ type: RESET }); /** * The root reducer. * * @param {Object} state - The state. * @param {Object} action - The action. * * @returns {Object} The new state. */ const rootReducer = (state, action) => { const fn = MAPPINGS[action.type]; return fn ? fn(state, action) : appReducer(state, action); }; export default rootReducer; |