Sha256: 853cfdf70d053c196981acd180ee54c41d45188ec897c6a7597e759269f69b84

Contents?: true

Size: 1.03 KB

Versions: 40

Compression:

Stored size: 1.03 KB

Contents

import React from 'react';

const AggregateStatus = ({ statuses }) => (
  <div id="aggregate_statuses">
    <p className="card-pf-aggregate-status-notifications">
      <span className="card-pf-aggregate-status-notification">
        <span id="success_count">
          <span className="pficon pficon-ok" />
          {statuses.success}
        </span>
      </span>
      <span className="card-pf-aggregate-status-notification">
        <span id="failed_count">
          <span className="pficon pficon-error-circle-o" />
          {statuses.failed}
        </span>
      </span>
      <span className="card-pf-aggregate-status-notification">
        <span id="pending_count">
          <span className="pficon pficon-running" />
          {statuses.pending}
        </span>
      </span>
      <span className="card-pf-aggregate-status-notification">
        <span id="cancelled_count">
          <span className="pficon pficon-close" />
          {statuses.cancelled}
        </span>
      </span>
    </p>
  </div>
);

export default AggregateStatus;

Version data entries

40 entries across 40 versions & 1 rubygems

Version Path
foreman_remote_execution-3.2.2 webpack/react_app/components/jobInvocations/AggregateStatus/index.js
foreman_remote_execution-3.2.1 webpack/react_app/components/jobInvocations/AggregateStatus/index.js
foreman_remote_execution-3.2.0 webpack/react_app/components/jobInvocations/AggregateStatus/index.js
foreman_remote_execution-3.1.0 webpack/react_app/components/jobInvocations/AggregateStatus/index.js
foreman_remote_execution-2.0.10 webpack/react_app/components/jobInvocations/AggregateStatus/index.js
foreman_remote_execution-2.0.9 webpack/react_app/components/jobInvocations/AggregateStatus/index.js
foreman_remote_execution-2.0.8 webpack/react_app/components/jobInvocations/AggregateStatus/index.js
foreman_remote_execution-3.0.3 webpack/react_app/components/jobInvocations/AggregateStatus/index.js
foreman_remote_execution-3.0.2 webpack/react_app/components/jobInvocations/AggregateStatus/index.js
foreman_remote_execution-2.0.7 webpack/react_app/components/jobInvocations/AggregateStatus/index.js
foreman_remote_execution-3.0.1 webpack/react_app/components/jobInvocations/AggregateStatus/index.js
foreman_remote_execution-3.0.0 webpack/react_app/components/jobInvocations/AggregateStatus/index.js
foreman_remote_execution-2.0.6 webpack/react_app/components/jobInvocations/AggregateStatus/index.js
foreman_remote_execution-2.0.5 webpack/react_app/components/jobInvocations/AggregateStatus/index.js
foreman_remote_execution-2.0.4 webpack/react_app/components/jobInvocations/AggregateStatus/index.js
foreman_remote_execution-2.0.3 webpack/react_app/components/jobInvocations/AggregateStatus/index.js
foreman_remote_execution-2.0.2 webpack/react_app/components/jobInvocations/AggregateStatus/index.js
foreman_remote_execution-2.0.1 webpack/react_app/components/jobInvocations/AggregateStatus/index.js
foreman_remote_execution-2.0.0 webpack/react_app/components/jobInvocations/AggregateStatus/index.js
foreman_remote_execution-1.8.4 webpack/react_app/components/jobInvocations/AggregateStatus/index.js