简单封装一个vue-editormd组件

:大致思路

参考源码:https://github.com/star7th/showdoc

editormd.vue中引入下载的editor.md的文件, 即书写配置选项的path路径
页面中引用editormd.vue

一, 了解一下editormd的属性与方法

用requirejs等工具引入所有所需依赖以后,window上就会挂载editormd方法,可直接调用

1 用于编辑的editormd

 <div id="layout">
         <header>
                <h1>Auto height test</h1>
         </header>
          // 用于在外部添加功能
         <div class="btns">
              <button id="append-btn">Append markdown</button>
          </div>
          <div id="test-editormd">
              <textarea style="display:none;"></textarea>
          </div>
</div>

var testEditor = editormd("test-editormd", { // 配置选项对象
     autoHeight: true, // 自动高度 
     atLink    : false,    // disable @link
     codeFold: true, // 代码折叠
     emailLink : false,    // disable email address auto link
     emoji           : true,
     flowChart       : true, //流程图
     height : 640,
     syncScrolling: true | false | 'single' // 编辑与预览是否同步滚动 默认true
     htmlDecode      : "style,script,iframe", 
     lineNumbers     : false     // 隐藏编辑窗口行号,默认true
     mode: 'text/html', //  ["text/html", "javascript", "php", "text/xml", "text/json", "clike", "javascript", "perl", "go", "python", "clike", "css", "ruby"];
     path   : "../lib/", // 下载的editor.md文件夹下的lib目录地址
     placeholder: 'Enjoy coding!',
     readOnly: true, // 开启会隐藏toolbar
     saveHTMLToTextarea : true,
     searchReplace: true,
     sequenceDiagram : true, // 时序图,系列图
     styleActiveLine : false,   // 高亮鼠标所在行,默认true
     taskList        : true, // - [ ] this  // - [x] this 是否支持该md语法,默认false
     todoList: true,
     tex             : true, // katex科学公式 默认false
     toc: true,
     tocContainer: '某<div>的id如: #id', // ''空字符串表示默认的textarea, 有id表示为textarea外部
     tocDropdown   : true, // 下拉菜单,自动索引###
     tocStartLevel : 4 ,   // #### 顶格为4, 不渲染h1,h2,h3 .默认:1,
     toolbar: false, // 是否显示工具栏
     toolbarIcons:'"undo", "redo"',
     theme:  (localStorage.theme) ? localStorage.theme : "default",
     value: $('#id').val(), // textarea首尾标签之间的内容
     watch: false,  // 初始化时显示预览? 默认true
     imageUpload: false, //文件本地上传   默认false, 
     width  : "90%",
})
}

// 实例方法,可用于外部添加btn
testEditor.appendMarkdown(md);
testEditor.config('syncScrolling', true)
testEditor.getMarkdown();       // 获取 Markdown 源码
testEditor.getHTML();           // 获取 Textarea 保存的 HTML 源码
testEditor.getPreviewedHTML();  // 获取预览窗口里的 HTML,在开启 watch 且没有开启 saveHTMLToTextarea 时使用
testEditor.getValue(),
testEditor.setValue(code);
testEditor.fullscreen();
testEditor.setTheme(theme); //  var theme    = editormd.themes[i];
testEditor.setCodeMirrorOption("mode", mode);
testEditor.watch();
testEditor.unwatch();

用于编辑的editor.md 使用过程注意点:
1, 不支持v-model, 有因为需要特殊的保存为.md格式


image.png

2用于显示的editor.md

总结了部分后我就停笔了,因为感觉到配置选项应该是一样的

<div id="test-editormd-view">
                // textarea可缺省
               <textarea style="display:none;" name="test-editormd-markdown-doc">###Hello world!</textarea>               
            </div>
