mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-21 15:28:09 +08:00
105 lines
2.2 KiB
TypeScript
105 lines
2.2 KiB
TypeScript
|
import { Mark, markInputRule, markPasteRule } from '@tiptap/core'
|
||
|
import { toggleMark } from 'prosemirror-commands'
|
||
|
import { MarkSpec } from 'prosemirror-model'
|
||
|
import VerEx from 'verbal-expressions'
|
||
|
|
||
|
declare module '@tiptap/core/src/Editor' {
|
||
|
interface Editor {
|
||
|
code(): Editor,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default class Code extends Mark {
|
||
|
|
||
|
name = 'code'
|
||
|
|
||
|
created() {
|
||
|
this.editor.registerCommand('code', (next, { view }) => {
|
||
|
toggleMark(this.schemaType)(view.state, view.dispatch)
|
||
|
next()
|
||
|
})
|
||
|
}
|
||
|
|
||
|
schema(): MarkSpec {
|
||
|
return {
|
||
|
excludes: '_',
|
||
|
parseDOM: [
|
||
|
{ tag: 'code' },
|
||
|
],
|
||
|
toDOM: () => ['code', 0],
|
||
|
}
|
||
|
}
|
||
|
|
||
|
keys() {
|
||
|
return {
|
||
|
'Mod-`': () => this.editor.code(),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
inputRules() {
|
||
|
return ['`'].map(character => ([
|
||
|
// match start of line
|
||
|
markInputRule(
|
||
|
VerEx()
|
||
|
.startOfLine()
|
||
|
.beginCapture()
|
||
|
.find(character)
|
||
|
.beginCapture()
|
||
|
.somethingBut(character)
|
||
|
.endCapture()
|
||
|
.find(character)
|
||
|
.endCapture()
|
||
|
.endOfLine(),
|
||
|
this.schemaType,
|
||
|
),
|
||
|
// match before whitespace
|
||
|
markInputRule(
|
||
|
VerEx()
|
||
|
.whitespace()
|
||
|
.beginCapture()
|
||
|
.find(character)
|
||
|
.beginCapture()
|
||
|
.somethingBut(character)
|
||
|
.endCapture()
|
||
|
.find(character)
|
||
|
.endCapture()
|
||
|
.endOfLine(),
|
||
|
this.schemaType,
|
||
|
),
|
||
|
]))
|
||
|
.flat(1)
|
||
|
}
|
||
|
|
||
|
pasteRules() {
|
||
|
return ['`'].map(character => ([
|
||
|
// match start of line
|
||
|
markPasteRule(
|
||
|
VerEx()
|
||
|
.startOfLine()
|
||
|
.beginCapture()
|
||
|
.find(character)
|
||
|
.beginCapture()
|
||
|
.somethingBut(character)
|
||
|
.endCapture()
|
||
|
.find(character)
|
||
|
.endCapture(),
|
||
|
this.schemaType,
|
||
|
),
|
||
|
// match before whitespace
|
||
|
markPasteRule(
|
||
|
VerEx()
|
||
|
.whitespace()
|
||
|
.beginCapture()
|
||
|
.find(character)
|
||
|
.beginCapture()
|
||
|
.somethingBut(character)
|
||
|
.endCapture()
|
||
|
.find(character)
|
||
|
.endCapture(),
|
||
|
this.schemaType,
|
||
|
),
|
||
|
]))
|
||
|
.flat(1)
|
||
|
}
|
||
|
|
||
|
}
|