fix: 配置组件没有正确同步状态

* 问题出在我应该根据 State 决定组件状态而不是组件状态决定 State
* 踩坑了, 浪费我时间, 唉
This commit is contained in:
CrescentLeaf
2025-10-08 12:24:33 +08:00
parent 38c28c3fb6
commit db43de19c4
5 changed files with 44 additions and 36 deletions

View File

@@ -1,26 +1,26 @@
import React from 'react'
export default class PreferenceStore<T extends object> {
declare value: T
declare setter: React.Dispatch<React.SetStateAction<T>>
declare onUpdate: (value: unknown) => void
declare onUpdate: (value: T) => void
declare state: T
declare setState: React.Dispatch<React.SetStateAction<T>>
constructor() {
const _ = React.useState<T>({} as T)
this.value = _[0]
this.setter = _[1]
const _ = React.useState({} as T)
this.state = _[0]
this.setState = _[1]
}
// 创建一个用于子选项的更新函数
updater(key: string) {
return (value: unknown) => {
const newValue = JSON.parse(JSON.stringify({
...this.value,
createUpdater() {
return (key: string, value: unknown) => {
const newValue = {
...this.state,
[key]: value,
}))
this.setter(newValue)
}
this.setState(newValue)
this.onUpdate?.(newValue)
}
}
setOnUpdate(onUpdate: (value: unknown) => void) {
setOnUpdate(onUpdate: (value: T) => void) {
this.onUpdate = onUpdate
}
}