let app = new Vue({ el: '#app', data: function () { let d = { aboutOutput: '', output: '', source: '', editorThemes: [ { label: 'base16-light', value: 'base16-light' }, { label: 'duotone-light', value: 'duotone-light' }, { label: 'monokai', value: 'monokai' } ], editor: null, builtinFonts: [ { label: '无衬线', value: "-apple-system-font,BlinkMacSystemFont, Helvetica Neue, PingFang SC, Hiragino Sans GB , Microsoft YaHei UI , Microsoft YaHei ,Arial,sans-serif" }, { label: '衬线', value: "Optima-Regular, Optima, PingFangSC-light, PingFangTC-light, 'PingFang SC', Cambria, Cochin, Georgia, Times, 'Times New Roman', serif" } ], sizeOption: [ { label: '14px', value: '14px', desc: '稍小' }, { label: '15px', value: '15px', desc: '默认' }, { label: '16px', value: '16px', desc: '稍大' }, { label: '17px', value: '17px', desc: '很大' }, ], themeOption: [ { label: 'default', value: 'default', author: '张凯强' }, { label: 'lyric', value: 'lyric', author: 'Lyric' }, { label: 'lupeng', value: 'lupeng', author: '鲁鹏' } ], styleThemes: { default: defaultTheme, lyric: lyricTheme, lupeng: lupengTheme }, aboutDialogVisible: false }; d.currentEditorTheme = d.editorThemes[0].value; d.currentFont = d.builtinFonts[0].value; d.currentSize = d.sizeOption[1].value; d.currentTheme = d.themeOption[0].value; return d; }, mounted() { let self = this; this.editor = CodeMirror.fromTextArea( document.getElementById('editor'), { lineNumbers: false, lineWrapping: true, styleActiveLine: true, theme: this.currentEditorTheme, mode: 'text/x-markdown', } ); this.editor.on("change", function (cm, change) { self.refresh(); self.saveEditorContent(); }); this.wxRenderer = new WxRenderer({ theme: this.styleThemes.default, fonts: this.currentFont, size: this.currentSize }); // 如果有编辑内容被保存则读取,否则加载默认文档 if (localStorage.getItem("__editor_content")) { this.editor.setValue(localStorage.getItem("__editor_content")); } else { axios({ method: 'get', url: './assets/default-content.md', }).then(function (resp) { self.editor.setValue(resp.data) }) } }, methods: { renderWeChat: function (source) { let output = marked(source, { renderer: this.wxRenderer.getRenderer() }); if (this.wxRenderer.hasFootnotes()) { // 去除第一行的 margin-top output = output.replace(/(style=".*?)"/, '$1;margin-top: 0"'); // 引用注脚 output += this.wxRenderer.buildFootnotes(); // 附加的一些 style output += this.wxRenderer.buildAddition(); } return output }, editorThemeChanged: function (editorTheme) { this.editor.setOption('theme', editorTheme) }, fontChanged: function (fonts) { this.wxRenderer.setOptions({ fonts: fonts }); this.refresh() }, sizeChanged: function (size) { this.wxRenderer.setOptions({ size: size }); this.refresh() }, themeChanged: function (themeName) { let themeObject = this.styleThemes[themeName]; this.wxRenderer.setOptions({ theme: themeObject }); this.refresh() }, // 刷新右侧预览 refresh: function () { this.output = this.renderWeChat(this.editor.getValue(0)) }, // 将左侧编辑器内容保存到 LocalStorage saveEditorContent: function () { let content = this.editor.getValue(0); if (content){ localStorage.setItem("__editor_content", content); } else { localStorage.removeItem("__editor_content"); } }, copy: function () { let clipboardDiv = document.getElementById('output'); clipboardDiv.focus(); window.getSelection().removeAllRanges(); let range = document.createRange(); range.setStartBefore(clipboardDiv.firstChild); range.setEndAfter(clipboardDiv.lastChild); window.getSelection().addRange(range); try { if (document.execCommand('copy')) { this.$message({ message: '已复制到剪贴板', type: 'success' }) } else { this.$message({ message: '未能复制到剪贴板,请全选后右键复制', type: 'warning' }) } } catch (err) { this.$message({ message: '未能复制到剪贴板,请全选后右键复制', type: 'warning' }) } }, openWindow: function (url) { window.open(url); } }, updated: function () { this.$nextTick(function () { prettyPrint() }) } });