34 lines
683 B
TypeScript
34 lines
683 B
TypeScript
import { Command, RawCommands } from '../types'
|
|
|
|
declare module '@tiptap/core' {
|
|
interface Commands {
|
|
unsetAllMarks: {
|
|
/**
|
|
* Remove all marks in the current selection.
|
|
*/
|
|
unsetAllMarks: () => Command,
|
|
}
|
|
}
|
|
}
|
|
|
|
export const unsetAllMarks: RawCommands['unsetAllMarks'] = () => ({ tr, state, dispatch }) => {
|
|
const { selection } = tr
|
|
const { empty, ranges } = selection
|
|
|
|
if (empty) {
|
|
return true
|
|
}
|
|
|
|
if (dispatch) {
|
|
Object
|
|
.entries(state.schema.marks)
|
|
.forEach(([, mark]) => {
|
|
ranges.forEach(range => {
|
|
tr.removeMark(range.$from.pos, range.$to.pos, mark as any)
|
|
})
|
|
})
|
|
}
|
|
|
|
return true
|
|
}
|