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

@fission-suite/contacts-react

v1.1.0

Published

React components for working with Contacts.

Downloads

63

Readme

Contacts React

Build Status License Maintainability Built by FISSION Discord Discourse

React components for working with contacts data.

Contacts Data

These components assume contacts in the form of:

{
  "uuid": "a58bca0d-a38f-42a1-8b33-bcd53027881c",
  "label": "Main ETH account",
  "notes": "💰",
  "createdAt": "2021-05-26T16:03:03Z",
  "modifiedAt": "2021-05-26T16:03:03Z",
  "address": {
    "accountAddress": "0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb",
    "chainId": "eip155:1"
  }
}

You can find the JSON schema in the repo from the contacts app, which is live at contacts.fission.app. In the app you can view and manage your contacts. By default it assumes the contacts data in the private/Documents/Contacts/ directory.

Components

To illustrate how easy it is to work with the webnative filesystem, we're making a few React components to easily render contacts in your React app.

import { List } from '@fission-suite/contacts-react'

webnative.initialise({ ... }).then(state => {
  if (state.fs) {
    return <List fileSystem={state.fs} />
  }
})

List component properties:

{
  blockchainNetworksPath,       // default: @fission-suite/contacts-react/List.DEFAULT_BLOCKCHAIN_NETWORKS_PATH
  emptyStateComponent,          // default: @fission-suite/contacts-react/List.EmptyState
  fileSystem,                   // REQUIRED
  itemComponent,                // default: @fission-suite/contacts-react/Contact.Contact
  libraryPath,                  // default: @fission-suite/contacts-react/List.DEFAULT_PATH
  listElement,                  // default: "dl"
  loadingComponent,             // default: @fission-suite/contacts-react/List.Loading
}

Contact component properties:

{
  blockchainNetworks,           // default: {}, passed from the default `List` component
  contact                       // REQUIRED
}

The default Contact and loading components are unstyled, so most likely you'll want to provide styled components instead.

import { isBlockchainAddress, lookUpBlockchainNetwork } from '@fission-suite/contacts-react/Contact'

<List
  fileSystem={state.fs}
  listElement="ol"

  emptyStateComponent={
    <div>Nothing here yet.</div>
  }
  loadingComponent={() =>
    <div>Loading …</div>
  }
  itemComponent={({ blockchainNetworks, contact }) => {
    if (isBlockchainAddress(contact.address)) {
      const network = lookUpBlockchainNetwork(contact.address, blockchainNetworks)
      return <li>
        {contact.address.accountAddress}
        {network.label}
      </li>
    }

    return <></>
  }}
/>

Example

There is an example in the example directory, which is also available at contacts-react.fission.app. That also serves as an example for the React components from the Fission UI Kit.