關(guān)于gitment
gitment其實就是利用你的代碼倉庫的Issues掂器,來實現(xiàn)評論。每一篇文章對應(yīng)該代碼倉庫中的一個Issues,Issues中的評論對應(yīng)你的博客每篇文章中的評論。如果你是用github的博客的話用起來將會十分的方便孵班。
注冊github應(yīng)用
首先需要在這注冊一個OAuth Application, 請戳此處绝葡。在注冊的過程中,你需要輸入以下的東西:
Application name 隨意就好
Homepage URL 你的博客地址嗤谚,例如https://detectivehlh.github.io/
Application description 隨意就好
Authorization callback URL 也是博客地址棺蛛,例如https://detectivehlh.github.io/
輸入完成之后,點擊注冊就OK了巩步。成功之后就會拿到Client ID和Client Secret旁赊,然后先進行一下步,暫時還不會用到這個渗钉。
修改主題配置文件
下一步就是要修改你的博客所使用的主題的配置文件彤恶。定位到# Comments,添加如下代碼鳄橘。
gitment:
enable: true
mint: true
count: true
lazy: false
cleanly: false
language:
github_user: detectiveHLH
github_repo: detectiveHLH.github.io
client_id: xxx
client_secret: xxx
proxy_gateway:
redirect_protocol:
將上面代碼的github_user和github_repo改成你自己的就可以了声离。
為gitment添加樣式和layout
打開你所使用的主題的目錄。打開layout/_partial/comments.ejs瘫怜,在原文件后加入如下代碼术徊。
<% if(theme.gitment.enable) { %>
<div id="gitment_title" class="gitment_title"></div>
<div id="container" style="display:none"></div>
<link rel="stylesheet" >
<script src="https://imsun.github.io/gitment/dist/gitment.browser.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script>
const myTheme = {
render(state, instance) {
const container = document.createElement('div');
container.lang = "en-US";
container.className = 'gitment-container gitment-root-container';
container.appendChild(instance.renderHeader(state, instance));
container.appendChild(instance.renderEditor(state, instance));
container.appendChild(instance.renderComments(state, instance));
container.appendChild(instance.renderFooter(state, instance));
return container;
}
}
function showGitment() {
$("#gitment_title").attr("style", "display:none");
$("#container").attr("style", "").addClass("gitment_container");
var gitment = new Gitment({
id: decodeURI(window.location.pathname),
theme: myTheme,
owner: 'detectiveHLH',
repo: 'detectiveHLH.github.io',
oauth: {
client_id: 'xxx',
client_secret: 'xxx'
}
});
gitment.render('container');
}
showGitment();
</script>
<% } %>
將上面代碼中的owner、repo鲸湃、oauth中的信息換成你自己的就可以了赠涮,client_id和client_secret就是第一步申請github應(yīng)用得到的。我查了網(wǎng)上很多教程暗挑,都是需要點擊按鈕才能顯示評論笋除,我做了一點改動,引用之后可以直接的顯示評論炸裆。然后打開source/css/_partial/_gitment.styl垃它,如果沒有就新建文件。添加如下代碼。
.gitment_title:hover {
color: #fff;
background: #0a9caf;
background-image: initial;
background-position-x: initial;
background-position-y: initial;
background-size: initial;
background-repeat-x: initial;
background-repeat-y: initial;
background-attachment: initial;
background-origin: initial;
background-clip: initial;
background-color: rgb(10, 156, 175);
}
.gitment_title {
border: 1px solid #0a9caf;
border-top-color: rgb(10, 156, 175);
border-top-style: solid;
border-top-width: 1px;
border-right-color: rgb(10, 156, 175);
border-right-style: solid;
border-right-width: 1px;
border-bottom-color: rgb(10, 156, 175);
border-bottom-style: solid;
border-bottom-width: 1px;
border-left-color: rgb(10, 156, 175);
border-left-style: solid;
border-left-width: 1px;
border-image-source: initial;
border-image-slice: initial;
border-image-width: initial;
border-image-outset: initial;
border-image-repeat: initial;
border-radius: 4px;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
}
.gitment_title {
display: inline-block;
padding: 0 15px;
padding-top: 0px;
padding-right: 15px;
padding-bottom: 0px;
padding-left: 15px;
color: #0a9caf;
cursor: pointer;
font-size: 14px;
}
然后打開source/css/style.styl国拇,在原有文件后面添加如下代碼洛史,引入gitment相關(guān)的樣式。
@import "partial/_gitment.styl"
結(jié)束
到此為止酱吝,更新你的博客也殖。就可以看到評論了。
個人博客傳送門 detectiveHLH
github傳送門 detectiveHLH