Code Monkey home page Code Monkey logo

lape's Introduction

Lape - state manager for React

Simple, Immutable and memory efficient state manager.

Supports only the latest browsers.

Example

  // STATE.ts
  import { proxify } from "lape";

  export interface State {
    count: number;
    deep: {
      nest: boolean;
    };
  }

  const defaultState: State = {
    count: 0,
    deep: {
      nest: true
    }
  };

  export default proxify(defaultState);
  // APP.tsx
  import state from '@state' // using ts paths here

  const action = () => {
    state.count += 1;
  };

  class App extends React.Component {
    render() {
      return <div onClick={action}>{state.count}</div>;
    }
  }

  export default connect(App)

Example explained:

Every app consists of 3 parts:

  • State - a simple JSON structure
  • Side-effects - rendering to DOM, fetching from server, setting timers, etc.
  • Events - functions that change the state

State

State can be any JSON structure that is passed into a proxify function. The proxify function transparently wraps all of your data and emits events on any Get or Set operations.

Note:

  • don't put derived state* / cache into your real state, always derive it from the "base" state with functions
  • don't put functions into state.

* Derived state is any state that can be calculated from another state

Side effects

React

connect is a small wrapper around your component that records any Get operations from state. If any event changes the tracked state, the component will trigger it's render function.

Virtual fetch

Not implemented yet, use promises or async/await

Events

Events is a function that mutates the state. Don't trigger it while doing side-effects or it might loop. Every side effect that used the changed state will update automatically.

Pro tips:

  • You don't need to connect every component, connect the root one is fine, adding more is just an optimisation
  • The end nodes, like strings/numbers/booleans, are not proxies, so don't do string = 'abc', have at least one parent state.string = 'abc''
  • Don't mutate the state in render (same as setState())

lape's People

Contributors

masiulis avatar

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.