@polkadot/ui-react-rx
TypeScript icon, indicating that this package has built-in type declarations

0.22.8 • Public • Published

@polkadot/ui-react-rx

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/ui-react-rx';

...
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')
);
...

Readme

Keywords

Package Sidebar

Install

npm i @polkadot/ui-react-rx

Weekly Downloads

2

Version

0.22.8

License

Apache-2.0

Unpacked Size

100 kB

Total Files

125

Last publish

Collaborators

  • polkadotjs
  • jacogr