主题
immer
immer
中间件允许你执行不可变的更新。
¥immer
middleware lets you perform immutable updates.
js
const nextStateCreatorFn = immer(stateCreatorFn)
类型
¥Types
签名
¥Signature
ts
immer<T>(stateCreatorFn: StateCreator<T, [], []>): StateCreator<T, [['zustand/immer', never]], []>
变量
¥Mutator
ts
['zustand/immer', never]
参考
¥Reference
immer(stateCreatorFn)
参数
¥Parameters
stateCreatorFn
:以set
函数、get
函数和store
作为参数的函数。通常,你将返回一个包含要公开的方法的对象。¥
stateCreatorFn
: A function that takesset
function,get
function andstore
as arguments. Usually, you will return an object with the methods you want to expose.
返回
¥Returns
immer
返回状态创建器函数。
¥immer
returns a state creator function.
用法
¥Usage
不使用样板代码更新状态
¥Updating state without boilerplate code
在下一个例子中,我们将更新 person
对象。由于它是一个嵌套对象,我们需要在进行更新之前创建整个对象的副本。
¥In the next example, we're going to update the person
object. Since it's a nested object, we need to create a copy of the entire object before making the update.
ts
import { createStore } from 'zustand/vanilla'
type PersonStoreState = {
person: { firstName: string; lastName: string; email: string }
}
type PersonStoreActions = {
setPerson: (
nextPerson: (
person: PersonStoreState['person'],
) => PersonStoreState['person'] | PersonStoreState['person'],
) => void
}
type PersonStore = PersonStoreState & PersonStoreActions
const personStore = createStore<PersonStore>()((set) => ({
person: {
firstName: 'Barbara',
lastName: 'Hepworth',
email: 'bhepworth@sculpture.com',
},
setPerson: (nextPerson) =>
set((state) => ({
person:
typeof nextPerson === 'function'
? nextPerson(state.person)
: nextPerson,
})),
}))
const $firstNameInput = document.getElementById(
'first-name',
) as HTMLInputElement
const $lastNameInput = document.getElementById('last-name') as HTMLInputElement
const $emailInput = document.getElementById('email') as HTMLInputElement
const $result = document.getElementById('result') as HTMLDivElement
function handleFirstNameChange(event: Event) {
personStore.getState().setPerson((person) => ({
...person,
firstName: (event.target as any).value,
}))
}
function handleLastNameChange(event: Event) {
personStore.getState().setPerson((person) => ({
...person,
lastName: (event.target as any).value,
}))
}
function handleEmailChange(event: Event) {
personStore.getState().setPerson((person) => ({
...person,
email: (event.target as any).value,
}))
}
$firstNameInput.addEventListener('input', handleFirstNameChange)
$lastNameInput.addEventListener('input', handleLastNameChange)
$emailInput.addEventListener('input', handleEmailChange)
const render: Parameters<typeof personStore.subscribe>[0] = (state) => {
$firstNameInput.value = state.person.firstName
$lastNameInput.value = state.person.lastName
$emailInput.value = state.person.email
$result.innerHTML = `${state.person.firstName} ${state.person.lastName} (${state.person.email})`
}
render(personStore.getInitialState(), personStore.getInitialState())
personStore.subscribe(render)
这是 html
代码
¥Here's the html
code
html
<label style="display: block">
First name:
<input id="first-name" />
</label>
<label style="display: block">
Last name:
<input id="last-name" />
</label>
<label style="display: block">
Email:
<input id="email" />
</label>
<p id="result"></p>
为了避免在进行更新之前手动复制整个对象,我们将使用 immer
中间件。
¥To avoid manually copying the entire object before making updates, we'll use the immer
middleware.
ts
import { createStore } from 'zustand/vanilla'
import { immer } from 'zustand/middleware/immer'
type PersonStoreState = {
person: { firstName: string; lastName: string; email: string }
}
type PersonStoreActions = {
setPerson: (
nextPerson: (
person: PersonStoreState['person'],
) => PersonStoreState['person'] | PersonStoreState['person'],
) => void
}
type PersonStore = PersonStoreState & PersonStoreActions
const personStore = createStore<PersonStore>()(
immer((set) => ({
person: {
firstName: 'Barbara',
lastName: 'Hepworth',
email: 'bhepworth@sculpture.com',
},
setPerson: (nextPerson) =>
set((state) => {
state.person = typeof nextPerson ? nextPerson(state.person) : nextPerson
}),
})),
)
const $firstNameInput = document.getElementById(
'first-name',
) as HTMLInputElement
const $lastNameInput = document.getElementById('last-name') as HTMLInputElement
const $emailInput = document.getElementById('email') as HTMLInputElement
const $result = document.getElementById('result') as HTMLDivElement
function handleFirstNameChange(event: Event) {
personStore.getState().setPerson((person) => {
person.firstName = (event.target as any).value
})
}
function handleLastNameChange(event: Event) {
personStore.getState().setPerson((person) => {
person.lastName = (event.target as any).value
})
}
function handleEmailChange(event: Event) {
personStore.getState().setPerson((person) => {
person.email = (event.target as any).value
})
}
$firstNameInput.addEventListener('input', handleFirstNameChange)
$lastNameInput.addEventListener('input', handleLastNameChange)
$emailInput.addEventListener('input', handleEmailChange)
const render: Parameters<typeof personStore.subscribe>[0] = (state) => {
$firstNameInput.value = state.person.firstName
$lastNameInput.value = state.person.lastName
$emailInput.value = state.person.email
$result.innerHTML = `${state.person.firstName} ${state.person.lastName} (${state.person.email})`
}
render(personStore.getInitialState(), personStore.getInitialState())
personStore.subscribe(render)
故障排除
¥Troubleshooting
TBD