Github Actions 6718066aa2 [CI Skip] release/beta 0.51.0-beta.30 4 роки тому
..
src 7af66875b9 Proper angle/percentage calc from BN (#3261) 4 роки тому
.skip-build 78f5d1fe77 Skip npm 5 роки тому
.skip-npm 78f5d1fe77 Skip npm 5 роки тому
LICENSE e6ca2db884 Rename ui-* -> react-* (#1495) 5 роки тому
README.md e6ca2db884 Rename ui-* -> react-* (#1495) 5 роки тому
index.html e6ca2db884 Rename ui-* -> react-* (#1495) 5 роки тому
package.json 6718066aa2 [CI Skip] release/beta 0.51.0-beta.30 4 роки тому
webpack.config.js 9a6c55a40b Bump dev (incl. eslint fixes) (#2502) 5 роки тому

README.md

@polkadot/react-query

WARNING: This is an internal package to polkadot-js/apps so is not inteded (yet) for broad use. Since these are generic components, they will move to the polkadot-js/ui repo once deemed stable and usable.

For the existing sharable components usable in external React-based projects, take a look at the polkadot-js/ui documentation

Overview

A collection of RxJS enabled React components that operate with the @polkadot/api-rx library. It automatically manages subscriptions on behalf of the developer, providing a number of unstyled components that can be used to construct UIs.

Usage

Basic usage entails creating a ContextProvider and just using the components. For instance, to display the current node time,

import React from 'react';
import ReactDOM from 'react-dom';

import { Api, NodeTime } from '@polkadot/react-query';

...
ReactDOM.render(
  <Api>
    <NodeTime />
  </Api>,
  document.querySelector('#container')
);
...

All components are provided unstyled making no assumptions on the actual use, however they all support (optionally) the label, className and style attributes, that can be used to style to component.

...
ReactDOM.render(
  <Api>
    <NodeTime className='rx-time' label='current node time:' />
  </Api>,
  document.querySelector('#container')
);
...