npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

downfall

v0.1.3

Published

Inverted React event flow library

Downloads

2

Readme

Downfall

A library for inverting the flow of events in React. AKA, doing the wrong thing the right way.

What it does

Downfall lets you push events into a stream, which will propagate down the React tree (via context), where they can be acted on by other React components.

import { createStream, Downfall } from 'downfall';
const stream = createStream();

const Child = () => (
  <Downfall onEvent={event => console.log(event)} />
);

ReactDOM.render(
  <Downfall stream={stream}>
    <Child />
  </Downfall>,
  element
);
stream.push('Event!');
// "Event!" will be logged by the onEvent handler.

Any given onEvent listener will be called for all events pushed from ancestor Downfall components.

Why

Sometimes in React you have non-data events which need to flow down to children components. In 99.9% of cases, you should probably just make some state out of the events and pass state props down. For those .1% of cases where that just doesn't make sense though, you can use this library as a clean way for events to flow down.

Usage

Install

npm i downfall

Getting an event stream

You can create an event injection stream using createStream().

import { createStream } from 'downfall';

const anEventStream = createStream();

anEventStream.push('click');

Injecting the stream

You pass a stream into a Downfall component to inject the event stream into all child Downfalls.

import { createStream, Downfall } from 'downfall';

class MyInjectingComponent extends React.Component {
  constructor (props) {
    super(props);
    this.stream = createStream();
    this.tick = () => {
      this.timeout = window.setTimeout(() => {
        this.stream.push('tick');
        this.tick();
      }, 500);
    };
  }
  componentDidMount () {
    this.tick();
  }
  componentWillUnmount () {
    window.clearTimeout(this.timeout);
  }
  render () {
    return (
      <Downfall stream={this.stream}>
        {this.props.children}
      </Downfall>
    );
  }
}

Listening to the stream

import { Downfall } from 'downfall';

class MyListeningComponent extends React.Component {
  constructor (props) {
    super(props);
    this.state = {
      ticks: 0,
    };
    this.onTick = event => {
      if (event === 'tick') {
        this.setState(state => ({ ticks: state.ticks + 1 }));
      }
    };
  }
  render () {
    return (
      <React.Fragment>
        <Downfall onEvent={this.onTick}/>
        <p>Number of ticks: {this.state.ticks}</p>
      </React.Fragment>
    );
  }
}

ReactDOM.render((
  <MyInjectingComponent>
    <MyListeningComponent />
  </MyInjectingComponent>
), element);

Examples

Alternatively, if you clone the repo (and install it's dependencies with npm i), these examples can be run with npm run example-ticks and npm run example-click. (They are in /example in the repo.)

API details

downfall has two exports: createStream and Downfall.

createStream

createStream() returns an object with a single public function property: .push().

You can pass and call push() anywhere. It takes a single argument of any type. For simple cases, that might just be a string, or it could be actual Event objects, or even functions.

The object returned by createStream() should be passed to a Downfall component as the stream prop.

The object returned by createStream() also has a stream property, which is a Kefir.pool() stream. This should be considered unstable, and not used in applications.

Downfall

Downfall is a React component which takes these props:

Prop | type | description

  • | - | - onEvent | function | This event is called when any parent Downfall stream has something push()ed to it. stream | createStream() return value | This stream will be with the parent stream, and any events from either will trigger onEvent calls for Downfall components lower in the tree. children | Any valid React children | If using the stream prop, only Downfall components rendered in children (or children's children, etc) will get the push()ed events. If only using onEvent, using children is not necessary (but will be rendered normally if provided). context | Kefir Observable | [Unstable] This is a backdoor to override the parent event stream. E.g., if you wanted only your push()ed events to be caught by children, you could do context={Kefir.never()} to override the parent stream.

Stability and future changes

At the moment, the main API is stable, with some exposed implementation being technically unstable.

I would like to add a way to use specific React createContext instances, such that this could be used in other libraries without collision. I may do this by exposing a Context prop (note the current semi conflict in name) on Downfall, which would be the return object from createContext. Then you could create your own context and be wholly separate from any other usage of Downfall.

License

You may use this code under the terms of the Free Public License, as outlined in LICENSE.md