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 | 1x 1x 1x 66x 66x 13x 53x 14x | /** * The prefix. */ const PREFIX = 'validation/data-service'; /** * Data service connected. */ export const DATA_SERVICE_CONNECTED = `${PREFIX}/DATA_SERVICE_CONNECTED`; /** * The initial state. */ export const INITIAL_STATE = { error: null, dataService: null }; /** * Reducer function for handling data service connected actions. * * @param {Object} state - The data service state. * @param {Object} action - The action. * * @returns {String} The new state. */ export default function reducer(state = INITIAL_STATE, action) { if (action.type === DATA_SERVICE_CONNECTED) { return { error: action.error, dataService: action.dataService }; } return state; } /** * Action creator for data service connected events. * * @param {Error} error - The connection error. * @param {DataService} dataService - The data service. * * @returns {Object} The data service connected action. */ export const dataServiceConnected = (error, dataService) => ({ type: DATA_SERVICE_CONNECTED, error, dataService }); |