gpt4 book ai didi

javascript - 在 React Context 中更新嵌套状态的最佳方法

转载 作者:行者123 更新时间:2023-12-02 23:47:18 26 4
gpt4 key购买 nike

我在 React 识别嵌套状态更新时遇到问题。我已通读 excellent responses here但仍有疑问。

我可以确认状态更改正在我的组件中进行并被识别。我唯一没有看到的是 React 更新树,我读过这通常意味着 React 无法识别我的状态更新(只查找浅副本)。但是,React 确实更新了树足以触发我的消费者中的 console.log() 更新。

也许我没有在正确的位置绑定(bind)某些东西?我的消费者也很热情,但除此之外还是很努力的。也开放重构选项。

过滤上下文:

import React from 'react';

export const FilterContext = React.createContext();

class FilterProvider extends React.Component {
constructor(props) {
super(props);

this.toggleEuphoric = () => {
this.setState(prevState => ({
...prevState,
emotions: {
...prevState.emotions,
anxious: false,
aroused: false,
calm: false,
cerebral: false,
creative: false,
energetic: false,
euphoric: true,
focused: false,
giggly: false,
happy: false,
hungry: false,
meditative: false,
mellow: false,
noemotion: false,
relaxed: false,
sleepy: false,
talkative: false,
tingly: false,
uplifted: false,
}
}))
},

this.state = {
emotions: {
anxious: null,
aroused: null,
calm: null,
cerebral: null,
creative: null,
energetic: null,
euphoric: null,
focused: null,
giggly: null,
happy: null,
hungry: null,
meditative: null,
mellow: null,
noemotion: null,
relaxed: null,
sleepy: null,
talkative: null,
tingly: null,
uplifted: null,
},

toggleEuphoric: this.toggleEuphoric,
}
}

render() {
return (
<FilterContext.Provider value={ this.state }>
{ this.props.children }
</FilterContext.Provider>
)
}
}

export default FilterProvider;

过滤消费者:

<FilterContext.Consumer>
{ filterToggle => (
// Check the emotions part of the FilterContext state object
// If all options are null, it means no interactions have taken place
// So we show all results using .map() over the pageContext.productData array coming out of gatsby-node.js
Object.values(filterToggle.emotions).every(item => item === null) ? (
this.props.pageContext.productData.map( (product) => {
return <ProductListItem
desc={ product.shortDescription }
handle={ product.handle }
image={ product.image }
key={ product.id }
productType={ product.productType }
strain={ product.strain }
tac={ product.tac }
tags={ product.tags }
title={ product.title }
/>
})
) : (this.props.pageContext.productData.map( product => {
emotion = Object.keys(filterToggle.emotions).find(key => filterToggle.emotions[key])
return product.tags.forEach( (tag) => {
tag.toLowerCase() === emotion &&
console.log(this),
<ProductListItem
desc={ product.shortDescription }
handle={ product.handle }
image={ product.image }
key={ product.id }
productType={ product.productType }
strain={ product.strain }
tac={ product.tac }
tags={ product.tags }
title={ product.title }
/>
}
)
}))
)}
</FilterContext.Consumer>

最佳答案

状态更新不是问题 - 状态正在更新,如问题中所示。我的问题出在我的提供程序中,我之前尝试在 .map() 数组的 return 上执行 forEach()

突破有两个方面:发现 .includes() 方法是第一部分。在我的问题中,处理 .forEach() 内部的条件是不可能的(也可能是为什么 DOM 中没有显示任何内容)。 .includes() 本质上是隐藏的条件语句(该数组是否包含 X 中的任何一个?),因此在 .filter()< 内部使用它 实现了同样的效果。

第二个突破是将数组方法链接在一起(请参阅此处 gomakethings ),特别是 .filter().map()。我没有意识到 .filter() 不会将数组返回到 DOM,因此我需要将 .map() 链接到它以显示结果。

我的新消费者,有很多评论:

<FilterContext.Consumer>
{ filterToggle => (
console.log( ),

/**
* ==================
* No filters active
* ==================
* filterToggle gives us access to the context state object in FilterContext
* filterToggle.emotion is a nested object inside of state, which is bad practice but we need it
* Our filters have three states: null (initial), true if active, false when others are active
* This first line of code iterated through the filterToggle.emotions with Object.values
* .every() takes each value and looks to make sure all of them are null
* Using a ternary, if all emotions are null, we know to load all product objects into the DOM
* We pass them all down to ProductListItem component with a .map on productData coming out of gatsby-node.js
*
* ==================
* Filters active
* ==================
* If all the filterEmotions aren't null, that means some filter has been engaged
* .filter() is then used to filter down the list of products
* It's basically returning an array after checking a condition
* In our case, we want to see if the product.tags part of productData contains the active filter
* But how? Well, each filter has a key with it's name (like anxious, euphoric, etc)
* So we can run Object.keys(filterToggle.emotions) to get all the keys
* Then we run .find() over the keys, basically looking for the true one, which means that filter is engaged
* If that whole mess is true, we know the active filter and the current product in the array match
* That means the filter has found the right item and we want to display it
* To do the display, we have to pass that array over to a .map()
* .map() returns the filteredProducts straight into ProductListItem, iterating through each one
*/
Object.values(filterToggle.emotions).every(item => item === null) ? (
this.props.pageContext.productData.map( (product) => {
return <ProductListItem
desc={ product.shortDescription }
handle={ product.handle }
image={ product.image }
key={ product.id }
productType={ product.productType }
strain={ product.strain }
tac={ product.tac }
tags={ product.tags }
title={ product.title }
/>
})
) : this.props.pageContext.productData.filter( (product) => {
return product.tags.includes(
Object.keys( filterToggle.emotions )
.find(key => filterToggle.emotions[key])) === true
}).map( (filteredProduct) => {
return <ProductListItem
desc={ filteredProduct.shortDescription }
handle={ filteredProduct.handle }
image={ filteredProduct.image }
key={ filteredProduct.id }
productType={ filteredProduct.productType }
strain={ filteredProduct.strain }
tac={ filteredProduct.tac }
tags={ filteredProduct.tags }
title={ filteredProduct.title }
/>
})
)}
</FilterContext.Consumer>

关于javascript - 在 React Context 中更新嵌套状态的最佳方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55803922/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com