Streamr-client-react ✨
React hooks and components for @streamr/sdk.
Installation
Using npm, install the library, and save it to your package.json dependencies.
npm i streamr-client-react
The library relies on a collection of peer dependencies:
process ^0.11.10
react >=16.8.0
react-fast-compare ^3.2.0
@streamr/sdk >= 102.0.0
Make sure you install them, too!
API
Components
Provider
It holds its own StreamrClient instance and – by utilizing the Context API – makes it available to all its children components.
import Provider from 'streamr-client-react'
function App() {
return <Provider {...options}>You can use `useClient` here!</Provider>
}
ClientContext
If you wanna hack your way around the useClient hook for some wholesome reason and directly access the client instance provided by the Provider component this is where you start.
import { useContext } from 'react'
import type { StreamrClient } from '@streamr/sdk'
import { ClientContext } from 'streamr-client-react'
function SqrtOfFoo() {
const client: undefined | StreamrClient = useContext(ClientContext)
return null
}
Hooks
useClient(config?: StreamrClientConfig)
import { useClient } from 'streamr-client-react'
If config is given, useClient gives you a new instance of the client. The hook uses react-fast-compare to avoid unreasonable creation of new instances.
If config is skipped, it's gonna return an instance provided by the Provider component (undefined by default).
See Config.ts for more details on StreamrClientConfig.
useSubscribe(streamId: string, options?: Options)
import { useSubscribe } from 'streamr-client-react'
It allows you to conveniently subscribe to streams.
import type { ResendOptions, StreamMessage } from '@streamr/sdk'
interface Options {
cacheKey?: number | string
disabled?: boolean
ignoreUndecodedMessages?: boolean
onAfterFinish?: () => void
onBeforeStart?: () => void
onError?: (e: any) => void
onMessage?: (msg: StreamMessage) => void
onMessageError?: (e: any) => void
resendOptions?: ResendOptions
}
onAfterFinish, onBeforeStart, onError, onMessage, and onMessageError are all kept as refs (see useRef) internally, and for that reason changing them does not trigger resubscribing. Additionally, we track changes to resendOptions using react-fast-compare to avoid excessive resubscribing.
See
useResend(streamId: string, resendOptions: ResendOptions, options?: Options)
import { useResend } from 'streamr-client-react'
It allows you to resend historical messages without subscribing to the real-time messages.
import type { ResendOptions, Message } from '@streamr/sdk'
interface Options {
cacheKey?: number | string
disabled?: boolean
ignoreUndecodedMessages?: boolean
onAfterFinish?: () => void
onBeforeStart?: () => void
onError?: (e: any) => void
onMessage?: (msg: Message) => void
onMessageError?: (e: any) => void
}
See
Utils
subscribe(streamId: string, client: StreamrClient, options?: Options)
import { subscribe } from 'streamr-client-react'
Subscribes to a stream and returns an object with 2 asynchrounous methods: next and abort. Example:
async function foo(streamId: string, client: StreamrClient) {
const queue = subscribe(streamId, client)
while (true) {
const { value: msg, done } = await queue.next()
if (msg) {
}
if (done) {
break
}
}
}
Available options:
interface Options {
ignoreUndecodedMessages?: boolean
onError?: (e: any) => void
onMessageError?: (e: any) => void
}
resend(streamId: string, resendOptions: ResendOptions, streamrClient: StreamrClient, options?: Options)
import { resend } from 'streamr-client-react'
Subscribes to a stream of historical messages (only) and returns an object with 2 asynchrounous methods: next and abort. Example:
async function foo(streamId: string, client: StreamrClient) {
const queue = resend(streamId, { last: 10 }, client)
while (true) {
const { value: msg, done } = await queue.next()
if (msg) {
}
if (done) {
break
}
}
}
subscribe and resend share the options.