24 lines
784 B
JavaScript
24 lines
784 B
JavaScript
|
/* global NexT, CONFIG, DisqusJS */
|
||
|
|
||
|
document.addEventListener('page:loaded', () => {
|
||
|
if (!CONFIG.page.comments) return;
|
||
|
|
||
|
NexT.utils.loadComments('#disqus_thread')
|
||
|
.then(() => NexT.utils.getScript(CONFIG.disqusjs.js, { condition: window.DisqusJS }))
|
||
|
.then(() => {
|
||
|
window.dsqjs = new DisqusJS({
|
||
|
api : CONFIG.disqusjs.api || 'https://disqus.com/api/',
|
||
|
apikey : CONFIG.disqusjs.apikey,
|
||
|
shortname : CONFIG.disqusjs.shortname,
|
||
|
url : CONFIG.page.permalink,
|
||
|
identifier: CONFIG.page.path,
|
||
|
title : CONFIG.page.title
|
||
|
});
|
||
|
window.dsqjs.render(document.querySelector('.disqusjs-container'));
|
||
|
});
|
||
|
});
|
||
|
|
||
|
document.addEventListener('pjax:send', () => {
|
||
|
if (window.dsqjs) window.dsqjs.destroy();
|
||
|
});
|