Django进阶教程--自定义wiget markdown编辑器

Django进阶教程--自定义wiget markdown编辑器

django提供widget机制可以将重复使用的html封装起来,实现html代码的复用,同时内置了很多基础widget,方便我们使用。但是内置的widget并不能满足我们个性化开发需求,这时候就需要自定义widget,本节借着实现一个markdown编辑器来向大家讲解如何实现一个自定义组件。

markdown js插件editor.md介绍

我们的markdown编辑器是基于开源的js插件editor.mdhttp://pandao.github.io/editor.md/)实现的,先来简单了解下editor.md的使用。
首先从官网下载代码,我们只需要以下几个文件夹

css  
fonts  
images  
lib  
plugins

然后新建js文件夹,将editor.min.js、jquery.min.js复制到js文件夹下。
在该目录下新建test.html,代码如下:

<!DOCTYPE html>
<html lang="zh">
    <head>
        <meta charset="utf-8" />
        <title>Simple example - Editor.md examples</title>
        <link rel="stylesheet" href="css/editormd.css" />
        <link rel="shortcut icon" href="https://pandao.github.io/editor.md/favicon.ico" type="image/x-icon" />
    </head>
    <body>
        <div id="layout">
            <header>
                <h1>Simple example</h1>
            </header>
            <div id="test-editormd">
                <textarea style="display:none;">
</textarea>
            </div>
        </div>
        <script src="js/jquery.min.js"></script>
        <script src="js/editormd.min.js"></script>
        <script type="text/javascript">
            var testEditor;

            $(function() {
                testEditor = editormd("test-editormd", {
                    width   : "90%",
                    height  : 640,
                    syncScrolling : "single",
                    path    : "lib/",
                    /**上传图片相关配置如下*/
         imageUpload : true,
         imageFormats : ["jpg", "jpeg", "gif", "png", "bmp", "webp"],
         imageUploadURL : "/smart-api/upload/editormdPic/",//注意你后端的上传图片服务地址
                });
                
                /*
                // or
                testEditor = editormd({
                    id      : "test-editormd",
                    width   : "90%",
                    height  : 640,
                    path    : "lib/"
                });
                */
            });
        </script>
    </body>
</html>

在浏览器中打开test.html,就可以看到editor.md编辑器
html代码比较简单,大家应该可以看懂,就是在div下有一个textarea,然后在js代码新建editormd组件,注意里面path属性为lib文件夹路径。

自定义widget

django中widget代码如下

class Widget(six.with_metaclass(MediaDefiningClass)):
    needs_multipart_form = False  # Determines does this widget need multipart form
    is_localized = False
    is_required = False

    def __init__(self, attrs=None):
        if attrs is not None:
            self.attrs = attrs.copy()
        else:
            self.attrs = {}

    def __deepcopy__(self, memo):
        obj = copy.copy(self)
        obj.attrs = self.attrs.copy()
        memo[id(self)] = obj
        return obj

    @property
    def is_hidden(self):
        return self.input_type == 'hidden' if hasattr(self, 'input_type') else False

    @is_hidden.setter
    def is_hidden(self, *args):
        warnings.warn(
            "`is_hidden` property is now read-only (and checks `input_type`). "
            "Please update your code.",
            RemovedInDjango18Warning, stacklevel=2
        )

    def subwidgets(self, name, value, attrs=None, choices=()):
        """
        Yields all "subwidgets" of this widget. Used only by RadioSelect to
        allow template access to individual <input type="radio"> buttons.

        Arguments are the same as for render().
        """
        yield SubWidget(self, name, value, attrs, choices)

    def render(self, name, value, attrs=None):
        """
        Returns this Widget rendered as HTML, as a Unicode string.

        The 'value' given is not guaranteed to be valid input, so subclass
        implementations should program defensively.
        """
        raise NotImplementedError('subclasses of Widget must provide a render() method')

    def build_attrs(self, extra_attrs=None, **kwargs):
        "Helper function for building an attribute dictionary."
        attrs = dict(self.attrs, **kwargs)
        if extra_attrs:
            attrs.update(extra_attrs)
        return attrs

    def value_from_datadict(self, data, files, name):
        """
        Given a dictionary of data and this widget's name, returns the value
        of this widget. Returns None if it's not provided.
        """
        return data.get(name, None)

    def id_for_label(self, id_):
        """
        Returns the HTML ID attribute of this Widget for use by a <label>,
        given the ID of the field. Returns None if no ID is available.

        This hook is necessary because some widgets have multiple HTML
        elements and, thus, multiple IDs. In that case, this method should
        return an ID value that corresponds to the first ID in the widget's
        tags.
        """
        return id_

其中有render方法为关键方法,用于渲染html代码,id_for_label方法用于生成id,主要用于表单提交,还有一个属性media用于添加css和js文件,自定义组件主要重载render和media方法来。
markdown编辑器主要用来替代系统的textfield,所以我们通过继承forms.Textarea来实现自定义组件,具体代码如下

