zustand状态管理器使用汇总

2023-11-30 22:20

本文主要是介绍zustand状态管理器使用汇总,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1. 初步使用介绍

// 1. 安装zustand
npm install zustand// 2. 创建store使用
import { create } from "zustand";
export const useBearStore = create((set) => ({bears: 0, increasePopulation: () => set((state) => ({ bears: state.bears + 1 })), removeAllBears: () => set({ bears: 0 }),
}));// 3. 组件内使用
import {useBearStore} from './store/index.js';function App() {// 不建议的写法:(除非状态都要使用到,否则建议使用下方写法,理由是会一直触发渲染导致性能差)// const {bears, increasePopulation} = useBearStore();// 支持写法const bears = useBearStore(state => state.bears);const increasePopulation = useBearStore(state => state.increasePopulation);const handleClick = () => {increasePopulation();}return (<div className="App">{bears}<button onClick={handleClick}>按钮</button></div>);
}export default App;

2. zustand内get与set使用

// 1. store
import { create } from "zustand";
export const useBearStore = create((set, get) => ({bears: 0,count: 0,increasePopulation: () => set((state) => ({ bears: state.bears + 1 })),increaseCount: () => set((state) => ({ count: state.count + 1 })),removeAllBears: () => set({ bears: 0 }),total: () => {// get()可以获取到state状态里的数据return get().bears + get().count}
}));// 2. 组件使用import { useBearStore } from './store/index.js';function App() {const bears = useBearStore(state => state.bears);const count = useBearStore(state => state.count);// 使用set使bears+1const increasePopulation = useBearStore(state => state.increasePopulation);// 使用set使count+1const increaseCount = useBearStore(state => state.increaseCount);// 使用get获取bears+countconst total = useBearStore(state => state.total);const handleClickBears = () => {increasePopulation();}const handleClickCount = () => {increaseCount();}return (<div className="App"><div>{bears}</div><div>{count}</div><button onClick={handleClickBears}>按钮bears</button><button onClick={handleClickCount}>按钮count</button>{/* 汇总 */}<div>{total()}</div></div>);
}export default App;

3. selector使用

