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

react-state-proxy

v1.4.11

Published

The most simplified react state management library.

Downloads

113

Readme

Build Latest version Coverage Status License

English | 中文

react-state-proxy

The most simplified react state management library.

Features

  • Extremely easy to use
  • No boilerplate code
  • Just one API to set it up
  • Support for Function Component and Class Component
  • Friendly for beginners
  • Strong scalability for a large application
  • Batched re-render
  • Subscribed re-render
  • Support for asynchronous state

Introduction

React State Proxy is a react state management library that is extremely easy to use. It supplys a new way to simplify your react state management with just one function to set up.

import { stateProxy } from 'react-state-proxy';

export default function Hello() {
  const { num, inc, double } = stateProxy({
    num: 0,
    inc() {
      this.num++; // `this` object points to the reactive state
    },
    get double() {
      return this.num * 2;
    },
  });

  return <button onClick={inc}>Number: {num} Double: {double}</button>
}

Motivation

In other react state libraris(such as Redux, Recoil, Mobx, Akita), there is a tons of concepts to understand and lots of work to set it up. You must follow the specified instructions which are hard to use and less flexible.

Quick look at problems with the other react state libraris:

  • Steep learning curve
  • Too much boilerplate code
  • Too many concepts
  • Hard to set up
  • Not intuitive
  • Difficult to achieve code-splitting

In some cases, I think, we just need a simple react state management that should be as simple as managing normal javascript variables, without complex concepts and complicated API calls to set up. Less is more.

Installation

NPM: npm install react-state-proxy

YARN: yarn add react-state-proxy

Usage

For function component:

You can use states just like normal javascript objects.

import { stateProxy } from 'react-state-proxy';

export default function Hello() {
  const state = stateProxy({
    num: 0,
    arr: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
    obj: {
      abc: 1234,
    },
    str: 'Hello',
  });
  return (
    <div>
      <div>
        <div>Num: {state.num}</div>
        <button onClick={() => state.num++}>Add num</button>
      </div>
      <div>
        <div>{JSON.stringify(state.arr)}</div>
        <button onClick={() => state.arr.push(state.arr.length)}>Push</button>
        <button onClick={() => state.arr.pop()}>Pop</button>
        <button onClick={() => state.arr.shift()}>Shfit</button>
      </div>
      <div>
        <div>Obj: {JSON.stringify(state.obj)}</div>
        <button onClick={() => (state.obj.abc = Math.random())}>Set obj.abc</button>
      </div>
      <div>
        <div>Str: {state.str}</div>
        <button onClick={() => (state.str += ' world')}>Append 'world' to str</button>
      </div>
    </div>
  );
}

For class component:

You can use both native state and stateProxy's state.

import { stateProxy4CC } from 'react-state-proxy';

export default class Welcome extends React.Component {
  state = {
    num: 0,
  };
  person = stateProxy4CC(this, {
    age: 0,
  });

  render() {
    return (
      <div>
        <button onClick={() => this.person.age++}>Age: {this.person.age}</button>
        <button onClick={() => this.setState((p) => ({ num: p.num + 1 }))}>Num: {this.state.num}</button>
      </div>
    );
  }
}

Note: Don't use stateProxy's state as native state. It may conflict with native setState method in a class component.

export default class Welcome extends React.Component {
  // DO NOT DO THIS:
  state = stateProxy4CC(this, {
    num: 0,
  });

  render() { ... }
}

Advanced Usage

code-splitting:

For a large application, you can separate your state data from your business codes.

// models/num.ts
import { stateWrapper } from 'react-state-proxy';
// In general, stateWrapper method is optional, however, it is needed
// if you want to manage your states outside of a React component.
export default stateWrapper({
  num: 0,
  inc() {
    this.num++;
  },
  get sum() {
    return this.num + 10;
  },
});

// components/business.tsx
import { stateProxy } from 'react-state-proxy';
import state from '@/models/num';

// You can manage the states outsite of a React component.
setInterval(state.inc, 2000);

export default function Hello() {
  const { num, inc, sum } = stateProxy(state);
  return (
    <div>
      <button onClick={inc}>{num}</button> + 10 = <span>{sum}</span>
    </div>
  );
}

Async state:

react-state-proxy supplys an extra function to manage your async states. Note: The async function will only be initialized once.

import { stateProxy, asyncState } from 'react-state-proxy';

export default function AsyncComponent() {
  const state = stateProxy({
    status: asyncState(async () => {
      await new Promise((resolve) => setTimeout(resolve, 1000));

      return 'done';
    }, 'loading...'),
  });

  // the text of the button below will be changed from 'loading...' to 'done' in 1 second.
  return <button>{state.status.value}</button>;
}

Initialization:

__init__ method will be called automatically when stateProxy initializes a state. Note: This method will only be initialized once.

import { stateProxy } from 'react-state-proxy';

export default function AsyncComponent() {
  const state = stateProxy({
    status: 'pending',

    async __init__() {
      this.status = 'loading';
      await new Promise((resolve) => setTimeout(resolve, 1000));
      this.status = 'loaded';
    },
  });
  // the text of the button below will be changed from 'loading...' to 'loaded' in 1 second.
  return <button>{state.status}</button>;
}

Batched re-render

Multiple synchronous state mutations will not result in multiple re-renders.

import { stateProxy } from 'react-state-proxy';

let times = 0;
export default function Hello() {
  const state = stateProxy({
    name: 'Lucy',
    age: 18,
    email: '[email protected]',
  });

  const updateUser = () => {
    state.name = 'Lily';
    state.age++;
    state.email = '[email protected]';
  };
  console.log('times:', ++times);

  // [updateUser] will trigger only once re-render even though it mutates the state 3 times.
  return <button onClick={updateUser}>User: {JSON.stringify(state)}</button>;
}

Subscribed re-render

Re-render for subscribed keys.

import { stateProxy } from 'react-state-proxy';

let times = 0;
export default function Hello() {
  const state = stateProxy({
    name: 'Lucy',
    age: 18,
    times: 1,
    email: '[email protected]',
  }, ['age']);

  // This function will trigger re-render only when [age] is changed.
  return (<div>
    <button onClick={state.age++}>Age: {age}</button>
    <button onClick={state.times++}>Times: {times}</button>
  </div>);
}

API

stateWrapper(stateTarget: State)

It returns a proxied state which is non-reactive but can be managed outside of a React component. You can subscribe it in stateProxy, which will trigger re-render when state changes. In general, it's optional, except for managing states outside of a component.

stateProxy(stateTarget: State, subscribedKeys: string[])

Subscribe & create a reactive state object for Function Component. It must be used within a function component or it's children.

stateProxyForClassComponent(component: React.Component, stateTarget: State, subscribedKeys: string[])

Subscribe & create a reactive state object for Class Component. It must be used within a class component or it's children.

Alias:

  • stateProxyForCC
  • stateProxy4ClassComponent
  • stateProxy4CC

Note: stateProxy can not be used in a class component and vice versa for stateProxyForClassComponent.

asyncState(asyncFunction: Function, initialValue: any = null, fallbackValue: any = null)

Return a dynamic asynchronous state like below.

type AsyncState = {
  value: any; // The dynamic state value. To be one of initialValue, resolvedValue or fallbackValue.
  resolved: boolean; // It'll be updated after resolving of asyncFunction
  rejected: boolean | Error; // It'll be updated after rejecting of asyncFunction
  valueOf: Function;
};
  • asyncFunction: The asynchronous function used to get the dynamic state.
  • initialValue: Initial state value before calling asyncFunction.
  • fallbackValue: Fallback state value when an exception occurs.

License

react-state-proxy is licensed under the MIT license.