@soywod/react-use-observable
v0.0.4
Published
👀 React hook that consumes any kind of observable via useState.
Downloads
8
Maintainers
Readme
👀 React use observable
React hook that consumes any kind of observable via useState
.
Installation
npm install @soywod/react-use-observable
# or
yarn add @soywod/react-use-observable
Definition
declare type UseObservable = <T>(obs$: Observable<T>, defaultVal: T, fn?: UseObservableFn<T>) => [T, UseObservableFn<T>];
declare type UseObservableFn<T> = (val: T) => void;
declare const useObservable: UseObservable;
Usage
The observable can be any kind of object with a subscribe
and a next
property. For eg with RxJS:
counter/service.ts
:
import {BehaviorSubject} from "rxjs";
export const counter$ = new BehaviorSubject(0);
export function incrementCounter() {
counter$.next(count => count + 1);
}
counter/component.tsx
:
import React from "react"
import {useObservable} from "@soywod/react-use-observable";
import {counter$, incrementCounter} from "./service"
const MyComponent: FC = () => {
const [count] = useObservable(counter$, counter$.value);
return <button onClick={incrementCounter}>{count}</button>;
}
Development
git clone https://github.com/soywod/react-use-observable.git
cd react-use-observable
yarn install
Tests
yarn test