写博客嘛,html
谁不喜欢本身倒腾一下呢。node
从自建系统到 Github Page,mysql
年轻的时候谁不喜欢多折腾折腾呢。git
年纪稍稍长了一下以后, 最后我本身仍是选了 Hexo 直接作静态博客生成,github
结合一下 Gitlab CI 推代码以后自动构建以后更新到本身的服务器了。golang
后来又基于“多说”直接支持了博客内容评论,web
再后来,多说倒下了,评论功能就一直没有维护了。sql
前阵子由于某些需求,对市面上部分评论系统作了一次调研,docker
这时候发现其实你们都作了好多轮子了,近期空出来了终于能够再玩玩了。
调研前提:
下面直接扔了上次的调研结果出来。
Isso – Ich schrei sonst – is a lightweight commenting server written in Python and JavaScript. It aims to be a drop-in replacement for Disqus.
调研搞完以后,停了一阵子,最近把项目扔给同事作进一步 demo 搭建,
同事花了点时候搭了一下 demo 和看了代码,最后在 commento 和 remark42 中“犹豫了”
最后比较了代码结构和二次开发成本, 选择了 remark42
因此,我这边最后也使用 remark42 直接搭了本身的评论系统。
因为文档写得实在太好了,部署也没遇到什么奇怪问题,
部署服务端这一步真的跳过了,有奇怪的问题须要的朋友自行提问吧。
这一段是须要写写的。
看完了文档的朋友应该知道,
在某个页面集成评论只须要加下面这些代码。
<script> var remark_config = { host: "REMARK_URL", // hostname of remark server, same as REMARK_URL in backend config, e.g. "https://demo.remark42.com" site_id: "YOUR_SITE_ID", components: ["embed"], // optional param; which components to load. default to ["embed"] // to load all components define components as ['embed', 'last-comments', 'counter'] // available component are: // - 'embed': basic comments widget // - 'last-comments': last comments widget, see `Last Comments` section below // - 'counter': counter widget, see `Counter` section below url: "PAGE_URL", // optional param; if it isn't defined // `window.location.origin + window.location.pathname` will be used, // // Note that if you use query parameters as significant part of url // (the one that actually changes content on page) // you will have to configure url manually to keep query params, as // `window.location.origin + window.location.pathname` doesn't contain query params and // hash. For example default url for `https://example/com/example-post?id=1#hash` // would be `https://example/com/example-post`. // // The problem with query params is that they often contain useless params added by // various trackers (utm params) and doesn't have defined order, so Remark treats differently // all this examples: // https://example.com/?postid=1&date=2007-02-11 // https://example.com/?date=2007-02-11&postid=1 // https://example.com/?date=2007-02-11&postid=1&utm_source=google // // If you deal with query parameters make sure you pass only significant part of it // in well defined order max_shown_comments: 10, // optional param; if it isn't defined default value (15) will be used theme: "dark", // optional param; if it isn't defined default value ('light') will be used page_title: "Moving to Remark42", // optional param; if it isn't defined `document.title` will be used locale: "en", // set up locale and language, if it isn't defined default value ('en') will be used }; (function (c) { for (var i = 0; i < c.length; i++) { var d = document, s = d.createElement("script"); s.src = remark_config.host + "/web/" + c[i] + ".js"; s.defer = true; (d.head || d.body).appendChild(s); } })(remark_config.components || ["embed"]); </script>
<div id="remark42"></div>
那么问题来了,在 hexo 的 next 主题里面怎么作呢?
答案是: 确定是抄代码啊!!!
首先知道(鬼知道啊),next 主题通常在项目 themes/next 路径,
themes/next/layout 这个文件夹存放了布局文件,其中_layout.swig 是一个重要的全局布局文件。
因此,明显是修改_layout.swig 引入上面的 script 代码啦。
看了一眼_layout.swig 的代码, 底部基本是 include 引入同级的 swig 文件。
{% include '_scripts/boostrap.swig' %} {% include 'remark42.swig' %} {% include '_third-party/comments/index.swig' %} {% include '_third-party/search/index.swig' %}
明显,咱们也能够加一个 swig,而后在上面引入一下。
<script> var remark_config = { host: "你部署的remark42 服务", // hostname of remark server, same as REMARK_URL in backend config, e.g. "https://demo.remark42.com" site_id: '你的站点Id,部署的时候指定的', components: ['embed'], // optional param; which components to load. default to ["embed"] // to load all components define components as ['embed', 'last-comments', 'counter'] // available component are: // - 'embed': basic comments widget // - 'last-comments': last comments widget, see `Last Comments` section below // - 'counter': counter widget, see `Counter` section below url: window.location.origin + window.location.pathname, // optional param; if it isn't defined // `window.location.origin + window.location.pathname` will be used, // // Note that if you use query parameters as significant part of url // (the one that actually changes content on page) // you will have to configure url manually to keep query params, as // `window.location.origin + window.location.pathname` doesn't contain query params and // hash. For example default url for `https://example/com/example-post?id=1#hash` // would be `https://example/com/example-post`. // // The problem with query params is that they often contain useless params added by // various trackers (utm params) and doesn't have defined order, so Remark treats differently // all this examples: // https://example.com/?postid=1&date=2007-02-11 // https://example.com/?date=2007-02-11&postid=1 // https://example.com/?date=2007-02-11&postid=1&utm_source=google // // If you deal with query parameters make sure you pass only significant part of it // in well defined order max_shown_comments: 10, // optional param; if it isn't defined default value (15) will be used theme: 'dark', // optional param; if it isn't defined default value ('light') will be used page_title: 'Moving to Remark42', // optional param; if it isn't defined `document.title` will be used locale: 'en' // set up locale and language, if it isn't defined default value ('en') will be used }; (function(c) { for(var i = 0; i < c.length; i++){ var d = document, s = d.createElement('script'); s.src = remark_config.host + '/web/' +c[i] +'.js'; s.defer = true; (d.head || d.body).appendChild(s); } })(remark_config.components || ['embed']); </script>
{% include '_scripts/boostrap.swig' %} {% include 'remark42.swig' %} {% include '_third-party/comments/index.swig' %} {% include '_third-party/search/index.swig' %}
搞完这个,全局脚本引用已经搞掂了。
下面就是每一个文章页面须要新增 remark42 评论框了
观察一下 themes/next/layout 目录不难发现,
每一个文章的的样式模板都在 post.swig,
明显评论框也应该直接在 post.swig。
打开一看,感受应该加在
因而:
<div id="posts" class="posts-expand"> {{ post_template.render(page) }} <div class="post-spread"> {% if theme.jiathis %} {% include '_partials/share/jiathis.swig' %} {% elseif theme.baidushare %} {% include '_partials/share/baidushare.swig' %} {% elseif theme.add_this_id %} {% include '_partials/share/add-this.swig' %} {% elseif theme.duoshuo_shortname and theme.duoshuo_share %} {% include '_partials/share/duoshuo_share.swig' %} {% endif %} </div> <div id="remark42"></div> </div>
完事...