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-8.0.48 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-8.0.47 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-8.0.46 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-6.0.45 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-5.0.46 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-5.0.45 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-7.0.46 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-5.0.44 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-7.0.45 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-6.0.44 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-5.0.43 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-4.0.36 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-3.0.33 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-6.0.42.2 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-6.0.42.1 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-6.0.43 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-5.0.42 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-6.0.42 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-5.0.41 webpack/InsightsHostDetailsTab/InsightsTabReducer.js
foreman_rh_cloud-5.0.39 webpack/InsightsHostDetailsTab/InsightsTabReducer.js