Skip to content

Commit

Permalink
Update disqus.html
Browse files Browse the repository at this point in the history
  • Loading branch information
chanyongp committed Apr 14, 2024
1 parent e41811a commit 1bbcd16
Showing 1 changed file with 50 additions and 2 deletions.
52 changes: 50 additions & 2 deletions _includes/comments/disqus.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% if page.comments %}
<!-- {% if page.comments %}
<div id="disqus_thread"></div>
<script>
/**
Expand All @@ -19,4 +19,52 @@
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by
Disqus.</a></noscript>
{% endif %}
{% endif %} -->

<div id="disqus_thread">
<p class="text-center text-muted small">Comments powered by <a href="https://disqus.com/">Disqus</a>.</p>
</div>
<script type="text/javascript">
var disqus_config = function () {
this.page.url = '{{ page.url | absolute_url }}';
this.page.identifier = '{{ page.url }}';
};

/* Lazy loading */
var disqus_observer = new IntersectionObserver(
function (entries) {
if (entries[0].isIntersecting) {
(function () {
var d = document,
s = d.createElement('script');
s.src = 'https://{{ site.comments.disqus.shortname }}.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();

disqus_observer.disconnect();
}
},
{ threshold: [0] }
);

disqus_observer.observe(document.querySelector('#disqus_thread'));

/* Auto switch theme */
function reloadDisqus() {
if (event.source === window && event.data && event.data.direction === ModeToggle.ID) {
/* Disqus hasn't been loaded */
if (typeof DISQUS === 'undefined') {
return;
}

if (document.readyState == 'complete') {
DISQUS.reset({ reload: true, config: disqus_config });
}
}
}

if (document.querySelector('.mode-toggle')) {
window.addEventListener('message', reloadDisqus);
}
</script>

0 comments on commit 1bbcd16

Please sign in to comment.