@polkadot/rx-react

0.6.1 • Public • Published

polkadotjs isc style npm travis maintainability coverage dependency devDependency

@polkadot/rx-react

A collection of RxJS enabled React components that operate with the @polkadot/rx-api 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/rx-react';

...
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/rx-react

Weekly Downloads

0

Version

0.6.1

License

ISC

Unpacked Size

75.1 kB

Total Files

60

Last publish

Collaborators

  • polkadotjs
  • jacogr