Sha256: d682f95dc948207f0860e7c81b3d12f92f78d00b49344dc9c1d5cc40677c2eb5

Contents?: true

Size: 289 Bytes

Versions: 84

Compression:

Stored size: 289 Bytes

Contents

import { pickBy } from 'lodash';

export const filterAccounts = (accounts, filterTerm) => {
  if (!filterTerm) return accounts;

  const filterTermLowerCased = filterTerm.toLowerCase();
  return pickBy(accounts, (value, key) =>
    key.toLowerCase().includes(filterTermLowerCased)
  );
};

Version data entries

84 entries across 84 versions & 1 rubygems

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