@axiasolar-js/react-query

1.1.0 • Public • Published

@axiasolar-js/react-query

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

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

Overview

A collection of RxJS enabled React components that operate with the @axiasolar-js/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 '@axiasolar-js/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')
);
...

Readme

Keywords

none

Package Sidebar

Install

npm i @axiasolar-js/react-query

Weekly Downloads

1

Version

1.1.0

License

Apache-2.0

Unpacked Size

83.1 kB

Total Files

50

Last publish

Collaborators

  • abhishek-zeeve
  • sankar-boro-zeeve