我正在创建fixed-data-table-2
(npm)的实现,其中编辑按钮将单元格更改为输入,可以编辑然后保存(发布)。
但是有一个重大问题......
输入速度太慢,因为我每次在单元格上触发onChange
时都会更新整个数组(状态)。
事件处理程序(表)
import reactUpdate from "react/lib/update";
onChangeEditableCell(field, rowIndex, newValue) {
const data = reactUpdate(this.state.data, {[rowIndex]: {[field]: {$set: newValue}}})
this.setState({data : data});
}
事件处理程序(单元格)
onChange(e) {
e.preventDefault();
const newValue = e.target.value;
this.props.onHandleInput(this.props.field, this.props.rowIndex, newValue);
}
render() {
const {rowIndex, field, data, editMode, onHandleInput, ...props} = this.props;
return (
<Cell {...props}>
{editMode ? <input onChange={this.onChange} className="text-cell-edit" type="text" value={this.getCell()} /> : data[rowIndex][field]}
</Cell>
);
}
这显然是一个坏主意......我怎样才能达到同样的效果呢?
注意
onHandleInput
(单元格的道具)是onChangeEditableCell
(表的函数)
PS
我需要data
数组在用户点击Save
时发布整个对象
答案 0 :(得分:1)
在这种情况下我做的是让单元格有自己的状态,每次按键都会更新。然后使用onblur
事件更新表级状态,该事件在输入失去焦点后触发。
在我看来,个人投入是向上拉国家的一般做法的一个很好的例外。
答案 1 :(得分:0)
尝试添加一些超时:
onChange(e) {
e.preventDefault();
const newValue = e.target.value;
if (this.timeout) {
clearTimeout(this.timeout);
this.timeout = 0;
}
this.timeout = setTimeout(()=> {
this.props.onHandleInput(this.props.field, this.props.rowIndex, newValue);
}, 1000);
}