npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

parity-reactive-ui

v0.4.21

Published

The Parity Reactive Bond-based UI Library

Downloads

36

Readme

oo7-react

A small library to provide oo7 (Joint Asynchronous Mapping Expression System) Bond-based Reactive components for Ethereum and Parity.

The reactive components provided are:

  • AccountIcon (an identicon image for a given account);

  • AccountLabel (a full Semantic UI label for a given account);

  • InlineAccount (a simple display component for an account designed to flow in text);

  • SigningButton (a button which completes a message-signing operation when clicked and displays the progress to the user);

  • SigningProgressLabel (a full Semantic UI label for displaying the progress of a signing a message);

  • TransactButton (a button which posts a transaction when clicked and displays the progress to the user);

  • TransactionProgressLabel (a full Semantic UI label for displaying the progress of a transaction);

  • BButton (a Semantic UI derived Button that accepts Bonds for certain props);

  • InputBond (a Semantic UI derived Input component that accepts a Bond for its output);

  • AddressInputBond (an InputBond-like component for addresses);

  • HashBond (an InputBond-like component for 32 byte hashes);

  • URLBond (an InputBond-like component for URLs).

Installation

  npm install parity-reactive-ui --save

Usage

  // Assume React is already required.
  var pru = require('parity-reactive-ui'),
      InlineAccount = pru.InlineAccount,
	  oo7parity = require('oo7-parity'),
	  setupBonds = oo7parity.setupBonds;

  // We assume parity has been polluted into the global namespace.
  parity.bonds = setupBonds(parity.api);

  class App extends React.Component {
	  render() {
		  return (<div>
			  Your current address is <InlineAccount address={parity.bonds.me} />.
			</div>);
	  }
  }

Hacking

There are two hacking environment available in this repo:

Before running the main command, this setup requires exposing the `public` directory as a local dapp:

`ln -s $PWD/public /path/to/parity/dapps/pruit`

`Restart parity` and head over to the PRUIT app. This environment is suitable to test any component that interact with the Parity DApp API
Go to `localhost:9999`

This environment is suitable to quick test any parity-reactive-ui components that does not directly interact with the Parity dapp API.

Tests

  npm test

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.

Release History

  • 0.1.2 Fix issue with Balance.
  • 0.1.1 Initial release