Sha256: 110916561319c34faf03f6e03c88b341239383e1625bea4a1092e7fc62fb9335

Contents?: true

Size: 736 Bytes

Versions: 126

Compression:

Stored size: 736 Bytes

Contents

import React from 'react';
import PropTypes from 'prop-types';
import { Icon, Grid } from 'patternfly-react';
import { FormattedRelative } from 'react-intl';
import { translate as __ } from 'foremanReact/common/I18n';
import './scheduledRun.scss';

const ScheduledRun = ({ date, autoUploadEnabled }) =>
  autoUploadEnabled && date ? (
    <Grid.Col sm={12} className="scheduled_run">
      <p>
        <Icon name="calendar" />
        {__('Next run: ')}
        <FormattedRelative value={date} />.
      </p>
    </Grid.Col>
  ) : null;

ScheduledRun.propTypes = {
  date: PropTypes.string,
  autoUploadEnabled: PropTypes.bool,
};

ScheduledRun.defaultProps = {
  date: null,
  autoUploadEnabled: true,
};

export default ScheduledRun;

Version data entries

126 entries across 126 versions & 1 rubygems

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