tiptap/packages/extension-italic/index.ts

108 lines
2.2 KiB
TypeScript
Raw Normal View History

2020-04-02 20:34:07 +08:00
import { Mark, markInputRule, markPasteRule, CommandSpec } from '@tiptap/core'
2020-03-31 06:07:12 +08:00
import { toggleMark } from 'prosemirror-commands'
2020-04-01 04:57:39 +08:00
import { MarkSpec } from 'prosemirror-model'
2020-04-02 18:41:52 +08:00
import VerEx from 'verbal-expressions'
2020-03-31 06:07:12 +08:00
2020-04-01 04:17:54 +08:00
declare module '@tiptap/core/src/Editor' {
interface Editor {
italic(): Editor,
}
}
2020-03-31 06:07:12 +08:00
export default class Italic extends Mark {
name = 'italic'
2020-04-01 04:57:39 +08:00
schema(): MarkSpec {
2020-03-31 06:07:12 +08:00
return {
parseDOM: [
{ tag: 'i' },
{ tag: 'em' },
{ style: 'font-style=italic' },
],
toDOM: () => ['em', 0],
}
}
2020-04-02 20:34:07 +08:00
commands(): CommandSpec {
return {
italic: (next, { view }) => {
toggleMark(this.schemaType)(view.state, view.dispatch)
next()
},
}
}
2020-04-01 04:17:54 +08:00
keys() {
return {
'Mod-i': () => this.editor.italic(),
}
}
2020-04-02 14:53:59 +08:00
inputRules() {
2020-04-02 18:41:52 +08:00
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)
2020-04-02 14:53:59 +08:00
}
pasteRules() {
2020-04-02 18:41:52 +08:00
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)
2020-04-02 14:53:59 +08:00
}
2020-03-31 06:07:12 +08:00
}