Sha256: 0b2a4ba2bc255deac5b7be98b82fc9a6a4a47eda2499224f96fa078abe2d8d0b

Contents?: true

Size: 404 Bytes

Versions: 102

Compression:

Stored size: 404 Bytes

Contents

import Immutable from 'seamless-immutable';
import { INSIGHTS_HITS_SUCCESS } from './InsightsTabConstants';

const initialState = Immutable({
  hits: [],
});

export default (state = initialState, action) => {
  const { payload: { hits } = {} } = action;

  switch (action.type) {
    case INSIGHTS_HITS_SUCCESS:
      return state.merge({
        hits,
      });
    default:
      return state;
  }
};

Version data entries

102 entries across 102 versions & 1 rubygems

Version Path
foreman_rh_cloud-9.0.59 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-11.0.2 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-11.0.1 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-11.0.0 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-9.0.58 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-10.0.2 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-9.0.57 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-10.0.1 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-9.0.56 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-9.0.55 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-9.0.54 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-9.0.53 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-9.0.52 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-8.0.52 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-9.0.51 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-8.0.51 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-7.0.48 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-7.0.47 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-8.0.50 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-8.0.49 webpack/InsightsHostDetailsTab/InsightsTabReducer.js