我正在对Draft.js使用react-draft-wysiwyg包装器。
在页面上,我有多个Editor组件实例。
我对编辑器UI(onChange
事件处理程序)的更新缓慢/缓慢存在问题。
也许这是一些提示,我在控制台[Violation] 'input' handler took <N>msA
中收到了很多警告。
我的设置是:
Im调度操作来处理编辑器状态更改,该操作由redux-saga处理。 Saga将检查是否有新内容并更新商店。
export function* handleOnEditorStateChange({ editorState, nameSpace }) {
const actualEditorState = yield select(selectAllEditorsContent());
const editorIndexToUpdate = actualEditorState.findIndex(
editors => editors.name === nameSpace,
);
const currentContent = actualEditorState[
editorIndexToUpdate
].state.getCurrentContent();
const newContent = editorState.getCurrentContent();
const hasEditorNewContent = newContent !== currentContent;
if (hasEditorNewContent) {
const updatedEditorState = [...actualEditorState];
updatedEditorState[editorIndexToUpdate].state = editorState;
yield put(storeEditorStateAction(updatedEditorState));
}
}
我的redux状态如下:
...
editors: [
{
name: 'editor1',
label: 'Editor 1',
state: {... _immutable - draftjs }
},
{
name: 'editor2',
label: 'Editor 2',
state: {... _immutable - draftjs }
},
]
...
减速器:
...
case STORE_EDITOR_STATE: {
const { content } = action;
return state.set('editors', content);
}
...
答案 0 :(得分:0)
我找到了解决问题的方法。至少有一些走动。
我已经在动作观察器传奇中更改了处理动作的方式。
我没有takaLates
的影响,而是稍稍延迟地更改为throttle
。而且要好得多。