tiptap/packages/extension-code-block/index.ts

45 lines
1.1 KiB
TypeScript
Raw Normal View History

2020-09-22 15:08:08 +08:00
import { Command, Node } from '@tiptap/core'
2020-09-10 21:10:22 +08:00
import { textblockTypeInputRule } from 'prosemirror-inputrules'
2020-09-22 15:08:08 +08:00
export type CodeBlockCommand = () => Command
2020-09-10 21:10:22 +08:00
declare module '@tiptap/core/src/Editor' {
2020-09-22 16:49:38 +08:00
interface Commands {
2020-09-22 15:08:08 +08:00
codeBlock: CodeBlockCommand,
2020-09-10 21:10:22 +08:00
}
}
2020-04-02 14:53:59 +08:00
2020-09-27 02:20:52 +08:00
export const inputRegex = /^```(?<language>[a-z]*)? $/
2020-09-09 05:44:45 +08:00
export default new Node()
2020-09-22 15:08:08 +08:00
.name('code_block')
2020-09-09 05:44:45 +08:00
.schema(() => ({
2020-09-27 02:20:52 +08:00
attrs: {
language: {
default: null,
},
},
2020-09-09 05:44:45 +08:00
content: 'text*',
marks: '',
group: 'block',
code: true,
defining: true,
draggable: false,
parseDOM: [
{ tag: 'pre', preserveWhitespace: 'full' },
],
2020-09-27 02:20:52 +08:00
toDOM: node => ['pre', ['code', { class: node.attrs.language && `language-${node.attrs.language}` }, 0]],
2020-09-09 05:44:45 +08:00
}))
2020-09-22 15:08:08 +08:00
.commands(({ name }) => ({
codeBlock: attrs => ({ commands }) => {
2020-09-25 04:27:17 +08:00
return commands.toggleBlockType(name, 'paragraph', attrs)
2020-09-22 15:08:08 +08:00
},
}))
2020-09-10 21:10:22 +08:00
.keys(({ editor }) => ({
'Shift-Control-\\': () => editor.codeBlock(),
2020-09-10 21:10:22 +08:00
}))
.inputRules(({ type }) => [
2020-09-27 02:20:52 +08:00
textblockTypeInputRule(inputRegex, type, ({ groups }: any) => groups),
2020-09-10 21:10:22 +08:00
])
2020-09-09 05:44:45 +08:00
.create()