aboutsummaryrefslogtreecommitdiff
path: root/weblog/templates
diff options
context:
space:
mode:
authorYaroslav de la Peña Smirnov <contact@yaroslavps.com>2018-10-08 00:03:23 +0300
committerYaroslav de la Peña Smirnov <contact@yaroslavps.com>2018-10-08 00:03:23 +0300
commitd42e64a09e6e1898d4423d786bc48a47a8b8fc0e (patch)
treeacae3bc901930b88742111c9da438c787cbd5707 /weblog/templates
parentbb97581d650e2d994e7b2e63297dbb2d8784f5f3 (diff)
downloadw3blog-d42e64a09e6e1898d4423d786bc48a47a8b8fc0e.tar.gz
w3blog-d42e64a09e6e1898d4423d786bc48a47a8b8fc0e.zip
dynamic (no infinite) scrolling working on categories, index (not archive)
Diffstat (limited to 'weblog/templates')
-rwxr-xr-xweblog/templates/weblog/index.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/weblog/templates/weblog/index.html b/weblog/templates/weblog/index.html
index b30c0ff..aa0b70a 100755
--- a/weblog/templates/weblog/index.html
+++ b/weblog/templates/weblog/index.html
@@ -62,6 +62,13 @@
</div>
</div>
{% endfor %}
+ {% if dynamic_load %}
+ {% if not infinite_load %}
+ <div class="nxtpage-container">
+ <a class="button nxtpage-button" href="#">{% trans 'Load more...' context 'Load more pages' %}</a>
+ </div>
+ {% endif %}
+ {% else %}
{% if last_page > 1 %}
<ul class="pagination">
{% if current_page != 1 %}
@@ -100,6 +107,7 @@
</ul>
{% endif %}
{% endif %}
+ {% endif %}
{% else %}
<div class="text-center"><h3>{% trans 'Nothing has been posted yet.' %}</h3></div>
{% endif %}
@@ -107,8 +115,30 @@
<script>
var current_page = {{ current_page }};
var last_page = {{ last_page }};
+ function loadNextPage(e){
+ try{
+ e.stopPropagation();
+ e.preventDefault();
+ }
+ catch(er){}
+ if (current_page != last_page){
+ current_page++;
+ {% if category %}
+ var url = "{% url 'weblog:GetCategoryPosts' category_slug=category.slug nxtpage=current_page %}";
+ {% else %}
+ var url = "{% url 'weblog:GetPosts' nxtpage=current_page %}";
+ {% endif %}
+ url = url.substring(0, url.length - 2)+current_page;
+ loadBlogPosts(url, current_page);
+ console.log("loading");
+ }
+ }
{% if infinite_load %}
{% else %}
+ window.addEventListener("load", function(){
+ var nxtpage_button = document.querySelector(".nxtpage-button");
+ nxtpage_button.addEventListener("click", loadNextPage);
+ });
{% endif %}
</script>
{% endif %}