我有一个反应应用程序并使用 DraftJs。
在列表页面上,我的 ContentCard 组件使用来自 draft-js 的编辑器将 DraftJs 内容呈现为只读。
<Editor readOnly={true} editorState={contentState} />
我想将 contentState 的简短版本显示为简短描述,列表页面最多 400 个字符。并在内容详细信息页面上完整的 contentState。
我使用了这种截断方法,但它只修剪文本。在这里我得到块,然后是文本。但是我怎样才能得到有字符限制的块。
例如; 第一个块包含 820 个具有所有不同样式词的字符。如何获得包含所有样式信息的前 400 个字符。我的意思是 400 个字符的块。
truncate = (editorState, charCount) => {
const contentState = editorState.getCurrentContent();
const blocks = contentState.getBlocksAsArray();
let index = 0;
let currentLength = 0;
let isTruncated = false;
const truncatedBlocks = [];
while (!isTruncated && blocks[index]) {
const block = blocks[index];
const length = block.getLength();
if (currentLength + length > charCount) {
isTruncated = true;
const truncatedText = block
.getText()
.slice(0, charCount - currentLength);
const state = ContentState.createFromText(`${truncatedText}...`);
truncatedBlocks.push(state.getFirstBlock());
} else {
truncatedBlocks.push(block);
}
currentLength += length + 1;
index++;
}
if (isTruncated) {
const state = ContentState.createFromBlockArray(truncatedBlocks);
return EditorState.createWithContent(state);
}
return editorState;
};
我想用粗体、斜体样式、链接和 opher 实体等显示 400 个字符。