我正在研究Gutenberg侧边栏插件,该插件会进行一些文本分析,因此需要在段落块中注释文本。这是比较容易的部分,可以使用Annotations API通过对每个块进行如下迭代来实现:
wp.data.dispatch( 'core/annotations' ).__experimentalAddAnnotation( {
source: "my-annotations-plugin",
blockClientId: wp.data.select( 'core/editor' ).getBlockOrder()[0],
richTextIdentifier: "content",
range: {
start: 50,
end: 100,
},
} );
现在,我面临的挑战是保留这些注释(因为这是插件的要求)。我发现Annotations API在内部使用applyFormat method of @wordpress/rich-text包,但无法弄清楚如何直接使用applyFormat。该文档不足,缺少代码示例。
如果您使用过此方法,则可以使用示例工作代码(ES5或ES6)以正确的方式使用applyFormat。
答案 0 :(得分:0)
我终于明白了。如果有人需要这样做,只需将其发布在此处,因为Gutenberg文档缺少代码示例。
参考下面的代码,blockIndex
是您要处理的块; startIndex
和endIndex
是要在块上下文中进行注释的范围:
// Get latest modified content of the block
let html = wp.data.select( "core/editor" ).getBlocks()[blockIndex].attributes.content;
// Get uuid of the block
let blockUid = wp.data.select( "core/editor" ).getBlocks()[blockIndex].clientId;
// Create a RichText value from HTML string of block content
let value = wp.richText.create({
html
});
// Apply a format object to a Rich Text value from the given startIndex to the given endIndex
value = wp.richText.applyFormat(value, { type: 'strong' }, startIndex, endIndex);
// Update the block with new content
wp.data.dispatch( 'core/editor' ).updateBlock( blockUid, {
attributes: {
content: wp.richText.toHTMLString({
value
})
}
} );