Socket
Socket
Sign inDemoInstall

@alaboudi/react-observable

Package Overview
Dependencies
8
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @alaboudi/react-observable

A observable binding for React


Version published
Weekly downloads
10
Maintainers
1
Install size
20.6 kB
Created
Weekly downloads
 

Readme

Source

React Observable

A simple observable binding for your React components.

Installation

with Yarn

yarn install @alaboudi/react-observable

with NPM

npm install @alaboudi/react-observable

Usage

We have 2 primary APIs in this library: useObservable & withObservable. They both enable your component to subscribe to an observable.

useObservable

import { useObservable } from "@alaboudi/react-observable";
import { of } from "rxjs"; 

interface Book {
    title: string;
    description: string;
}

const FAKE_BOOK: Book = {
    title: 'Moby-Dick',
    description: 'A story about a whale 🐋'
};
const bookObservable$ = of(FAKE_BOOK);

const BookPreview = () => {
    const book = useObservable(bookObservable$);
    
    return (
        <article>
            <h1>{book.title}</h1>
            <p>{book.description}</p>
        </article>
    )
}

if your observable does not emit a value upon first render, you may pass an optional 2nd parameter as a fallback initial value.

    const bookObservable$ = new Subject<Book>();
    const initialFallbackValue = {
        title: 'The Kite Runner',
        description: 'A story about a boy'
    }
    const BookPreview = () => {
        const book = useObservable(bookObservable$, initialFallbackValue);
       
        return (
            <article>
                <h1>{book.title}</h1>
                <p>{book.description}</p>
            </article>
        )
    }

withObservable

If your project is not compatible with React hooks (prior to v16.8), then you can always use the following higher order component

const bookObservable$ = new Subject<Book>();
const initialFallbackValue: Book = {
    // 
}

const BookPreview = (props) => (
   <article>
       <h1>{props.book.title}</h1>
       <p>{props.book.description}</p>
   </article>
)

export default withObservable(
    'book',
    bookObservable$,
    initialFallbackValue // optional
)(BookPreview)

Typings

Typescript typings are included in this library.

Keywords

FAQs

Last updated on 21 Jul 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc