Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@alaboudi/react-observable

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@alaboudi/react-observable

A observable binding for React

  • 1.0.0-alpha.8
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
decreased by-60%
Maintainers
1
Weekly downloads
 
Created
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

Package last updated on 21 Jul 2020

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc