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-5.0.38 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-4.0.35 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-5.0.37 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-5.0.36 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-5.0.35 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-5.0.34 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-5.0.33 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-3.0.32 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-4.0.32 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-5.0.32 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-4.0.31 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-5.0.31 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-5.0.30 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-4.0.30 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-3.0.29 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-4.0.29 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
foreman_rh_cloud-5.0.29 webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js
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