selectors.ts 250 B

123456789
  1. import { ApiKeysState } from 'app/types';
  2. export const getApiKeys = (state: ApiKeysState) => {
  3. const regex = RegExp(state.searchQuery, 'i');
  4. return state.keys.filter(key => {
  5. return regex.test(key.name) || regex.test(key.role);
  6. });
  7. };