fix(markdown-widget): apply list item style on each block in a selection (#5676)
This commit is contained in:
parent
d930fb422a
commit
04e53054ce
@ -164,6 +164,46 @@ describe('Markdown widget', () => {
|
|||||||
`);
|
`);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('wrap each bottom-most block in a selection with a list item block', () => {
|
||||||
|
cy.focused()
|
||||||
|
.type('foo')
|
||||||
|
.enter()
|
||||||
|
.type('bar')
|
||||||
|
.enter()
|
||||||
|
.type('baz')
|
||||||
|
.setSelection('foo', 'baz')
|
||||||
|
.clickUnorderedListButton()
|
||||||
|
.confirmMarkdownEditorContent(`
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<p>foo</p>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<p>bar</p>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<p>baz</p>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
`)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('unwraps list item block from each selected list item and unwraps all of them from the outer list block', () => {
|
||||||
|
cy.clickUnorderedListButton()
|
||||||
|
.type('foo')
|
||||||
|
.enter()
|
||||||
|
.type('bar')
|
||||||
|
.enter()
|
||||||
|
.type('baz')
|
||||||
|
.setSelection('foo', 'baz')
|
||||||
|
.clickUnorderedListButton()
|
||||||
|
.confirmMarkdownEditorContent(`
|
||||||
|
<p>foo</p>
|
||||||
|
<p>bar</p>
|
||||||
|
<p>baz</p>
|
||||||
|
`)
|
||||||
|
})
|
||||||
|
|
||||||
it('combines adjacent same-typed lists, not differently typed lists', () => {
|
it('combines adjacent same-typed lists, not differently typed lists', () => {
|
||||||
cy.focused()
|
cy.focused()
|
||||||
.type('foo')
|
.type('foo')
|
||||||
@ -321,6 +361,8 @@ describe('Markdown widget', () => {
|
|||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<p>bar</p>
|
<p>bar</p>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
<p>baz</p>
|
<p>baz</p>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -334,14 +376,12 @@ describe('Markdown widget', () => {
|
|||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<p>bar</p>
|
<p>bar</p>
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
<p>baz</p>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
<p>baz</p>
|
||||||
`)
|
`)
|
||||||
|
.clickUnorderedListButton()
|
||||||
|
.tabkey()
|
||||||
.setCursorAfter('baz')
|
.setCursorAfter('baz')
|
||||||
.enter()
|
.enter()
|
||||||
.tabkey()
|
.tabkey()
|
||||||
|
@ -152,7 +152,7 @@ function ListPlugin({ defaultType, unorderedListType, orderedListType }) {
|
|||||||
if (!LIST_TYPES.includes(type)) {
|
if (!LIST_TYPES.includes(type)) {
|
||||||
throw Error(`${type} is not a valid list type, must be one of: ${LIST_TYPES}`);
|
throw Error(`${type} is not a valid list type, must be one of: ${LIST_TYPES}`);
|
||||||
}
|
}
|
||||||
const { startBlock } = editor.value;
|
const { startBlock, blocks } = editor.value;
|
||||||
const target = editor.getBlockContainer();
|
const target = editor.getBlockContainer();
|
||||||
|
|
||||||
switch (get(target, 'type')) {
|
switch (get(target, 'type')) {
|
||||||
@ -191,7 +191,18 @@ function ListPlugin({ defaultType, unorderedListType, orderedListType }) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default: {
|
default: {
|
||||||
editor.wrapInList(type);
|
if (blocks.size > 1) {
|
||||||
|
const listItems = blocks.map(block =>
|
||||||
|
Block.create({ type: 'list-item', nodes: [block] }),
|
||||||
|
);
|
||||||
|
const listBlock = Block.create({ type, nodes: listItems });
|
||||||
|
editor
|
||||||
|
.delete()
|
||||||
|
.replaceNodeByKey(startBlock.key, listBlock)
|
||||||
|
.moveToRangeOfNode(listBlock);
|
||||||
|
} else {
|
||||||
|
editor.wrapInList(type);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user