我正在使用Flatlist渲染几个盒子。如果“形状”元素的(属性)“可见”键为假(定义为状态),则该框为空白。 我不知道这样做是否正确。
现在,当我单击包装在touchableOpacity中的框时,我希望将可见值更改为true并在框上显示图标。
我不知道这样做。 我不知道该在状态中定义可见属性还是稍后动态添加它。
这是我的代码
const { width, height } = Dimensions.get('window')
class App extends Component {
state = {
shapes: [
{ id: 1, icon: 'home', color: 'green', visible: false },
{ id: 2, icon: 'creditcard', color: 'red', visible: false },
{ id: 3, icon: 'star', color: 'purple', visible: true },
{ id: 3, icon: 'notification', color: 'blue', visible: false },
]
}
showShapes = () => {
for (let e of this.state.shapes) {
e.visible = true
console.log(e.visible)
}
this.setState({
// what to write here
})
}
renderItems = ({ item }) => {
return (
<TouchableOpacity
activeOpacity={0.6}
onPress={this.showShapes}
style={{ padding: 10, backgroundColor: '#ccc', margin: 15, width: width / 4 }}
>
{item.visible && <Icon
name={item.icon} color={item.color} size={50}
/> }
</TouchableOpacity>
)
}
render() {
return (
<Fragment>
<FlatList
numColumns='2'
data={this.state.shapes}
renderItem={this.renderItems}
keyExtractor={(item) => item.id.toString()}
/>
</Fragment>
)
}
}
希望我很清楚。
答案 0 :(得分:2)
您做对了!在您的状态下定义visible
属性,按如下方式处理点击:
const handleBoxClick = boxId => this.setState(state =>({
shapes : state.shapes.map((x,i) =>{
if(x.id !== boxId) return x
return {...x, visible: !state.shapes[i].visible}
})
}))
现在使用条件渲染来隐藏那些不可见的框:
return <>{box.visible && <Box box={box} />} </>
答案 1 :(得分:0)
首先在 renderItem 中传递索引 像这样
renderItems = ({ item,index }) => {
return (
<TouchableOpacity
activeOpacity={0.6}
onPress={()=>this.showShapes(index)}
style={{ padding: 10, backgroundColor: '#ccc', margin: 15, width: width / 4 }}
>
{item.visible && <Icon
name={item.icon} color={item.color} size={50}
/> }
</TouchableOpacity>
)
}
然后在显示形状中这样做
showShapes = index => {
let shapes = [ ...this.state.shapes ];
this.state.shapes.map((shape,key)=>{
if(shape.id==shapes[index].id){
shapes[key]={...shapes[key], visible: true};
}else{
shapes[key]={...shapes[key], visible: false};
}
})