Giter Club home page Giter Club logo

unstated-x's Introduction

This project will not be maintained anymore in favor of Hooks: https://github.com/paul-phan/global-state-hook

Unstated-x

State so simple, it goes without saying

Installation

yarn add unstated-x

About Unstated

The original documentation can be found in: https://github.com/jamiebuilds/unstated

Additional Functions

Fix broken Controlled Component when using Asynchronous Unstated setState by using setStateSync

function App() {
  return (
    <Subscribe to={[AppContainer]}>
      {app => (
        <input
          onChange={e => app.setStateSync({ value: e.target.value })}
          value={app.state.value}
        />
      )}
    </Subscribe>
  );
}

Add Subscribe to only one Container and only state you want to:

function App() {
  return (
    <SubscribeOne to={AppContainer} bind={['value']}>
      {app => (
        <div>
          This will update only if the "value" state is updated, others will not
          <input
            onChange={e => app.setStateSync({ value: e.target.value })}
            value={app.state.value}
          />
        </div>
      )}
    </SubscribeOne>
  );
}

You can checkout the example to see more.

In this version, if you use React version 16.3 or higher, it will use the native React.createContext rather than the create-react-context library. I also removed support for multiple <Provider /> it clearly unnecessary.

Contribution

Feel free to create issues/pull request, I will eager to apply it to unstated-x if it good enough :)

unstated-x's People

Contributors

dependabot[bot] avatar paul-phan avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

unstated-x's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.