mirror of
https://github.com/ueberdosis/tiptap.git
synced 2025-06-07 17:43:49 +08:00
169 lines
3.5 KiB
Vue
169 lines
3.5 KiB
Vue
<template>
|
||
<div v-if="editor" class="container">
|
||
<div class="control-group">
|
||
<div class="button-">
|
||
<button @click="editor.chain().focus().toggleCodeBlock().run()" :class="{ 'is-active': editor.isActive('codeBlock') }">
|
||
Toggle code block
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<editor-content :editor="editor" />
|
||
</template>
|
||
|
||
<script>
|
||
import CodeBlockLowlight from '@tiptap/extension-code-block-lowlight'
|
||
import Document from '@tiptap/extension-document'
|
||
import Paragraph from '@tiptap/extension-paragraph'
|
||
import Text from '@tiptap/extension-text'
|
||
import { Editor, EditorContent, VueNodeViewRenderer } from '@tiptap/vue-3'
|
||
import css from 'highlight.js/lib/languages/css'
|
||
import js from 'highlight.js/lib/languages/javascript'
|
||
import ts from 'highlight.js/lib/languages/typescript'
|
||
import html from 'highlight.js/lib/languages/xml'
|
||
// load all highlight.js languages
|
||
import { lowlight } from 'lowlight'
|
||
|
||
import CodeBlockComponent from './CodeBlockComponent.vue'
|
||
|
||
lowlight.registerLanguage('html', html)
|
||
lowlight.registerLanguage('css', css)
|
||
lowlight.registerLanguage('js', js)
|
||
lowlight.registerLanguage('ts', ts)
|
||
|
||
// load specific languages only
|
||
// import { lowlight } from 'lowlight/lib/core'
|
||
// import javascript from 'highlight.js/lib/languages/javascript'
|
||
// lowlight.registerLanguage('javascript', javascript)
|
||
|
||
export default {
|
||
components: {
|
||
EditorContent,
|
||
},
|
||
|
||
data() {
|
||
return {
|
||
editor: null,
|
||
}
|
||
},
|
||
|
||
mounted() {
|
||
this.editor = new Editor({
|
||
extensions: [
|
||
Document,
|
||
Paragraph,
|
||
Text,
|
||
CodeBlockLowlight
|
||
.extend({
|
||
addNodeView() {
|
||
return VueNodeViewRenderer(CodeBlockComponent)
|
||
},
|
||
})
|
||
.configure({ lowlight }),
|
||
],
|
||
content: `
|
||
<p>
|
||
That’s a boring paragraph followed by a fenced code block:
|
||
</p>
|
||
<pre><code class="language-javascript">for (var i=1; i <= 20; i++)
|
||
{
|
||
if (i % 15 == 0)
|
||
console.log("FizzBuzz");
|
||
else if (i % 3 == 0)
|
||
console.log("Fizz");
|
||
else if (i % 5 == 0)
|
||
console.log("Buzz");
|
||
else
|
||
console.log(i);
|
||
}</code></pre>
|
||
<p>
|
||
Press Command/Ctrl + Enter to leave the fenced code block and continue typing in boring paragraphs.
|
||
</p>
|
||
`,
|
||
})
|
||
},
|
||
|
||
beforeUnmount() {
|
||
this.editor.destroy()
|
||
},
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
/* Basic editor styles */
|
||
.tiptap {
|
||
:first-child {
|
||
margin-top: 0;
|
||
}
|
||
|
||
pre {
|
||
background: var(--black);
|
||
border-radius: 0.5rem;
|
||
color: var(--white);
|
||
font-family: 'JetBrainsMono', monospace;
|
||
margin: 1.5rem 0;
|
||
padding: 0.75rem 1rem;
|
||
|
||
code {
|
||
background: none;
|
||
color: inherit;
|
||
font-size: 0.8rem;
|
||
padding: 0;
|
||
}
|
||
|
||
/* Code styling */
|
||
.hljs-comment,
|
||
.hljs-quote {
|
||
color: #616161;
|
||
}
|
||
|
||
.hljs-variable,
|
||
.hljs-template-variable,
|
||
.hljs-attribute,
|
||
.hljs-tag,
|
||
.hljs-name,
|
||
.hljs-regexp,
|
||
.hljs-link,
|
||
.hljs-name,
|
||
.hljs-selector-id,
|
||
.hljs-selector-class {
|
||
color: #f98181;
|
||
}
|
||
|
||
.hljs-number,
|
||
.hljs-meta,
|
||
.hljs-built_in,
|
||
.hljs-builtin-name,
|
||
.hljs-literal,
|
||
.hljs-type,
|
||
.hljs-params {
|
||
color: #fbbc88;
|
||
}
|
||
|
||
.hljs-string,
|
||
.hljs-symbol,
|
||
.hljs-bullet {
|
||
color: #b9f18d;
|
||
}
|
||
|
||
.hljs-title,
|
||
.hljs-section {
|
||
color: #faf594;
|
||
}
|
||
|
||
.hljs-keyword,
|
||
.hljs-selector-tag {
|
||
color: #70cff8;
|
||
}
|
||
|
||
.hljs-emphasis {
|
||
font-style: italic;
|
||
}
|
||
|
||
.hljs-strong {
|
||
font-weight: 700;
|
||
}
|
||
}
|
||
}
|
||
</style>
|