From c3aa3555554f9017e4996c8e08d656e9d5bbd3a3 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Sun, 29 Jun 2014 13:26:07 +0200 Subject: Improved read/unread JS function. --- pyaggr3g470r/static/js/articles.js | 7 +++++++ pyaggr3g470r/templates/home.html | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/pyaggr3g470r/static/js/articles.js b/pyaggr3g470r/static/js/articles.js index 990f293c..bd4e9627 100644 --- a/pyaggr3g470r/static/js/articles.js +++ b/pyaggr3g470r/static/js/articles.js @@ -25,6 +25,7 @@ if (typeof jQuery === 'undefined') { throw new Error('Requires jQuery') } // Mark an article as read or unread. $('.readed').on('click', function() { var article_id = $(this).parent().parent().parent().attr("data-article"); + var feed_id = $(this).parent().parent().parent().attr("data-feed"); var filter = $('#filters').attr("data-filter"); var data; @@ -34,10 +35,13 @@ if (typeof jQuery === 'undefined') { throw new Error('Requires jQuery') } }) if (filter == "read") { $(this).parent().parent().parent().remove(); + $("#total-unread").text(parseInt($("#total-unread").text()) - 1); + $("#unread-"+feed_id).text(parseInt($("#unread-"+feed_id).text()) + 1); } else { // here, filter == "all" $(this).removeClass('glyphicon-unchecked').addClass('glyphicon-check'); + $("#unread-"+feed_id).text(parseInt($("#unread-"+feed_id).text()) + 1); } } else { @@ -46,10 +50,13 @@ if (typeof jQuery === 'undefined') { throw new Error('Requires jQuery') } }) if (filter == "unread") { $(this).parent().parent().parent().remove(); + $("#total-unread").text(parseInt($("#total-unread").text()) - 1); + $("#unread-"+feed_id).text(parseInt($("#unread-"+feed_id).text()) - 1); } else { // here, filter == "all" $(this).removeClass('glyphicon-check').addClass('glyphicon-unchecked'); + $("#unread-"+feed_id).text(parseInt($("#unread-"+feed_id).text()) - 1); } } diff --git a/pyaggr3g470r/templates/home.html b/pyaggr3g470r/templates/home.html index 2a9fac48..a8b0e7bc 100644 --- a/pyaggr3g470r/templates/home.html +++ b/pyaggr3g470r/templates/home.html @@ -21,7 +21,7 @@ {% for fid, nbunread in unread|dictsort(by='value')|reverse %}
  • {% if feed_id == fid %}{% endif %} - {{ nbunread }} + {{ nbunread }} {{ feeds[fid]|safe }} {% if feed_id == fid %}{% endif %}
  • @@ -50,7 +50,7 @@
    -

    {{ _('Articles') }} ({{ articles.__len__() }})

    +

    {{ _('Articles') }} ({{ articles.__len__() }})

    {% if filter_ == 'all' %}{% endif %} {{ _('All') }} -- cgit