2020-06-23 13:59:54 +02:00
2020-06-22 01:15:38 +02:00
2020-06-22 01:15:38 +02:00
2020-06-15 01:37:26 +02:00
2020-05-04 03:24:58 +02:00
2020-05-04 03:24:58 +02:00
2020-06-23 13:29:54 +02:00
2020-06-23 13:29:54 +02:00
2020-06-23 13:59:54 +02:00
2020-05-04 03:24:58 +02:00

Re-RxJS

Re-RxJS Logo

React bindings for RxJS


Build Status codecov version MIT License All Contributors PRs Welcome Code of Conduct

Main features

  • 🌀 Truly Reactive
  • Highly performant and free of memory-leaks
  • 🔀 First class support for React Suspense and ready for Concurrent Mode
  • ✂️ Decentralized and composable, thus enabling optimal code-splitting
  • 🔬 Tiny and tree-shakeable
  • 💪 Supports TypeScript

Table of Contents

Installation

npm install re-rxjs

API

connectObservable

const [useCounter, sharedCounter$] = connectObservable(
  clicks$.pipe(
    scan(prev => prev + 1, 0),
    startWith(0),
  )
)

Returns a hook that provides the latest update of the accepted observable, and an enhanced version of the original observable (the one that the hook will use), which is shared and "replayable".

connectFactoryObservable

const [useStory, getStory$] = connectFactoryObservable(
  (storyId: number) => getStoryWithUpdates$(storyId)
)

const Story: React.FC<{id: number}> = ({id}) => {
  const story = useStory(id);

  return (
    <article>
      <h1>{story.title}</h1>
      <p>{story.description</p>
    </article>
  )
}

Accepts: A factory function that returns an Observable.

Returns [1, 2]

  1. A React Hook function with the same parameters as the factory function. This hook will yield the latest update from the observable returned from the factory function.

  2. A shared replayable version of the observable generated by the factory function that can be used for composing other streams that depend on it. This observable is disposed when its refCount goes down to zero.

distinctShareReplay

A RxJS pipeable operator which performs a custom shareReplay that can be useful when working with these bindings. It's roughly the equivalent of:

const distinctShareReplay = <T>(compare?: Object.is) => (
  source$: Observable<T>,
): Observable<T> =>
  source$.pipe(
    distinctUntilChanged(compare),
    multicast(() => new ReplaySubject<T>(1)),
    refCount(),
  )

The enhanced observables returned from connectObservable and connectFactoryObservable have been enhanced like this:

const shared$ = concat(original$, NEVER).pipe(distinctShareReplay())

SUSPENSE

This is a special symbol that can be emitted from our observables to let the react-hook know that there is a value on its way, and that we want to leverage React Suspense API while we are waiting for that value.

suspend

A RxJS creation operator that performs a startWith(SUSPENSE) on the source observable.

const suspend = <T>(source$: ObservableInput<T>) =>
  from(source$).pipe(startWith(SUSPENSE))

suspended

The pipeable version of suspend

switchMapSuspended

Like switchMap but applying a startWith(SUSPENSE) to the inner observable.

const switchMapSuspended = <Input, Output>(
  fn: (input: Input) => ObservableInput<Output>,
) => (src$: Observable<Input>) => src$.pipe(switchMap(x => suspend(fn(x))))

createInput

A couple examples are worth a thousand words:

const [getCounter$, setCounter] = createInput(0)

const useCounter = connectFactoryObservable((id: string) => getCounter$(id))

const Counter: React.FC<{id: string}> = ({id}) => {
  const counter = useCounter(id);

  return (
    <button onClick={() => setCounter$(id, x => x - 1)} />-</button>
    {counter}
    <button onClick={() => setCounter$(id, x => x + 1)} />+</button
  )
}

or:

const [getUpClicks$, onUpClick] = createInput()
const [getDownClicks$, onDownClick] = createInput()

const useCounter = connectFactoryObservable((id: string) =>
  merge(
    getUpClicks$(id).pipe(mapTo(1)),
    getDownClicks$(id).pipe(mapTo(-1)),
  ).pipe(
    scan((a, b) => a + b, 0),
    startWith(0)
  )
)

const Counter: React.FC<{id: string}> = ({id}) => {
  const counter = useCounter(id);

  return (
    <button onClick={onDownClick} />-</button>
    {counter}
    <button onClick={onUpClick} />+</button
  )
}

Examples

import React, { Suspense } from "react"
import { Subject } from "rxjs"
import { startWith, map } from "rxjs/operators"
import { connectObservable, switchMapSuspended } from "re-rxjs"
import { Header, Search, LoadingResults, Repo } from "./components"

interface Repo {
  id: number
  name: string
  description: string
  author: string
  stars: number
  lastUpdate: number
}

const searchInput$ = new Subject<string>()
const onSubmit = (value: string) => searchInput$.next(value)

const findRepos = (query: string): Promise<Repo[]> =>
  fetch(`https://api.github.com/search/repositories?q=${query}`)
    .then(response => response.json())
    .then(rawData =>
      (rawData.items ?? []).map((repo: any) => ({
        id: repo.id,
        name: repo.name,
        description: repo.description,
        author: repo.owner.login,
        stars: repo.stargazers_count,
        lastUpdate: Date.parse(repo.update_at),
      })),
    )

const [useRepos, repos$] = connectObservable(
  searchInput$.pipe(
    switchMapSuspended(findRepos),
    startWith(null),
  ),
)

function Repos() {
  const repos = useRepos()

  if (repos === null) {
    return null
  }

  if (repos.length === 0) {
    return <div>No results were found.</div>
  }

  return (
    <ul>
      {repos.map(repo => (
        <li key={repo.id}>
          <Repo {...repo} />
        </li>
      ))}
    </ul>
  )
}

const [useMostRecentlyUpdatedRepo] = connectObservable(
  repos$.pipe(
    map(repos =>
      Array.isArray(repos) && repos.length > 0
        ? repos.reduce((winner, current) =>
            current.lastUpdate > winner.lastUpdate ? current : winner,
          )
        : null,
    ),
  ),
)

function MostRecentlyUpdatedRepo() {
  const mostRecent = useMostRecentlyUpdatedRepo()

  if (mostRecent === null) {
    return null
  }

  const { id, name } = mostRecent
  return (
    <div>
      The most recently updated repo is <a href={`#${id}`}>{name}</a>
    </div>
  )
}

export default function App() {
  return (
    <>
      <Header>Search Github Repos</Header>
      <Search onSubmit={onSubmit} />
      <Suspense fallback={<LoadingResults />}>
        <MostRecentlyUpdatedRepo />
        <Repos />
      </Suspense>
    </>
  )
}

Contributors

Thanks goes to these wonderful people (emoji key):


Josep M Sobrepere

💻 🤔 🚧 ⚠️ 👀

Víctor Oliva

🤔 👀 💻 ⚠️

Ed

🎨

Pierre Grimaud

📖

Bhavesh Desai

👀

This project follows the all-contributors specification. Contributions of any kind welcome!

Description
React bindings for RxJS
Readme MIT 6.4 MiB
Languages
TypeScript 99.3%
JavaScript 0.7%