BlockNote icon indicating copy to clipboard operation
BlockNote copied to clipboard

Bug: TipTap's `liftListItem` causing error in block key handlers

Open matthewlipski opened this issue 3 years ago • 3 comments

For this particular nesting pattern:

block1
|  block2
|  |  block3
|  |  |  block4
|  block5

With the cursor at the start of block2, attempting to un-indent the block using Backspace or Shift+Tab will result in the following error: Uncaught TransformError: Invalid content for node block. This seems to be an issue with TipTap's liftListItem function, which is used in both key handlers. There are definitely other situations where this happens, the example above is just one case.

It's probably worth mentioning this issue was present before PR #64, so it's almost certainly something going wrong within liftListItem.

matthewlipski avatar Dec 09 '22 18:12 matthewlipski

The issue here is that liftListItem attempts to create a block with blockContent followed by two blockGroups. I am experimenting with changing the block schema to allow "blockContent blockGroup*" instead of "blockContent blockGroup?". Can you see any reason that this would be a bad idea to fix this issue? The more straightforward alternative is to collapse the nested blockGroups into one blockGroup within a custom liftListItem.

abrgr avatar Feb 23 '23 16:02 abrgr

@abrgr Hey! did you get chance to work on this issue? or is there any quick workaround for it?

avipl avatar Feb 27 '24 03:02 avipl

Wanted to fix this in a bug fix release recently but couldn't get it done in time, see #797

matthewlipski avatar Jun 11 '24 10:06 matthewlipski