Sha256: 110916561319c34faf03f6e03c88b341239383e1625bea4a1092e7fc62fb9335

Contents?: true

Size: 736 Bytes

Versions: 129

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

129 entries across 129 versions & 1 rubygems

Version Path
foreman_rh_cloud-3.0.28 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-5.0.28 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-4.0.27 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-3.0.26 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-4.0.26 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-4.0.25.1 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-3.0.25 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-4.0.25 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-3.0.24.1 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-4.0.24.1 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-3.0.24 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-4.0.24 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-3.0.23 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-4.0.23 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-3.0.22 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-4.0.22 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-4.0.21.1 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-3.0.21.1 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-3.0.21 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-3.0.20 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js