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-zustand-sugar

v1.0.10

Published

[![build](https://github.com/vadim-isakov/react-zustand-sugar/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/vadim-isakov/react-zustand-sugar/actions/workflows/build.yml) [![test](https://github.com/vadim-isakov/react-zustand-sugar

Downloads

709

Readme

build test lint install size Build Size Version

Install

This library requires the following packages to be installed:

You can install them together with:

npm install zustand mutative react-zustand-sugar

Usage

In the examples below, we update child components from the parent without re-rendering the parent component.

Simple example

import { create } from 'react-zustand-sugar';

const store = create({book: 0, toys: 0});

export default function Parent() {
  store.useResetOnUnmount();

  return <div>
    <button onClick={() => store.books.current += 1}>Add book</button>
    <Books/>
    <button onClick={() => store.toys.current += 1}>Add toy</button>
    <Toys/>
  </div>
}

function Books() {
  const books = store.books.useCurrent()
  return <div>{books}</div>   
}

function Toys() {
  const toys = store.toys.useCurrent()
  return <div>{toys}</div>
}

Example with nested state

const store = create({
  books: 0,
  games: {
    educational: {
      programming: 0,
      physics: 0,
    },
    shooters: 0,
  },
});

export default function Parent() {
  store.useResetOnUnmount();

  return <div>
    <button onClick={() => store.books.current += 1}>Add book</button>
    <Books/>
    <button onClick={
      () => store.games.setCurrent(v => v.educational.programming += 1)
    }>Add programming games"</button>
    <Toys/>
  </div>
}

function Books() {
  const value = store.books.useCurrent()
  return <div>{value}</div>   
}

function ProgrammingGames() {
  const value = store.games.useCurrent(games => games.educational.programming)
  return <div>{value}</div>
}

Instructions for Using the Package

1. Create the store and define initial values

const store = create({book: 0, toys: 0});

2. Reset Current Values

  • Automatically reset all values on unmount: store.useResetOnUnmount();
  • Reset all values: store.reset();
  • Reset a single value: store.books.reset();

3. Set Current Values

  • Set a specific value: store.books.current = value;
  • Set multiple values at once: store.setCurrent({ books: 5, toys: 5 });
  • Update a value using a selector: store.educational.setCurrent(educational => educational.programming += 10);

4. Get Current Values

  • Use a hook to retrieve the current value: store.educational.useCurrent(educational => educational.programming);
  • Access the current value directl: store.educational.current;

API Documentation

For detailed information on the API, refer to the API Documentation.