class MarkdownWidget(forms.Textarea):

    def __init__(self, *args, **kwargs):
        self.template = kwargs.pop(
            "template", markdown_settings.MARKDOWN_WIDGET_TEMPLATE)
        self.lib=markdown_settings.STATIC_URL+"markdown/lib/"
        self.width=kwargs.pop("width","100%")
        self.height = kwargs.pop("height", "540")
        self.syncScrolling=kwargs.pop("syncScrolling","single")
        self.saveHTMLToTextarea=kwargs.pop("saveHTMLToTextarea",True)
        self.emoji=kwargs.pop("emoji",True)
        self.taskList=kwargs.pop("taskList",True)
        self.tocm=kwargs.pop("tocm",True)
        self.tex=kwargs.pop("tex",True)
        self.flowChart=kwargs.pop("flowChart",True)
        self.sequenceDiagram=kwargs.pop("sequenceDiagram",True)
        self.codeFold=kwargs.pop("codeFold",True)
        self.imageUpload=kwargs.pop("imageUpload",True)
        self.imageFormats=kwargs.pop("imageFormats",markdown_settings.MARKDOWN_IMAGE_FORMATS)
        self.imageUploadURL=kwargs.pop("imageUploadURL",markdown_settings.MARKDOWN_UP_IMAGE_URL)
        self.theme=kwargs.pop("theme", "light")
        self.previewTheme=kwargs.pop("previewTheme","light")
        self.editorTheme=kwargs.pop("editorTheme", "paraiso-light")
        super(MarkdownWidget, self).__init__(*args, **kwargs)

    def _media(self):
        return forms.Media(
            css={
                "all": (compatible_staticpath("markdown/css/editormd.css"),)
            },
            js=(
                compatible_staticpath("markdown/js/jquery.min.js"),
                compatible_staticpath("markdown/js/editormd.min.js"),

            ))
    media = property(_media)

    def render(self, name, value, attrs=None):
        if value is None:
            value = ""
        if VERSION < (1, 11):
            final_attrs = self.build_attrs(attrs, name=name)
        else:
            final_attrs = self.build_attrs(attrs, {'name': name})

        if "class" not in final_attrs:
            final_attrs["class"] = ""
        final_attrs["class"] += " wmd-input"
        template = loader.get_template(self.template)
        # imageFormats_str=','.join('"'+i+'"' for i in self.imageFormats)
        # imageFormats_str='['+imageFormats_str+']'
        markdown_conf={
            'width':self.width,
            'height':self.height,
            'syncScrolling': self.syncScrolling,
            'saveHTMLToTextarea'   : self.saveHTMLToTextarea,
            'emoji':self.emoji,
            'taskList':self.taskList,
            'tocm':self.tocm,
            'tex':self.tex,
            'flowChart':self.flowChart,
            'sequenceDiagram':self.sequenceDiagram,
            'codeFold':self.codeFold,
            'imageUpload':self.imageUpload,
            'imageFormats':self.imageFormats,
            'imageUploadURL':self.imageUploadURL,
            'theme': self.theme,
            'previewTheme': self.previewTheme,
            'editorTheme':self.editorTheme,

        }

        context = {
            "attrs": flatatt(final_attrs),
            "body": conditional_escape(force_unicode(value)),
            "id": final_attrs["id"],
            "marklib":self.lib,
            "markdownconf":markdown_conf,
        }
        context = Context(context) if VERSION < (1, 9) else context
        return template.render(context)

我们通过media加载所需的js/css文件,然后重载render方法渲染template文件并返回,在render方法中我们需要通过父类的buildattrs来构建html组件的属性,value为组件初始值,对于本组件来说就是默认文本,然后我们还需要传入editor.md的属性,模板代码如下:

<div class="wmd-wrapper" id="{{ id }}-wmd-wrapper">
    <textarea {{ attrs|safe }}>{{ body }}</textarea>
</div>
<script type="text/javascript">
            var markdownEditor;

            $(function() {
                markdownEditor = editormd("{{ id }}-wmd-wrapper", {
                    width   : "{{markdownconf.width}}",
                    height  : "{{markdownconf.height}}",
                    theme :"{{markdownconf.theme}}",
                    previewTheme : "{{markdownconf.previewTheme}}",
                    editorTheme : "{{markdownconf.editorTheme}}",

                    syncScrolling : "{{markdownconf.syncScrolling}}",
                    saveHTMLToTextarea :  {{markdownconf.saveHTMLToTextarea|lower}},

                    emoji: {{markdownconf.emoji|lower}},
                    taskList: {{markdownconf.taskList|lower}},
                    tocm: {{markdownconf.tocm|lower}},
                    tex: {{markdownconf.tex|lower}},

                    flowChart: {{markdownconf.flowChart|lower}},
                    sequenceDiagram: {{markdownconf.sequenceDiagram|lower}},
                    codeFold: {{markdownconf.codeFold|lower}},
                    path    : "{{marklib}}",
                    {%if markdownconf.imageUpload%}
                    imageUpload : {{markdownconf.imageUpload|lower}},
                    imageFormats :{{markdownconf.imageFormats|safe}},
                    imageUploadURL : "{{markdownconf.imageUploadURL|safe}}",
                    {%endif%}
                });
            });
</script>

和上面代码类似,不做过多讲解。
最终实现效果如下:


markdown.png

我已将组件封装成一个app,并已将代码上传到github上(https://github.com/feiyin0719/django-markdown-editor),觉得不错的还请大家给个star,在此先多谢大家啦

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

推荐阅读更多精彩内容

  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,016评论 4 62
  • Swift版本点击这里欢迎加入QQ群交流: 594119878最新更新日期:18-09-17 About A cu...
    ylgwhyh阅读 25,256评论 7 249
  • 此刻的我刚洗完澡,敷着面膜感受着小腿产生的乳酸,深呼吸了三次,放下一天的劳顿与操劳,斜靠在床上写着这篇感悟。 其实...
    粉饰依然阅读 710评论 1 2
  • 子曰:鄙夫,可与事君也与哉?其未得之也,患得之,继得之,患失之,苛患失之,无所不至矣。 啥意思:孔子说,这种人能与...
    黄健歌阅读 689评论 2 2
  • 焦点网络初级八期 洛阳 杜红平 坚持分享第10天 周五晚上,第一次听我们焦点小屋的读书会,收获很大。原来读书...
    随喜Prajana阅读 305评论 0 1