Sha256: 9b2e40a5b1579e340d1dd099fb0fecd9f07452659ba943c9242827ed4c760ad9

Contents?: true

Size: 742 Bytes

Versions: 50

Compression:

Stored size: 742 Bytes

Contents

import { API } from 'foremanReact/redux/API';
import { addToast } from 'foremanReact/components/ToastsList';
import { insightsCloudUrl } from '../InsightsCloudSync/InsightsCloudSyncHelpers';
import {
  INSIGHTS_HITS_REQUEST,
  INSIGHTS_HITS_SUCCESS,
} from './InsightsTabConstants';

export const fetchHits = hostID => async dispatch => {
  try {
    dispatch({
      type: INSIGHTS_HITS_REQUEST,
      payload: {},
    });
    const {
      data: { hits },
    } = await API.get(insightsCloudUrl(`hits/${hostID}`));
    dispatch({
      type: INSIGHTS_HITS_SUCCESS,
      payload: { hits },
    });
  } catch ({ message }) {
    dispatch(
      addToast({
        sticky: true,
        type: 'error',
        message,
      })
    );
  }
};

Version data entries

50 entries across 50 versions & 1 rubygems

Version Path
foreman_rh_cloud-11.1.0 webpack/InsightsHostDetailsTab/InsightsTabActions.js
foreman_rh_cloud-10.0.3 webpack/InsightsHostDetailsTab/InsightsTabActions.js
foreman_rh_cloud-11.0.3 webpack/InsightsHostDetailsTab/InsightsTabActions.js
foreman_rh_cloud-9.0.59 webpack/InsightsHostDetailsTab/InsightsTabActions.js
foreman_rh_cloud-11.0.2 webpack/InsightsHostDetailsTab/InsightsTabActions.js
foreman_rh_cloud-11.0.1 webpack/InsightsHostDetailsTab/InsightsTabActions.js
foreman_rh_cloud-11.0.0 webpack/InsightsHostDetailsTab/InsightsTabActions.js
foreman_rh_cloud-9.0.58 webpack/InsightsHostDetailsTab/InsightsTabActions.js
foreman_rh_cloud-10.0.2 webpack/InsightsHostDetailsTab/InsightsTabActions.js
foreman_rh_cloud-9.0.57 webpack/InsightsHostDetailsTab/InsightsTabActions.js
foreman_rh_cloud-10.0.1 webpack/InsightsHostDetailsTab/InsightsTabActions.js
foreman_rh_cloud-9.0.56 webpack/InsightsHostDetailsTab/InsightsTabActions.js
foreman_rh_cloud-9.0.55 webpack/InsightsHostDetailsTab/InsightsTabActions.js
foreman_rh_cloud-9.0.54 webpack/InsightsHostDetailsTab/InsightsTabActions.js
foreman_rh_cloud-9.0.53 webpack/InsightsHostDetailsTab/InsightsTabActions.js
foreman_rh_cloud-9.0.52 webpack/InsightsHostDetailsTab/InsightsTabActions.js
foreman_rh_cloud-8.0.52 webpack/InsightsHostDetailsTab/InsightsTabActions.js
foreman_rh_cloud-9.0.51 webpack/InsightsHostDetailsTab/InsightsTabActions.js
foreman_rh_cloud-8.0.51 webpack/InsightsHostDetailsTab/InsightsTabActions.js
foreman_rh_cloud-7.0.48 webpack/InsightsHostDetailsTab/InsightsTabActions.js