mirror of
https://github.com/ueberdosis/tiptap.git
synced 2025-01-04 17:07:50 +08:00
46 lines
1.1 KiB
TypeScript
46 lines
1.1 KiB
TypeScript
import { MarkType } from 'prosemirror-model'
|
|
import { Command } from '../Editor'
|
|
import { createExtension } from '../Extension'
|
|
import getMarkType from '../utils/getMarkType'
|
|
import getMarkRange from '../utils/getMarkRange'
|
|
|
|
export const UpdateMark = createExtension({
|
|
addCommands() {
|
|
return {
|
|
updateMark: (typeOrName: string | MarkType, attrs: {}): Command => ({ tr, state, dispatch }) => {
|
|
const { selection, doc } = tr
|
|
let { from, to } = selection
|
|
const { $from, empty } = selection
|
|
const type = getMarkType(typeOrName, state.schema)
|
|
|
|
if (empty) {
|
|
const range = getMarkRange($from, type)
|
|
|
|
if (range) {
|
|
from = range.from
|
|
to = range.to
|
|
}
|
|
}
|
|
|
|
const hasMark = doc.rangeHasMark(from, to, type)
|
|
|
|
if (hasMark && dispatch) {
|
|
tr.removeMark(from, to, type)
|
|
}
|
|
|
|
if (dispatch) {
|
|
tr.addMark(from, to, type.create(attrs))
|
|
}
|
|
|
|
return true
|
|
},
|
|
}
|
|
},
|
|
})
|
|
|
|
declare module '../Editor' {
|
|
interface AllExtensions {
|
|
UpdateMark: typeof UpdateMark,
|
|
}
|
|
}
|