$(function(){
var testEditormdView;
$.get('url').then(markdown=>{
testEditorView = editormd.markdownToHtml('test-editor-view',{
markdown: markdown,
// htmlDecode: true // 开启html标签解析,为了安全性,默认不开启
htmlDecode:  "style,script,iframe",
taskList: true,
tex: true, // 默认false
flowChart: true, // 默认false
sequenceDiagram: true // 默认false
}))
//实例方法
testEditormdView.getMarkdown()
})

二: 简单封装vue-editormd组件

1, 定义处,

<template>
    <div :id="id" class="main-editor" @keydown.ctrl.83.prevent="save">
        <link href="js/editor.md/css/editormd.css" rel="stylesheet">

        <textarea v-html="content" style="display:none;"></textarea>

        <!-- 放大图片 -->
<!--        <BigImg v-if="showImg" @clickit="showImg = false" :imgSrc="imgSrc"></BigImg>-->

    </div>
</template>

<script>
    import  $s from 'scriptjs'

    // import BigImg from '@/components/common/BigImg'

    export default {
        name: 'Editormd',
        props: {
            width: '',
            content:{
                type: String,
                default: ''
            },
            type: {
                type:String,
                default: 'editor'
            },
            id: {
                type: String,
                default: 'editor-md'
            },
            editorPath: {
                type: String,
                default: 'js/editor.md', // editormd文件夹所在路径
            },
            editorConfig: {
                type: Object,
                default() { // 对象或数组默认值必须从一个工厂函数获取
                    return {
                        path: '/js/editor.md/lib/',
                        height: 300,
                        taskList        : true, // 任务完成图
                        watch: false,
                        placeholder: "本编辑器支持Markdown编辑,左边编写,右边预览",
                        tex             : true,  // 科学公式
                        flowChart       : true,  // 流程图
                        sequenceDiagram : true,  // 时序图/序列图
                        syncScrolling: "single", // 预览,编辑窗同步滚动
                        toolbarIcons: ["undo", "redo", "|","bold","italic","|", "image","link","||","watch","search"],
                        htmlDecode: "style,script,iframe,title,onmouseover,onmouseout,style",
                        // imageUpload: true,
                        imageFormats: ["jpg", "jpeg", "gif", "png", "bmp", "webp", "JPG", "JPEG", "GIF", "PNG", "BMP", "WEBP"],
                        // imageUploadURL: DocConfig.server+"/api/page/uploadImg",
                        onload: () => {
                            console.log('onload')
                            console.log(this.instance);
                        },
                    };
                },
            },
        },
        // components:{
        //     BigImg
        // },
        data() {
            return {
                instance: null, // editormd的实例
                showImg:false,
                imgSrc: ''
            };
        },
        computed: {
        },
        mounted() {

            //加载依赖""
            $s([`${this.editorPath}/../jquery.min.js`,
                `${this.editorPath}/lib/raphael.min.js`,
                `${this.editorPath}/lib/flowchart.min.js`,
            ],()=>{
                $s([
                    // `${this.editorPath}/../xss.min.js`,
                    `${this.editorPath}/lib/marked.min.js`,
                    `${this.editorPath}/lib/prettify.min.js`,
                    `${this.editorPath}/lib/underscore.min.js`,
                    `${this.editorPath}/lib/sequence-diagram.min.js`,
                    `${this.editorPath}/lib/jquery.flowchart.min.js`,
                ], () => {

                    $s(`${this.editorPath}/editormd.js`, () => {
                        this.initEditor();
                    });
                    // $s(`${this.editorPath}/../highlight/highlight.min.js`, () => {
                    //     hljs.initHighlightingOnLoad();
                    // });
                });


            });
        },
        beforeDestroy() {
            //清理所有定时器
            for (var i = 1; i < 999; i++){
                window.clearInterval(i);
            };
            //window.removeEventListener('beforeunload', e => this.beforeunloadHandler(e))
        },
        methods: {
            initEditor() {
                this.$nextTick((editorMD = window.editormd) => {
                    if (editorMD) {
                        if (this.type == 'editor'){
                            this.instance = editorMD(this.id, this.editorConfig);
                            //草稿跟后端初始化会冲突
                            // this.draft(); 
                            //window.addEventListener('beforeunload', e => this.beforeunloadHandler(e));
                        } else {
                            this.instance = editorMD.markdownToHTML(this.id, this.editorConfig);
                        }
                        this.deal_with_content();
                    }
                });
            },
            //插入数据到编辑器中。插入到光标处
            insertValue(insertContent){
                this.instance.insertValue(this.html_decode(insertContent));
            },
            getMarkdown(){
                return this.instance.getMarkdown();
            },
            editor_unwatch(){
                return this.instance.unwatch();
            },
            editor_watch(){
                return this.instance.watch();
            },
            clear(){
                return this.instance.clear();
            },
            //草稿
            // draft(){
            //     var that = this ;
            //     //定时保存文本内容到localStorage
            //     setInterval(()=>{
            //         localStorage.page_content= that.getMarkdown() ;
            //     }, 60000);
            //     //检测是否有定时保存的内容
            //     var page_content = localStorage.page_content ;
            //     if (page_content && page_content.length > 0) {
            //         localStorage.removeItem("page_content");
            //         that.$confirm('检测到有本地保存的草稿,是否恢复','提示',{
            //             confirmButtonText: '恢复',
            //             cancelButtonText: '放弃',
            //                 showClose:false
            //             }
            //         ).then(()=>{
            //             that.clear() ;
            //             that.insertValue(page_content) ;
            //             localStorage.removeItem("page_content");
            //         }).catch(()=>{
            //             localStorage.removeItem("page_content");
            //         });
            //     };
            // },

            //对内容做些定制化改造
            deal_with_content(){
                var that = this ;
                //当表格列数过长时将自动出现滚动条
                $.each($("#"+this.id+' table'), function() {
                    $(this).prop('outerHTML', '<div style="width: 100%;overflow-x: auto;">'+$(this).prop('outerHTML')+'</div>');
                });
                //超链接都在新窗口打开
                $("#"+this.id+' a[href^="http"]').each(function() {
                    $(this).attr('target', '_blank');
                });
                //对表格进行一些改造
                $("#"+this.id+" table tbody tr").each(function(){
                    var tr_this = $(this) ;
                    var td1 =  tr_this.find("td").eq(1).html() ;
                    var td2 =  tr_this.find("td").eq(2).html() ;
                    if(td1 =="object" || td1 =="array[object]" || td2 =="object" || td2 =="array[object]"){
                        tr_this.css({"background-color":"#F8F8F8"});
                    }else{
                        tr_this.css("background-color","#fff");
                    }
                    //设置表格hover
                    tr_this.hover(function(){
                        tr_this.css("background-color","#F8F8F8");
                    },function(){
                        if(td1 =="object" || td1 =="array[object]" || td2 =="object" || td2 =="array[object]"){
                            tr_this.css({"background-color":"#F8F8F8"});
                        }else{
                            tr_this.css("background-color","#fff");
                        }
                    });
                });
                //获取内容总长度
                var contentWidth = $("#"+this.id+" p").width() ;
                // contentWidth = contentWidth ? contentWidth : 722;
                
                //表格列 的宽度
                $("#"+this.id+" table").each(function(i){
                    var $v =$(this).get(0) ;//原生dom对象
                    var num = $v.rows.item(0).cells.length ; //表格的列数
                    var colWidth = Math.floor(contentWidth/num) -2 ;
                    if (num <= 5) {
                        $(this).find("th").css("width",colWidth.toString()+"px");
                    }

                });

                //图片点击放大
                $("#"+this.id+" img").click(function(){
                    var  img_url = $(this).attr("src");
                    that.showImg = true;
                    // 获取当前图片地址
                    that.imgSrc = img_url;
                });

                //表格头颜色
                $("#"+this.id+" table thead tr").css("background-color","#409eff") ;
                $("#"+this.id+" table thead tr").css("color","#fff") ;
                //代码块美化
                // $("#"+this.id+" .linenums").css("padding-left","5px") ;
                // $("#"+this.id+" .linenums li").css("list-style-type","none") ;
                // $("#"+this.id+" .linenums li").css("background-color","#fcfcfc") ;
                // $("#"+this.id+" pre").css("background-color","#fcfcfc") ;
                // $("#"+this.id+" pre").css("border","1px solid #e1e1e8") ;
                //
                // $("#"+this.id+" code").css("color","#d14");

            },
            //转义
            html_decode(str){
                var s = "";
                if (str.length == 0) return "";
                s = str.replace(/&gt;/g, "&");
                s = s.replace(/&lt;/g, "<");
                s = s.replace(/&gt;/g, ">");
                s = s.replace(/&nbsp;/g, " ");
                s = s.replace(/&#39;/g, "\'");
                s = s.replace(/&quot;/g, "\"");
                //s = s.replace(/<br>/g, "\n");
                return s;
            }
        }
    };
</script>

<style scoped></style>

2, 引入处

1, 编辑:

两件事: 保存.md, 初始化渲染md
1, 保存:

 import Editormd from '../../../utils/editormd/Editormd.vue'
  components: {
      Editormd
    },
<editormd  type="editor" ref="editormdRef" :content="currentEdit.remark"></editormd>
<script>
 const editormdRef =  this.$refs['editormdRef'][0]
 let content = editormdRef.getMarkdown() // 把content传到后端即可
</script>

2, 初始化:
在vue-editormd组件中写了v-html = content即可

2, 纯渲染(vue组件中):

  <editormd type="html" v-if="item.remark" :content="item.remark"></editormd>

END

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,542评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,596评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,021评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,682评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,792评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,985评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,107评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,845评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,299评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,612评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,747评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,441评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,072评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,828评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,069评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,545评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,658评论 2 350