Sha256: 26d53d8fca9a1f15b1d78d5011d720ce7dff6fcb77bddb41fa73a2b76dcce47f

Contents?: true

Size: 1.99 KB

Versions: 8

Compression:

Stored size: 1.99 KB

Contents

import React from 'react';
import { IntlProvider } from 'react-intl';
import PropTypes from 'prop-types';
import { translate as __ } from 'foremanReact/common/I18n';
import { Button, Icon } from 'patternfly-react';
import { INSIGHTS_SYNC_PAGE_TITLE } from './InsightsCloudSyncConstants';
import InsightsSettings from './Components/InsightsSettings';

const InsightsCloudSync = ({ data: { settingsUrl }, syncInsights }) => {
  document.title = INSIGHTS_SYNC_PAGE_TITLE;
  return (
    <IntlProvider locale={navigator.language}>
      <div className="insights-cloud-sync">
        <h1>{__('Red Hat Insights Sync')}</h1>
        <div className="insights-cloud-sync-body">
          <InsightsSettings />
          <p>
            {__(`Insights synchronization process is used to provide Insights
             recommendations output for hosts managed here`)}
          </p>
          <p>
            {__(`1. Obtain an RHSM API token: `)}
            <a
              href="https://access.redhat.com/management/api"
              target="_blank"
              rel="noopener noreferrer"
            >
              access.redhat.com <Icon name="external-link" size="xs" />
            </a>
            <br />
            {__("2. Copy the token to 'Red Hat Cloud token' setting: ")}
            <a href={settingsUrl} target="_blank" rel="noopener noreferrer">
              {__('Red Hat Cloud token ')}
              <Icon name="external-link" size="xs" />
            </a>
            <br />
            {__(
              '3. Now you can synchronize recommendations manually using the "Sync now" button.'
            )}
          </p>
          <div>
            <Button bsStyle="primary" onClick={syncInsights}>
              {__('Sync now')}
            </Button>
          </div>
        </div>
      </div>
    </IntlProvider>
  );
};

InsightsCloudSync.propTypes = {
  syncInsights: PropTypes.func.isRequired,
  data: PropTypes.shape({
    settingsUrl: PropTypes.string.isRequired,
  }).isRequired,
};

export default InsightsCloudSync;

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
foreman_rh_cloud-1.0.13.1 webpack/InsightsCloudSync/InsightsCloudSync.js
foreman_rh_cloud-1.0.13 webpack/InsightsCloudSync/InsightsCloudSync.js
foreman_rh_cloud-1.0.12 webpack/InsightsCloudSync/InsightsCloudSync.js
foreman_rh_cloud-2.0.12 webpack/InsightsCloudSync/InsightsCloudSync.js
foreman_rh_cloud-1.0.11 webpack/InsightsCloudSync/InsightsCloudSync.js
foreman_rh_cloud-2.0.11 webpack/InsightsCloudSync/InsightsCloudSync.js
foreman_rh_cloud-1.0.10 webpack/InsightsCloudSync/InsightsCloudSync.js
foreman_rh_cloud-2.0.10 webpack/InsightsCloudSync/InsightsCloudSync.js