我试图创建一个自定义的Gutenberg块,该块将具有多个RichText组件的无序列表。
最终结果将类似于:
<ul>
<li>
<span class="class-one">First item</span>
<span class="class-two">Second item</span>
</li>
</ul>
我一直在玩这个WordPress tutorial
中的食谱卡示例我可以看到RichText组件如何通过多行实现以实现“ li”作为获取列表的标签,但我不知道如何使用带有Rich Rich子组件的多行。
这是我到目前为止所拥有的:
( function( blocks, editor, i18n, element, components, _ ) {
var el = element.createElement;
var RichText = editor.RichText;
var MediaUpload = editor.MediaUpload;
i18n.setLocaleData( window.gutenberg_examples_05.localeData, 'gutenberg-examples' );
blocks.registerBlockType( 'gutenberg-examples/example-05-recipe-card', {
title: i18n.__( 'Example: Recipe Card', 'gutenberg-examples' ),
icon: 'index-card',
category: 'layout',
attributes: {
ingredients: {
type: 'array',
source: 'children',
selector: '.ingredients',
},
ingredientname: {
type: 'array',
source: 'children',
selector: '.ingredientname',
},
},
edit: function( props ) {
var attributes = props.attributes;
return (
el( 'div', { className: props.className },
el( 'h3', {}, i18n.__( 'Ingredients', 'gutenberg-examples' ) ),
el( RichText, {
tagName: 'ul',
multiline: 'li',
value: attributes.ingredients,
className: 'ingredients'
},
el( RichText, {
tagName: 'span',
placeholder: i18n.__( 'ingredient name', 'gutenberg-examples' ),
value: attributes.ingredientname,
onChange: function( value ) {
props.setAttributes( { ingredientname: value } );
},
} ),
)
)
);
},
save: function( props ) {
var attributes = props.attributes;
return (
el( 'div', { className: props.className },
el( 'h3', {}, i18n.__( 'Ingredients', 'gutenberg-examples' ) ),
el( RichText.Content, {
tagName: 'ul',
className: 'ingredients'
},
el( RichText.Content, {
tagName: 'span',
className: 'ingredient-name',
value: attributes.ingredientname
}),
),
)
);
},
} );
} )
我认为问题在于应该将第一个RichText切换为其他内容,但是我不知道将其更改为什么会仍然将所有内容显示为列表。我尝试删除第一个RichText并将其设置为带有'li'标签的'ul',然后编辑器显示了第二个RichText,但未将其显示为列表。
非常感谢您的帮助。
答案 0 :(得分:1)
据我所知,没有像“ 多行”这样的选项可以将RichText扩展到子组件中。现在,您可以做的是在块的开头声明两个额外的属性,然后在编辑函数调用RichText中进行声明。所以这个-
<ul>
<li>
<span class="class-one">First item</span>
<span class="class-two">Second item</span>
</li>
</ul>
成为-
<ul>
<RichText
fontSize={textSize}
tagName="li"
placeholder={ __( 'Nature', 'text-domain' ) }
value={ imgOneTxt }
onChange={ (onChangeImgOneTxt) => setAttributes({ imgOneTxt: onChangeImgOneTxt}) }
style={{ color: textColor, fontSize: textSize }}
isSelected={ isSelected }
keepPlaceholderOnFocus
/>
<RichText
fontSize={textSize}
tagName="li"
placeholder={ __( 'Nature', 'text-domain' ) }
value={ imgOneTxt }
onChange={ (onChangeImgOneTxt) => setAttributes({ imgOneTxt: onChangeImgOneTxt}) }
style={{ color: textColor, fontSize: textSize }}
isSelected={ isSelected }
keepPlaceholderOnFocus
/>
</ul>
我知道,它不遵循DRY规则,但是就古腾堡(Gutenberg)开发而言,这就是我们目前的目标。希望对您有帮助
答案 1 :(得分:0)
也许这不是最新的答案,但对于将面临类似问题的其他人来说。我一直在尝试实现你上面描述的东西,经过几天的迷失,我找到了这个 davidyeiser 的解决方案。我真的推荐这个教程: https://davidyeiser.com/tutorials/wordpress-create-dynamic-gutenberg-block(git 仓库:https://github.com/davidyeiser/detailer)。