0.1.6 • Published 1 year ago

react-ipfs-components v0.1.6

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Load any IPFS content from the fastest gateway available just passing a valid path.

React IPFS Components is a powerful library of React components that allows you to easily load any InterPlanetary File System (IPFS) content from the fastest gateway available. With this library, you no longer need to worry about configuring or setting up any gateways or passing a correct CID as a parameter. The plugin itself automatically verifies the fastest suitable gateways from the Public Gateways list provided by Protocol Labs.

Once you have successfully connected to at least three of these gateways, the content will show up automatically. The service to fetch images and JSON (metadata) files works by decoupling the URL/CID/Path passed and checking if it is a valid IPFS link. In case of a successful fetch for the CID and subpaths, it uses the best gateway possible to fetch content. If it successfully fetches from one of the best gateways, it returns immediately. Otherwise, it will fallback to the URL previously passed.

If the component fails to fetch data from the gateways multiple times, that source will be removed from the list and another one will take its place. This ensures that you always get the fastest and most reliable connection possible.

Live Demo / Live Demo Repo

Sources for media supported includes:

  • Path with CIDv0 only: Qm...
  • Path with CIDv1 only: bafy...
  • IPFS protocol path: ipfs://...
  • Pre-filled IPFS gateway path: https://ipfs.io/ipfs/...
  • CIDv1 with subdomain path: https://bafy.../2.png
  • Non IPFS URLs (Will fetch url itself.)

Installation

First install package on your project:

npm install -s react-ipfs-components

Second initalize the fetcher on your main.jsx file:

import {IPFSFetcher} from 'react-ipfs-components'

IPFSFetcher.Initialize();

Then you can import components and use them on your jsx files:

import { IPFSAvatar, IPFSImage, IPFSVideo, IPFSFetcher } from 'react-ipfs-components'

Usage

We feature two different components with preload:

IPFSAvatar: A component that has two different properties.

  • size: The size of the image in pixels.
  • radius: The border radius of the image.
<IPFSAvatar size="20" radius="20" src="path or cid"/>
<IPFSAvatar size="100" radius="0" src="path or cid"/>

IPFSImage: A component that has two different properties.

  • width: The width of the image in pixels.
  • height: The height of the image in pixels.
<IPFSImage width="20" height="20" src="path or cid"/>
<IPFSImage width="100" height="300" src="path or cid"/>

IPFSVideo: A video component with multiple options.

  • width: The width of the image in pixels.
  • height: The height of the image in pixels.
  • controls: Show navigation controls.
  • muted: Mute the video.
  • loop: Restart video automatically once finished.
  • autoplay: Play video automatically after loaded.
<IPFSVideo width="320" height="240" src="path or cid"/>

Both the IPFSImage, IPFSVideo and IPFSAvatar components extend a third component called ipfs-media. This component is responsible for communication with the component core, while the other two components handle how the object will be displayed. If you want to customize an implementation, you can extend ipfs-media the same way ipfs-squared and ipfs-avatar do with the desired modifications. This allows you to have full control over how the media is displayed while still benefiting from the underlying functionality provided by the React IPFS Components library.

References:

  • IPFS Public Fetcher Library - Repo

  • Protocol-Labs public gateway list: Website / Repo

0.1.2

1 year ago

0.1.4

1 year ago

0.1.3

1 year ago

0.1.6

1 year ago

0.1.5

1 year ago

0.1.1

1 year ago

0.1.0

1 year ago