// 1. 创建一个ts文件
import { StoreApi, UseBoundStore } from 'zustand'type WithSelectors<S> = S extends { getState: () => infer T }? S & { use: { [K in keyof T]: () => T[K] } }: neverconst createSelectors = <S extends UseBoundStore<StoreApi<object>>>(_store: S
) => {let store = _store as WithSelectors<typeof _store>store.use = {}for (let k of Object.keys(store.getState())) {;(store.use as any)[k] = () => store((s) => s[k as keyof typeof s])}return store
}export default createSelectors;// 2. store使用
import { create } from "zustand";
import createSelectors from './index.ts';// 在store内使用
export const useBearStore = createSelectors(create((set, get) => ({bears: 0,count: 0,increasePopulation: () => set((state) => ({ bears: state.bears + 1 })),increaseCount: () => set((state) => ({ count: state.count + 1 })),removeAllBears: () => set({ bears: 0 }),total: () => {// get()可以获取到state状态里的数据return get().bears + get().count}
})));// 3. 组件内使用,提高性能
import { useBearStore } from './store/index.js';// count发生改变时这个组件才会渲染, 否则不会, 增加性能
function Child() {const count = useBearStore(state => state.count);return (<div><div>{count}</div><div>{Math.random()}</div></div>)
}// 单独在组件内使用这个selectore
function Some() {const { bears, count } = useBearStore();const increasePopulation = useBearStore.use.increasePopulation();const increaseCount = useBearStore.use.increaseCount();const handleClickBears = () => {increasePopulation();}const handleClickCount = () => {increaseCount();}return (<div className="App"><div>{bears}</div><div>{count}</div><button onClick={handleClickBears}>按钮bears</button><button onClick={handleClickCount}>按钮count</button></div>);
}// 一定要封装独立组件, 否则使用后也会重复渲染
function App() {return (<div className="App"><Some /><Child /></div>);
}export default App;

这篇关于zustand状态管理器使用汇总的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/438762

相关文章

Java function函数式接口的使用方法与实例

《Javafunction函数式接口的使用方法与实例》:本文主要介绍Javafunction函数式接口的使用方法与实例,函数式接口如一支未完成的诗篇,用Lambda表达式作韵脚,将代码的机械美感... 目录引言-当代码遇见诗性一、函数式接口的生物学解构1.1 函数式接口的基因密码1.2 六大核心接口的形态学

使用DeepSeek API 结合VSCode提升开发效率

《使用DeepSeekAPI结合VSCode提升开发效率》:本文主要介绍DeepSeekAPI与VisualStudioCode(VSCode)结合使用,以提升软件开发效率,具有一定的参考价值... 目录引言准备工作安装必要的 VSCode 扩展配置 DeepSeek API1. 创建 API 请求文件2.

使用TomCat,service输出台出现乱码的解决

《使用TomCat,service输出台出现乱码的解决》本文介绍了解决Tomcat服务输出台中文乱码问题的两种方法,第一种方法是修改`logging.properties`文件中的`prefix`和`... 目录使用TomCat,service输出台出现乱码问题1解决方案问题2解决方案总结使用TomCat,

解决IDEA使用springBoot创建项目,lombok标注实体类后编译无报错,但是运行时报错问题

《解决IDEA使用springBoot创建项目,lombok标注实体类后编译无报错,但是运行时报错问题》文章详细描述了在使用lombok的@Data注解标注实体类时遇到编译无误但运行时报错的问题,分析... 目录问题分析问题解决方案步骤一步骤二步骤三总结问题使用lombok注解@Data标注实体类,编译时

Java中使用Java Mail实现邮件服务功能示例

《Java中使用JavaMail实现邮件服务功能示例》:本文主要介绍Java中使用JavaMail实现邮件服务功能的相关资料,文章还提供了一个发送邮件的示例代码,包括创建参数类、邮件类和执行结... 目录前言一、历史背景二编程、pom依赖三、API说明(一)Session (会话)(二)Message编程客

C++中使用vector存储并遍历数据的基本步骤

《C++中使用vector存储并遍历数据的基本步骤》C++标准模板库(STL)提供了多种容器类型,包括顺序容器、关联容器、无序关联容器和容器适配器,每种容器都有其特定的用途和特性,:本文主要介绍C... 目录(1)容器及简要描述‌php顺序容器‌‌关联容器‌‌无序关联容器‌(基于哈希表):‌容器适配器‌:(

使用Python实现高效的端口扫描器

《使用Python实现高效的端口扫描器》在网络安全领域,端口扫描是一项基本而重要的技能,通过端口扫描,可以发现目标主机上开放的服务和端口,这对于安全评估、渗透测试等有着不可忽视的作用,本文将介绍如何使... 目录1. 端口扫描的基本原理2. 使用python实现端口扫描2.1 安装必要的库2.2 编写端口扫

使用Python实现操作mongodb详解

《使用Python实现操作mongodb详解》这篇文章主要为大家详细介绍了使用Python实现操作mongodb的相关知识,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录一、示例二、常用指令三、遇到的问题一、示例from pymongo import MongoClientf

SQL Server使用SELECT INTO实现表备份的代码示例

《SQLServer使用SELECTINTO实现表备份的代码示例》在数据库管理过程中,有时我们需要对表进行备份,以防数据丢失或修改错误,在SQLServer中,可以使用SELECTINT... 在数据库管理过程中,有时我们需要对表进行备份,以防数据丢失或修改错误。在 SQL Server 中,可以使用 SE

使用Python合并 Excel单元格指定行列或单元格范围

《使用Python合并Excel单元格指定行列或单元格范围》合并Excel单元格是Excel数据处理和表格设计中的一项常用操作,本文将介绍如何通过Python合并Excel中的指定行列或单... 目录python Excel库安装Python合并Excel 中的指定行Python合并Excel 中的指定列P