Sha256: dc7427a4fda04c898926718c5b343928fac57818a72010d465aabbbf8334fbfb

Contents?: true

Size: 507 Bytes

Versions: 151

Compression:

Stored size: 507 Bytes

Contents

import React from 'react';
import { Link } from 'react-router-dom';
import { urlBuilder } from 'foremanReact/common/urlHelpers';

export const subscriptionNameFormatter = (value, { rowData }) => {
  let cellContent;

  if (rowData.collapsible) {
    cellContent = (rowData.name);
  } else {
    cellContent = (
      <Link to={urlBuilder('subscriptions', '', rowData.id)}>{rowData.name}</Link>
    );
  }

  return (
    <td>
      {cellContent}
    </td>
  );
};

export default subscriptionNameFormatter;

Version data entries

151 entries across 151 versions & 1 rubygems

Version Path
katello-4.11.0 webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionNameFormatter.js
katello-4.11.0.rc2 webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionNameFormatter.js
katello-4.11.0.rc1 webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionNameFormatter.js
katello-4.10.0 webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionNameFormatter.js
katello-4.9.2 webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionNameFormatter.js
katello-4.10.0.rc2 webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionNameFormatter.js
katello-4.10.0.rc1 webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionNameFormatter.js
katello-4.8.4 webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionNameFormatter.js
katello-4.9.1 webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionNameFormatter.js
katello-4.8.3 webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionNameFormatter.js
katello-4.9.0 webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionNameFormatter.js
katello-4.7.6 webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionNameFormatter.js
katello-4.8.2 webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionNameFormatter.js
katello-4.9.0.rc2 webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionNameFormatter.js
katello-4.9.0.rc1 webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionNameFormatter.js
katello-4.8.1 webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionNameFormatter.js
katello-4.7.5 webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionNameFormatter.js
katello-4.8.0 webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionNameFormatter.js
katello-4.8.0.rc2 webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionNameFormatter.js
katello-4.7.4 webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionNameFormatter.js