From 26238e62419609c429548bc49e8a1934091f5f42 Mon Sep 17 00:00:00 2001 From: majianquan Date: Tue, 11 Feb 2020 17:51:04 +0800 Subject: [PATCH] feat:remove codemirror js/css in html --- .eslintignore | 2 + .eslintrc.js | 3 +- public/assets/scripts/sync-scroll.js | 30 +- public/assets/scripts/themes/default-theme.js | 326 ++++++------ public/index.html | 26 +- public/libs/scripts/codemirror/format.js | 187 ++++--- src/App.vue | 498 +---------------- src/assets/logo.png | Bin 6849 -> 0 bytes src/components/CodemirrorEditor.vue | 502 ++++++++++++++++++ src/components/HelloWorld.vue | 54 +- src/components/Loading.vue | 18 + src/scripts/format.js | 83 +++ src/scripts/renderers/wx-renderer.js | 1 + src/scripts/themes/default-theme.js | 4 +- src/scripts/util.js | 2 + src/views/Home.vue | 1 - tests/unit/example.spec.js | 8 +- 17 files changed, 923 insertions(+), 822 deletions(-) create mode 100644 .eslintignore delete mode 100644 src/assets/logo.png create mode 100644 src/components/CodemirrorEditor.vue create mode 100644 src/components/Loading.vue create mode 100644 src/scripts/format.js diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..350ab51 --- /dev/null +++ b/.eslintignore @@ -0,0 +1,2 @@ +*.js +*.vue \ No newline at end of file diff --git a/.eslintrc.js b/.eslintrc.js index 3e7e7d0..49c2e6d 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -10,7 +10,8 @@ module.exports = { rules: { 'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off', 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off', - 'camelcase': 'off' + 'camelcase': 'off', + 'eqeqeq': 'off' }, parserOptions: { parser: 'babel-eslint' diff --git a/public/assets/scripts/sync-scroll.js b/public/assets/scripts/sync-scroll.js index c9e31bb..c2f1231 100644 --- a/public/assets/scripts/sync-scroll.js +++ b/public/assets/scripts/sync-scroll.js @@ -1,23 +1,23 @@ // 左右栏同步滚动 $(document).ready(() => { - let timeout; - $('div.CodeMirror-scroll, #preview').on("scroll", function callback() { - clearTimeout(timeout); + let timeout + $('div.CodeMirror-scroll, #preview').on('scroll', function callback () { + clearTimeout(timeout) - let source = $(this), - target = $(source.is("#preview") ? 'div.CodeMirror-scroll' : '#preview'); + let source = $(this) + let target = $(source.is('#preview') ? 'div.CodeMirror-scroll' : '#preview') - target.off("scroll"); + target.off('scroll') - let source0 = source[0]; - let target0 = target[0]; + let source0 = source[0] + let target0 = target[0] - let percentage = source0.scrollTop / (source0.scrollHeight - source0.offsetHeight); - let height = percentage * (target0.scrollHeight - target0.offsetHeight); - target0.scrollTo(0, height); + let percentage = source0.scrollTop / (source0.scrollHeight - source0.offsetHeight) + let height = percentage * (target0.scrollHeight - target0.offsetHeight) + target0.scrollTo(0, height) timeout = setTimeout(() => { - target.on("scroll", callback); - }, 100); - }); -}); + target.on('scroll', callback) + }, 100) + }) +}) diff --git a/public/assets/scripts/themes/default-theme.js b/public/assets/scripts/themes/default-theme.js index c58c587..a17e20b 100644 --- a/public/assets/scripts/themes/default-theme.js +++ b/public/assets/scripts/themes/default-theme.js @@ -1,177 +1,177 @@ -let default_theme = { - BASE: { - 'text-align': 'left', - 'color': '#3f3f3f', - 'line-height': '1.75', +export const default_theme = { + BASE: { + 'text-align': 'left', + 'color': '#3f3f3f', + 'line-height': '1.75' + }, + BASE_BLOCK: { + 'margin': '1em 8px' + }, + block: { + // 一级标题样式 + h1: { + 'font-size': '1.2em', + 'text-align': 'center', + 'font-weight': 'bold', + 'display': 'table', + 'margin': '2em auto 1em', + 'padding': '0 1em', + 'border-bottom': '2px solid rgba(0, 152, 116, 0.9)' }, - BASE_BLOCK: { - 'margin': '1em 8px' + + // 二级标题样式 + h2: { + 'font-size': '1.2em', + 'text-align': 'center', + 'font-weight': 'bold', + 'display': 'table', + 'margin': '4em auto 2em', + 'padding': '0 0.2em', + 'background': 'rgba(0, 152, 116, 0.9)', + 'color': '#fff' }, - block: { - // 一级标题样式 - h1: { - 'font-size': '1.2em', - 'text-align': 'center', - 'font-weight': 'bold', - 'display': 'table', - 'margin': '2em auto 1em', - 'padding': '0 1em', - 'border-bottom': '2px solid rgba(0, 152, 116, 0.9)' - }, - // 二级标题样式 - h2: { - 'font-size': '1.2em', - 'text-align': 'center', - 'font-weight': 'bold', - 'display': 'table', - 'margin': '4em auto 2em', - 'padding': '0 0.2em', - 'background': 'rgba(0, 152, 116, 0.9)', - 'color': '#fff' - }, - - // 三级标题样式 - h3: { - 'font-weight': 'bold', - 'font-size': '1.1em', - 'margin': '2em 8px 0.75em 0', - 'line-height': '1.2', - 'padding-left': '8px', - 'border-left': '3px solid rgba(0, 152, 116, 0.9)' - }, - - // 四级标题样式 - h4: { - 'font-weight': 'bold', - 'font-size': '1em', - 'margin': '2em 8px 0.5em', - 'color': 'rgba(66, 185, 131, 0.9)' - }, - - // 段落样式 - p: { - 'margin': '1.5em 8px', - 'letter-spacing': '0.1em' - }, - - // 引用样式 - blockquote: { - 'font-style': 'normal', - 'border-left': 'none', - 'padding': '1em', - 'border-radius': '4px', - 'color': '#FEEEED', - 'background': 'rgba(27,31,35,.05)', - 'margin': '2em 8px' - }, - - blockquote_p: { - 'letter-spacing': '0.1em', - 'color': 'rgb(80, 80, 80)', - 'font-family': 'PingFangSC-light, PingFangTC-light, Open Sans, Helvetica Neue, sans-serif', - 'font-size': '1em', - 'display': 'inline', - }, - - code: { - 'font-size': '80%', - 'overflow': 'auto', - 'color': '#333', - 'background': 'rgb(247, 247, 247)', - 'border-radius': '2px', - 'padding': '10px', - 'line-height': '1.5', - 'border': '1px solid rgb(236,236,236)', - 'margin': '20px 0', - }, - - image: { - 'border-radius': '4px', - 'display': 'block', - 'margin': '0.1em auto 0.5em', - 'width': '100% !important', - }, - - image_org: { - 'border-radius': '4px', - 'display': 'block' - }, - - ol: { - 'margin-left': '0', - 'padding-left': '1em' - }, - - ul: { - 'margin-left': '0', - 'padding-left': '1em', - 'list-style': 'circle' - }, - - footnotes: { - 'margin': '0.5em 8px', - 'font-size': '80%' - }, - - figure: { - 'margin': '1.5em 8px', - } + // 三级标题样式 + h3: { + 'font-weight': 'bold', + 'font-size': '1.1em', + 'margin': '2em 8px 0.75em 0', + 'line-height': '1.2', + 'padding-left': '8px', + 'border-left': '3px solid rgba(0, 152, 116, 0.9)' }, - inline: { - listitem: { - 'text-indent': '-1em', - 'display': 'block', - 'margin': '0.2em 8px' - }, - codespan: { - 'font-size': '90%', - 'color': '#d14', - 'background': 'rgba(27,31,35,.05)', - 'padding': '3px 5px', - 'border-radius': '4px', - }, + // 四级标题样式 + h4: { + 'font-weight': 'bold', + 'font-size': '1em', + 'margin': '2em 8px 0.5em', + 'color': 'rgba(66, 185, 131, 0.9)' + }, - link: { - 'color': '#576b95' - }, + // 段落样式 + p: { + 'margin': '1.5em 8px', + 'letter-spacing': '0.1em' + }, - wx_link: { - 'color': '#576b95', - 'text-decoration': 'none', - }, + // 引用样式 + blockquote: { + 'font-style': 'normal', + 'border-left': 'none', + 'padding': '1em', + 'border-radius': '4px', + 'color': '#FEEEED', + 'background': 'rgba(27,31,35,.05)', + 'margin': '2em 8px' + }, - // 字体加粗样式 - strong: { - 'color': 'rgba(15, 76, 129, 0.9)', - 'font-weight': 'bold', - }, + blockquote_p: { + 'letter-spacing': '0.1em', + 'color': 'rgb(80, 80, 80)', + 'font-family': 'PingFangSC-light, PingFangTC-light, Open Sans, Helvetica Neue, sans-serif', + 'font-size': '1em', + 'display': 'inline' + }, - table: { - 'border-collapse': 'collapse', - 'text-align': 'center', - 'margin': '1em 8px' - }, + code: { + 'font-size': '80%', + 'overflow': 'auto', + 'color': '#333', + 'background': 'rgb(247, 247, 247)', + 'border-radius': '2px', + 'padding': '10px', + 'line-height': '1.5', + 'border': '1px solid rgb(236,236,236)', + 'margin': '20px 0' + }, - thead: { - 'background': 'rgba(0, 0, 0, 0.05)', - 'font-weight': 'bold' - }, + image: { + 'border-radius': '4px', + 'display': 'block', + 'margin': '0.1em auto 0.5em', + 'width': '100% !important' + }, - td: { - 'border': '1px solid #dfdfdf', - 'padding': '0.25em 0.5em' - }, + image_org: { + 'border-radius': '4px', + 'display': 'block' + }, - footnote: { - 'font-size': '12px' - }, + ol: { + 'margin-left': '0', + 'padding-left': '1em' + }, - figcaption: { - 'text-align': 'center', - 'color': '#888', - 'font-size': '0.8em' - } + ul: { + 'margin-left': '0', + 'padding-left': '1em', + 'list-style': 'circle' + }, + + footnotes: { + 'margin': '0.5em 8px', + 'font-size': '80%' + }, + + figure: { + 'margin': '1.5em 8px' } -}; \ No newline at end of file + }, + inline: { + listitem: { + 'text-indent': '-1em', + 'display': 'block', + 'margin': '0.2em 8px' + }, + + codespan: { + 'font-size': '90%', + 'color': '#d14', + 'background': 'rgba(27,31,35,.05)', + 'padding': '3px 5px', + 'border-radius': '4px' + }, + + link: { + 'color': '#576b95' + }, + + wx_link: { + 'color': '#576b95', + 'text-decoration': 'none' + }, + + // 字体加粗样式 + strong: { + 'color': 'rgba(15, 76, 129, 0.9)', + 'font-weight': 'bold' + }, + + table: { + 'border-collapse': 'collapse', + 'text-align': 'center', + 'margin': '1em 8px' + }, + + thead: { + 'background': 'rgba(0, 0, 0, 0.05)', + 'font-weight': 'bold' + }, + + td: { + 'border': '1px solid #dfdfdf', + 'padding': '0.25em 0.5em' + }, + + footnote: { + 'font-size': '12px' + }, + + figcaption: { + 'text-align': 'center', + 'color': '#888', + 'font-size': '0.8em' + } + } +} diff --git a/public/index.html b/public/index.html index 5d50505..fdf725d 100644 --- a/public/index.html +++ b/public/index.html @@ -46,8 +46,8 @@ - - + + @@ -59,41 +59,21 @@ -
-
-
Loading...
-
-
-
- - - - - - - - - - - - - - + - diff --git a/src/assets/logo.png b/src/assets/logo.png deleted file mode 100644 index f3d2503fc2a44b5053b0837ebea6e87a2d339a43..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6849 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 +
+ + + + + +   + + + + +   + + + +   + + + +   + + + + + + {{ font.label }} + Abc + + + + + + + {{ size.label }} + {{ size.desc }} + + + + + + + {{ color.label }} + {{ color.hex }} + + + + + + +    + + + + + + + + + 复制 + 关于 + + + + + + + +
+
+
+
+
+
+
+ + + + + + +
+
+
+ +
+

一款高度简洁的微信 Markdown 编辑器

+
+
+

扫码关注我的公众号,原创技术文章第一时间推送!

+ +
+ + + GitHub 仓库 + + + Gitee 仓库 + + +
+ + + + + + + + + + + +
+ + + diff --git a/src/components/HelloWorld.vue b/src/components/HelloWorld.vue index 428c117..0d5239c 100644 --- a/src/components/HelloWorld.vue +++ b/src/components/HelloWorld.vue @@ -1,59 +1,15 @@ - - diff --git a/src/components/Loading.vue b/src/components/Loading.vue new file mode 100644 index 0000000..da6502d --- /dev/null +++ b/src/components/Loading.vue @@ -0,0 +1,18 @@ + + + + + diff --git a/src/scripts/format.js b/src/scripts/format.js new file mode 100644 index 0000000..f9979f1 --- /dev/null +++ b/src/scripts/format.js @@ -0,0 +1,83 @@ +(function () { + CodeMirror.extendMode('css', { + commentStart: '/*', + commentEnd: '*/', + newlineAfterToken: function (type, content) { + return /^[;{}]$/.test(content) + } + }) + + // Comment/uncomment the specified range + CodeMirror.defineExtension('commentRange', function (isComment, from, to) { + var cm = this; var curMode = CodeMirror.innerMode(cm.getMode(), cm.getTokenAt(from).state).mode + cm.operation(function () { + if (isComment) { // Comment range + cm.replaceRange(curMode.commentEnd, to) + cm.replaceRange(curMode.commentStart, from) + if (from.line == to.line && from.ch == to.ch) // An empty comment inserted - put cursor inside + { cm.setCursor(from.line, from.ch + curMode.commentStart.length) } + } else { // Uncomment range + var selText = cm.getRange(from, to) + var startIndex = selText.indexOf(curMode.commentStart) + var endIndex = selText.lastIndexOf(curMode.commentEnd) + if (startIndex > -1 && endIndex > -1 && endIndex > startIndex) { + // Take string till comment start + selText = selText.substr(0, startIndex) + + // From comment start till comment end + selText.substring(startIndex + curMode.commentStart.length, endIndex) + + // From comment end till string end + selText.substr(endIndex + curMode.commentEnd.length) + } + cm.replaceRange(selText, from, to) + } + }) + }) + + // Applies automatic mode-aware indentation to the specified range + CodeMirror.defineExtension('autoIndentRange', function (from, to) { + var cmInstance = this + this.operation(function () { + for (var i = from.line; i <= to.line; i++) { + cmInstance.indentLine(i, 'smart') + } + }) + }) + + // Applies automatic formatting to the specified range + CodeMirror.defineExtension('autoFormatRange', function (from, to) { + var cm = this + var outer = cm.getMode(); var text = cm.getRange(from, to).split('\n') + var state = CodeMirror.copyState(outer, cm.getTokenAt(from).state) + var tabSize = cm.getOption('tabSize') + + var out = ''; var lines = 0; var atSol = from.ch == 0 + function newline () { + out += '\n' + atSol = true + ++lines + } + + for (var i = 0; i < text.length; ++i) { + var stream = new CodeMirror.StringStream(text[i], tabSize) + while (!stream.eol()) { + var inner = CodeMirror.innerMode(outer, state) + var style = outer.token(stream, state); var cur = stream.current() + stream.start = stream.pos + if (!atSol || /\S/.test(cur)) { + out += cur + atSol = false + } + if (!atSol && inner.mode.newlineAfterToken && + inner.mode.newlineAfterToken(style, cur, stream.string.slice(stream.pos) || text[i + 1] || '', inner.state)) { newline() } + } + if (!stream.pos && outer.blankLine) outer.blankLine(state) + if (!atSol) newline() + } + + cm.operation(function () { + cm.replaceRange(out, from, to) + for (var cur = from.line + 1, end = from.line + lines; cur <= end; ++cur) { cm.indentLine(cur, 'smart') } + cm.setSelection(from, cm.getCursor(false)) + }) + }) +})() diff --git a/src/scripts/renderers/wx-renderer.js b/src/scripts/renderers/wx-renderer.js index bf0a1a8..118772a 100644 --- a/src/scripts/renderers/wx-renderer.js +++ b/src/scripts/renderers/wx-renderer.js @@ -1,3 +1,4 @@ +import marked from 'marked' const WxRenderer = function (opts) { this.opts = opts let ENV_STRETCH_IMAGE = true diff --git a/src/scripts/themes/default-theme.js b/src/scripts/themes/default-theme.js index c58c587..bb9c5ad 100644 --- a/src/scripts/themes/default-theme.js +++ b/src/scripts/themes/default-theme.js @@ -1,4 +1,4 @@ -let default_theme = { +export default { BASE: { 'text-align': 'left', 'color': '#3f3f3f', @@ -174,4 +174,4 @@ let default_theme = { 'font-size': '0.8em' } } -}; \ No newline at end of file +}; diff --git a/src/scripts/util.js b/src/scripts/util.js index 1dfdd25..6e49f14 100644 --- a/src/scripts/util.js +++ b/src/scripts/util.js @@ -1,3 +1,5 @@ +import default_theme from "./themes/default-theme"; + // 设置自定义颜色 export function setColorWithTemplate (template) { return function (color) { diff --git a/src/views/Home.vue b/src/views/Home.vue index fc2e940..02d9ab5 100644 --- a/src/views/Home.vue +++ b/src/views/Home.vue @@ -1,6 +1,5 @@ diff --git a/tests/unit/example.spec.js b/tests/unit/example.spec.js index f84fb39..71f5d50 100644 --- a/tests/unit/example.spec.js +++ b/tests/unit/example.spec.js @@ -2,11 +2,5 @@ import { shallowMount } from '@vue/test-utils' import HelloWorld from '@/components/HelloWorld.vue' describe('HelloWorld.vue', () => { - it('renders props.msg when passed', () => { - const msg = 'new message' - const wrapper = shallowMount(HelloWorld, { - propsData: { msg } - }) - expect(wrapper.text()).toMatch(msg) - }) + })