New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

zustand-computed

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zustand-computed

A Zustand middleware to create computed states.

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
15K
increased by33.35%
Maintainers
1
Weekly downloads
 
Created
Source

zustand-computed

npm package Build Status Downloads Issues

zustand-computed is a lightweight, TypeScript-friendly middleware for the state management system Zustand. It's a simple layer which adds a transformation function after any state change in your store.

Install

yarn add zustand-computed

Usage

The middleware layer takes in your store creation function and a compute function, which transforms your state into a computed state. It does not need to handle merging states.

import computed from 'zustand-computed';

const computeState = (state) => ({
    countSq: state.count ** 2,
})

const useStore = create(
    computed((set) => ({
        count: 1,
        inc: () => set((state) => ({ count: state.count + 1 })),
        dec: () => set((state) => ({ count: state.count - 1 }))
    }), computeState)
)

With types, the previous example would look like this:

import computed from 'zustand-computed';

type Store = {
    count: number,
    inc: () => void,
    dec: () => void
}

type ComputedStore = {
    countSq: number
}

const computeState = (state: Store): ComputedStore => ({
    countSq: state.count ** 2
})

const useStore = create<Store, [["chrisvander/zustand-computed", ComputedStore]]>(
    computed((set) => ({
        count: 1,
        inc: () => set((state) => ({ count: state.count + 1 })),
        dec: () => set((state) => ({ count: state.count - 1 }))
    }), computeState)
)

The store can then be used as normal in a React component or via the Zustand API.

function Counter() {
    const { count, countSq, inc, dec } = useStore()
    return (
        <div>
            <span>{count}</span><br />
            <span>{countSq}</span><br />
            <button onClick={inc}>+1</button>
            <button onClick={dec}>-1</button>
        </div>
    )
}

A fully-featured example can be found under the "example" directory.

Keywords

FAQs

Package last updated on 13 Nov 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc