From e5ccff97a68877fb03641344477dd212e702360f Mon Sep 17 00:00:00 2001 From: Marco Nassabain Date: Tue, 26 Jan 2021 18:03:42 +0100 Subject: =?UTF-8?q?=E2=9C=A8=20Shared=20menu:=20get=20and=20show=20sharedC?= =?UTF-8?q?ount?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marco Nassabain --- js/controller/NavigationController.js | 5 ++++- js/service/ItemResource.js | 10 ++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) (limited to 'js') diff --git a/js/controller/NavigationController.js b/js/controller/NavigationController.js index 2483fbd00..191618504 100644 --- a/js/controller/NavigationController.js +++ b/js/controller/NavigationController.js @@ -113,6 +113,10 @@ app.controller('NavigationController', function ($route, FEED_TYPE, FeedResource return this.getStarredCount() > 0; }; + this.getSharedCount = function () { + return ItemResource.getSharedCount(); + }; + this.isSharedUnread = function () { return true; // TODO:: waiting for Nicolas' request to receive the number of shared articles //return this.getSharedCount() > 0; @@ -156,7 +160,6 @@ app.controller('NavigationController', function ($route, FEED_TYPE, FeedResource }; this.isSharedActive = function () { - console.log('hey i\'m : ' + $route.current.$$route.type); return $route.current && $route.current.$$route.type === FEED_TYPE.SHARED; }; diff --git a/js/service/ItemResource.js b/js/service/ItemResource.js index fcfd2f28d..e0b19152a 100644 --- a/js/service/ItemResource.js +++ b/js/service/ItemResource.js @@ -20,6 +20,7 @@ app.factory('ItemResource', function (Resource, $http, BASE_URL, ITEM_BATCH_SIZE ItemResource.prototype.clear = function () { this.starredCount = 0; + this.sharedCount = 0; this.lowestId = 0; this.highestId = 0; this.fingerprints = {}; @@ -36,6 +37,10 @@ app.factory('ItemResource', function (Resource, $http, BASE_URL, ITEM_BATCH_SIZE this.starredCount = value; break; + case 'shared': + this.sharedCount = value; + break; + default: var self = this; var importValues = []; @@ -77,6 +82,11 @@ app.factory('ItemResource', function (Resource, $http, BASE_URL, ITEM_BATCH_SIZE }; + ItemResource.prototype.getSharedCount = function () { + return this.sharedCount; + }; + + ItemResource.prototype.star = function (itemId, isStarred) { if (isStarred === undefined) { isStarred = true; -- cgit v1.2.3