tiptap/packages/extension-code/index.ts

76 lines
1.4 KiB
TypeScript
Raw Normal View History

2020-04-02 20:34:07 +08:00
import { Mark, markInputRule, markPasteRule, CommandSpec } from '@tiptap/core'
2020-04-02 19:26:56 +08:00
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'
schema(): MarkSpec {
return {
excludes: '_',
parseDOM: [
{ tag: 'code' },
],
toDOM: () => ['code', 0],
}
}
2020-04-02 20:34:07 +08:00
commands(): CommandSpec {
return {
code: (next, { view }) => {
2020-04-11 04:07:27 +08:00
toggleMark(this.type)(view.state, view.dispatch)
2020-04-02 20:34:07 +08:00
next()
},
}
}
2020-04-02 19:26:56 +08:00
keys() {
return {
'Mod-`': () => this.editor.code(),
}
}
inputRules() {
2020-04-13 05:42:51 +08:00
return [
2020-04-02 19:26:56 +08:00
markInputRule(
VerEx()
2020-04-13 05:42:51 +08:00
.add('(?:^|\\s)')
2020-04-02 19:26:56 +08:00
.beginCapture()
2020-04-13 05:42:51 +08:00
.find('`')
2020-04-02 19:26:56 +08:00
.beginCapture()
2020-04-13 05:42:51 +08:00
.somethingBut('`')
2020-04-02 19:26:56 +08:00
.endCapture()
2020-04-13 05:42:51 +08:00
.find('`')
2020-04-02 19:26:56 +08:00
.endCapture()
.endOfLine(),
2020-04-11 04:07:27 +08:00
this.type,
2020-04-13 05:42:51 +08:00
)
]
2020-04-02 19:26:56 +08:00
}
pasteRules() {
2020-04-13 05:42:51 +08:00
return [
2020-04-02 19:26:56 +08:00
markPasteRule(
VerEx()
2020-04-13 05:42:51 +08:00
.add('(?:^|\\s)')
2020-04-02 19:26:56 +08:00
.beginCapture()
2020-04-13 05:42:51 +08:00
.find('`')
2020-04-02 19:26:56 +08:00
.beginCapture()
2020-04-13 05:42:51 +08:00
.somethingBut('`')
2020-04-02 19:26:56 +08:00
.endCapture()
2020-04-13 05:42:51 +08:00
.find('`')
2020-04-02 19:26:56 +08:00
.endCapture(),
2020-04-11 04:07:27 +08:00
this.type,
2020-04-13 05:42:51 +08:00
)
]
2020-04-02 19:26:56 +08:00
}
}