2025-07-10 10:56:43 +08:00

22 lines
727 B
JavaScript

/* global NexT, CONFIG, DisqusJS */
document.addEventListener('page:loaded', async () => {
if (!CONFIG.page.comments) return;
await NexT.utils.loadComments('#disqus_thread');
await NexT.utils.getScript(CONFIG.disqusjs.js, { condition: window.DisqusJS });
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();
});