Socket
Socket
Sign inDemoInstall

react-rxjs-elements

Package Overview
Dependencies
5
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-rxjs-elements

React fragment for RxJS content


Version published
Weekly downloads
39
increased by85.71%
Maintainers
1
Install size
609 kB
Created
Weekly downloads
 

Readme

Source


<$>
react elements for RxJS content

NPM Bundlephobia MIT license


Simply add an Observable as one of <$>'s children:

<$>{ stream$ }</$>

or use a dynamic element, like $img

<$img src={ stream$ } />

react-rxjs-elements will subscribe to the stream$ and will display it's updates in place.
And it will clean up all subscriptions for you on component unmount.

Try it online

📦 Install

npm i react-rxjs-elements

📖 Examples

A simple timer — online sandbox

import React from 'react';
import { timer } from 'rxjs';
import { $ } from 'react-rxjs-elements';

function App() {
  return <$>{ timer(0, 1000) } sec</$>
}

Dynamic image sources — online sandbox

import React from 'react';
import { timer } from 'rxjs';
import { map } from 'rxjs/operators';
import { $img } from 'react-rxjs-elements';

function App() {
  const src$ = timer(0, 3000).pipe(
    map(x => (x % 2) ? 'a.jpg' : 'b.jpg')
  );

  return <$img src={ src$ } />
}

A data fetch (with RxJS ajax) — online sandbox

import React, { useMemo } from "react";
import { map, switchMap } from "rxjs/operators";
import { ajax } from "rxjs/ajax";
import { $ } from "react-rxjs-elements";


function App() {
  const data$ = useMemo(() =>
    ajax.getJSON(URL)
  , []);

  return <$>{data$}</$>;
}

A counter — online sandbox

import React from 'react';
import { $div } from 'react-rxjs-elements';
import { Subject } from 'rxjs';
import { startWith, scan } from 'rxjs/operators';

function App() {
  const subject$ = useMemo(() => new Subject(), []);

  const output$ = useMemo(() =>
    subject$.pipe(
      startWith(0),                   // start with a 0
      scan((acc, curr) => acc + curr) // then add +1 or -1
    )
  , []);

  return <$div>
    <button onClick={()=>subject$.next(-1)}>
      -
    </button>
    
    { output$  /* results would be displayed in place */ }
  
    <button onClick={()=>subject$.next(+1)}>
      +
    </button>
  </$div>
}

🙂 Enjoy

Keywords

FAQs

Last updated on 28 Apr 2022

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