mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-23 17:07:49 +08:00
41 lines
963 B
TypeScript
41 lines
963 B
TypeScript
|
import { MarkType, ResolvedPos } from 'prosemirror-model'
|
||
|
|
||
|
interface Range {
|
||
|
from: number,
|
||
|
to: number,
|
||
|
}
|
||
|
|
||
|
export default function getMarkRange($pos: ResolvedPos, type: MarkType): Range | void {
|
||
|
if (!$pos || !type) {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
const start = $pos.parent.childAfter($pos.parentOffset)
|
||
|
|
||
|
if (!start.node) {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
const link = start.node.marks.find(mark => mark.type === type)
|
||
|
if (!link) {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
let startIndex = $pos.index()
|
||
|
let startPos = $pos.start() + start.offset
|
||
|
let endIndex = startIndex + 1
|
||
|
let endPos = startPos + start.node.nodeSize
|
||
|
|
||
|
while (startIndex > 0 && link.isInSet($pos.parent.child(startIndex - 1).marks)) {
|
||
|
startIndex -= 1
|
||
|
startPos -= $pos.parent.child(startIndex).nodeSize
|
||
|
}
|
||
|
|
||
|
while (endIndex < $pos.parent.childCount && link.isInSet($pos.parent.child(endIndex).marks)) {
|
||
|
endPos += $pos.parent.child(endIndex).nodeSize
|
||
|
endIndex += 1
|
||
|
}
|
||
|
|
||
|
return { from: startPos, to: endPos }
|
||
|
}
|