All files / roosterjs-content-model-plugins/lib/autoFormat/link unlink.ts

100% Statements 8/8
83.33% Branches 5/6
100% Functions 2/2
100% Lines 8/8

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 191x             1x 5x 4x 2x 2x   2x   2x      
import { formatTextSegmentBeforeSelectionMarker } from 'roosterjs-content-model-api';
 
import type { IEditor } from 'roosterjs-content-model-types';
 
/**
 * @internal
 */
export function unlink(editor: IEditor, rawEvent: KeyboardEvent) {
    formatTextSegmentBeforeSelectionMarker(editor, (_model, linkSegment, _paragraph) => {
        if (linkSegment?.link) {
            linkSegment.link = undefined;
            rawEvent.preventDefault();
 
            return true;
        }
        return false;
    });
}