0.1.0 • Published 3 years ago

react-async-generators v0.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

react-async-generators

Run Unit Tests and Lint Files

Use async generators as if they were components. Supports wrapping functional components, async components, generator components, and async generator components.

Usage

Basic usage is to use the asyncGen wrapper function to handle the async generator within the React lifecycle.

import { asyncGen } from 'react-async-generators';

async function* MyComponent({ id }) {
    yield <div>Loading</div>;

    try {
        const { name } = await getUser(id);

        yield <div>Name: {name}</div>;
    } catch (e) {
        yield <div>Error:{e.message}</div>
    }
}

export default asyncGen(MyComponent);

You can wrap something just async functions too:

async function MyPromise({ id }) {
    const { name } = await getUser(id);

    return <div>Name: {name}</div>
}

export default asyncGen(MyPromise);

There is also a component form of the functional wrapper, which can be useful if you don't want to wrap every export with the asyncGen function:

import { AsyncGenerator } from 'react-async-generators';

const App = () => (
    <AsyncGenerator render={MyComponent} id={1} />
);

Examples

There are a set of examples showing different types of components in the ./examples folder using a create-react-app application.

TODO MVC example is based on the code from Crank.js's implementation.

Drawbacks

  • Still looking into how you would blend async generators and hooks together
  • Related to the above point, you only get one lifecycle method to work with: refresh.
  • Currently doesn't handle refs (Handle refs by using React.ref()).

FAQ

Question: My component isn't re-rendering when the props change!

Answer: If your props are equal due to a fast-deep-equal check, then the component will not update with new props. This commonly happens when you mutate an object instead of treating objects as immutable.

0.0.10

3 years ago

0.0.11

3 years ago

0.0.12

3 years ago

0.1.0

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago