Merge pull request #198 from toeverything/feature/fix-backspace

Feature/fix backspace
This commit is contained in:
Qi
2022-08-12 14:43:49 +08:00
committed by GitHub
2 changed files with 13 additions and 8 deletions

View File

@@ -113,13 +113,18 @@ export const TextView = ({
block.id,
'end'
);
const value = [
...preNode.getProperty('text').value,
...block.getProperty('text').value,
];
await preNode.setProperty('text', {
value,
});
if (
block.getProperty('text').value[0] &&
block.getProperty('text').value[0]?.text !== ''
) {
const value = [
...preNode.getProperty('text').value,
...block.getProperty('text').value,
];
await preNode.setProperty('text', {
value,
});
}
await preNode.append(...children);
await block.remove();
editor.suspend(false);

View File

@@ -690,7 +690,7 @@ export class SelectionManager implements VirgoSelection {
this.emit(nodeId, SelectEventTypes.active, this.lastPoint);
// TODO: Optimize the related logic after implementing the scroll bar
setTimeout(() => {
// this._editor.scrollManager.keepBlockInView(node);
this._editor.scrollManager.keepBlockInView(node);
}, this._scrollDelay);
} else {
console.warn('Can not find node by this id');