跳至主要內容

使用Gitalk实现静态博客无后台评论系统

Mr.Chen技术博客搭建大约 3 分钟约 768 字

使用 Gitalk 实现静态博客无后台评论系统

前言

Gitalk,一个基于 Github Issue 和 Preact 开发的评论插件。

下面我们来用它在 vuepress 搭建的博客中搭建评论区吧

准备

使用一个新的东西首先当然是要了解它

Gitalk demo:https://gitalk.github.io/open in new window

Gitalk github:https://github.com/gitalk/gitalkopen in new window

实现

如何实现?最好的方法我认为是看官方文档open in new window,这里我只是记录一下实现的步骤。

使用一个别人已经开发好的 vuepress-plugin-commentopen in new window 插件来帮助我们把 Gitalk 应用到 vuepress 搭建的静态博客。

安装

npm install --save vuepress-plugin-comment

使用

options的配置和Gitalk的配置相同

module.exports = {
  plugins: [
    [
      'vuepress-plugin-comment',
      {
        choosen: 'gitalk',
        options: {
          clientID: 'GitHub Application Client ID',
          clientSecret: 'GitHub Application Client Secret',
          repo: 'GitHub repo',
          owner: 'GitHub repo owner',
          admin: [
            'GitHub repo owner and collaborators, only these guys can initialize github issues'
          ],
          distractionFreeMode: false
        }
      }
    ]
  ]
}

需要 GitHub Application,如果没有 点击这里申请open in new windowAuthorization callback URL 填写当前使用插件页面的域名。

申请完成就会得 Client ID 和 Client Secret。然后把对应参数填写到配置中,例:

module.exports = {
  plugins: [
    [
      'vuepress-plugin-comment',
      {
        choosen: 'gitalk',
        options: {
          clientID: 'a6e*******4709b88b',
          clientSecret: 'f0e***************beb8b2d54d7241',
          repo: 'blog', // GitHub 仓库
          owner: 'xugaoyi', // GitHub仓库所有者
          admin: ['xugaoyi'], // 对仓库有写权限的人
          distractionFreeMode: false
        }
      }
    ]
  ]
}

配置好之后重启项目就发现页面上多了一个评论区,说明评论功能实现啦。但还是有一些 bug,继续完善它~

BUG 修复

评论区与博客样式不匹配

解决办法:新增全局样式文件.vuepress/styles/index.styl,写入样式

#vuepress-plugin-comment
  max-width $contentWidth
  margin 0 auto
  padding 2rem 2.5rem
  @media (max-width: $MQNarrow)
    padding 2rem
  @media (max-width: $MQMobileNarrow)
    padding 1.5rem

评论区出现 Error: Validation Failed.

问题分析:当页面 链接过长 或 存在中文链接,导致整个链接字符串长度超过 50 时,会造成请求 issues 接口失败,出现 422 状态码。(中文链接会自动转码,变得很长,id 参数默认取的是链接,长度不能超过 50)

解决办法:手动设置 id 取值,限制长度不超过 50。

{
 choosen: 'gitalk',
 options: {
   ...
   id: "<%- (window.location.origin + (frontmatter.to.path || window.location.pathname)).slice(-50) %>", //  页面的唯一标识,长度不能超过50
   title: "「评论」<%- document.title %>", // GitHub issue 的标题
   labels: ["Gitalk", "Comment"], // GitHub issue 的标签
   body:"<%- document.title %>:<%- window.location.origin + (frontmatter.to.path || window.location.pathname) %>" // GitHub issue 的内容
 }
}

访问变量时,如 $frontmatterwindow等,请使用 EJS 语法。因为在配置中不能使用回调函数,会被 vuepress 过滤,因此使用 EJS 语法。 ——插件作者文档说明

切换页面后评论区内容还是上一个页面的评论

解决:id 在获取path时使用 frontmatter.to.path,插件内置了 ``frontmatter.fromfrontmatter.to`。

{
 choosen: 'gitalk',
 options: {
   ...
   id: "<%- (window.location.origin + (frontmatter.to.path || window.location.pathname)).slice(-50) %>", //  页面的唯一标识,长度不能超过50
   title: "「评论」<%- document.title %>", // GitHub issue 的标题
   labels: ["Gitalk", "Comment"], // GitHub issue 的标签
   body:"<%- document.title %>:<%- window.location.origin + (frontmatter.to.path || window.location.pathname) %>" // GitHub issue 的内容
 }
}
上次编辑于: