我正在使用draft.js编辑器,我需要更新装饰器以及它在onChange
内动态渲染的组件的道具。这用标记背景颜色的部分文本。
我几乎可以使这个工作,但有一个奇怪的错误,除其他事项之外,不可能在其中一个装饰组件后立即选择字符。
这是一个重现错误的最小(人工)示例:
import React from 'react';
import { CompositeDecorator, Editor, EditorState } from 'draft-js';
const Marked = ({ children, background }) => <span style={{ background }}>{children}</span>;
class TestEditor extends React.Component {
constructor(props) {
super(props);
this.state = { editorState: EditorState.createEmpty() };
this.handleChange = this.handleChange.bind(this);
}
handleChange(editorState) {
const markers = [{ from: 3, to: 7 }, { from: 12, to: 15 }];
const strategy = (contentBlock, callback) => {
const text = contentBlock.getText();
markers.forEach(({ from, to }) => {
if (text.length >= to) callback(from, to);
});
};
const decorator = new CompositeDecorator([
{ strategy, component: (props) => <Marked {...props} background="#00ff2a1a" /> },
]);
const newEditorState = EditorState.set(editorState, { decorator });
this.setState({ editorState: newEditorState });
}
render() {
const { editorState } = this.state;
return <Editor editorState={editorState} onChange={this.handleChange} />;
}
}
export default TestEditor;
这将是一个文本输入,其中位置3 - 7和12 - 15的文本具有绿色背景(如果存在)。
如果我现在例如写aaabbbbccc
,则无法选择第一个c
。使用鼠标选择它直到我释放鼠标按钮;使用键盘它似乎根本没有被选中(可能是暂时的)。
如果我在handleChange
方法中使用没有新输入的静态组件,它可以正常工作:const decorator = new CompositeDecorator([{ strategy, component: Marked }]);
。但是这不适合我的用例。
有什么建议?
最后我发现我能用草稿的entities
做我需要的东西,可能性能要好得多