summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorJimmy Huynh <jimmy.huynh@etu.unistra.fr>2021-01-26 15:54:49 +0100
committerSean Molenaar <SMillerDev@users.noreply.github.com>2021-04-08 23:17:31 +0200
commit0d5443d6eed1e1ba8ff248f72e940734d470f689 (patch)
tree06e6c41ae63ab724086caf116a94c1b294907e47 /js
parent1ff8c26ac079c55602217bcbabf344955d6af33a (diff)
(+) sharedButton
Signed-off-by: Marco Nassabain <marco.nassabain@hotmail.com>
Diffstat (limited to 'js')
-rw-r--r--js/app/Run.js5
-rw-r--r--js/controller/NavigationController.js3
2 files changed, 5 insertions, 3 deletions
diff --git a/js/app/Run.js b/js/app/Run.js
index 1a1572864..2081cd1a3 100644
--- a/js/app/Run.js
+++ b/js/app/Run.js
@@ -44,11 +44,12 @@ app.run(function ($rootScope, $location, $http, $q, $interval, $route, Loading,
case FEED_TYPE.STARRED:
url = '/items/starred';
break;
-
+ case FEED_TYPE.SHARED:
+ url = '/items/shared';
+ break;
case FEED_TYPE.EXPLORE:
url = '/explore';
break;
-
case FEED_TYPE.UNREAD:
url = '/items/unread';
break;
diff --git a/js/controller/NavigationController.js b/js/controller/NavigationController.js
index 4782ff114..4ff3d2b7d 100644
--- a/js/controller/NavigationController.js
+++ b/js/controller/NavigationController.js
@@ -114,7 +114,7 @@ app.controller('NavigationController', function ($route, FEED_TYPE, FeedResource
};
this.isSharedUnread = function () {
- return true;
+ return true; // TODO:: waiting for Nicolas' request to receive the number of shared articles
//return this.getSharedCount() > 0;
};
@@ -156,6 +156,7 @@ 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;
};