polkadot-js/apps

View on GitHub
packages/react-components/src/InputStorage/options/section.ts

Summary

Maintainability
A
35 mins
Test Coverage
// Copyright 2017-2024 @polkadot/react-components authors & contributors
// SPDX-License-Identifier: Apache-2.0

import type { ApiPromise } from '@polkadot/api';
import type { DropdownOption, DropdownOptions } from '../../util/types.js';

export function sectionOptions (api: ApiPromise): DropdownOptions {
  return Object
    .keys(api.query)
    .filter((s) => !s.startsWith('$'))
    .sort()
    .filter((n) => Object.keys(api.query[n]).length)
    .map((value): DropdownOption => ({
      text: value,
      value
    }));
}