summaryrefslogtreecommitdiffstats
path: root/js/controller
diff options
context:
space:
mode:
authorSean Molenaar <sean@seanmolenaar.eu>2019-02-24 11:40:29 +0100
committerSean Molenaar <SMillerDev@users.noreply.github.com>2019-03-05 11:35:14 +0100
commit6a4e56e7274d85bcbd0e2dcde7a61d8f7a4397ec (patch)
tree5bafad374708f5542081592456869f6fa1226f86 /js/controller
parent45474dc86232897199382327527c7de80ec99c1c (diff)
Cleanup JS and prolong error notification
Diffstat (limited to 'js/controller')
-rw-r--r--js/controller/AppController.js3
-rw-r--r--js/controller/ContentController.js358
-rw-r--r--js/controller/ExploreController.js95
-rw-r--r--js/controller/NavigationController.js13
-rw-r--r--js/controller/SettingsController.js130
5 files changed, 290 insertions, 309 deletions
diff --git a/js/controller/AppController.js b/js/controller/AppController.js
index 310b326e0..e962bd66a 100644
--- a/js/controller/AppController.js
+++ b/js/controller/AppController.js
@@ -7,8 +7,7 @@
* @author Bernhard Posselt <dev@bernhard-posselt.com>
* @copyright Bernhard Posselt 2014
*/
-app.controller('AppController',
-function (Loading, FeedResource, FolderResource) {
+app.controller('AppController', function (Loading, FeedResource, FolderResource) {
'use strict';
this.loading = Loading;
diff --git a/js/controller/ContentController.js b/js/controller/ContentController.js
index 51f8eca69..74c475f4c 100644
--- a/js/controller/ContentController.js
+++ b/js/controller/ContentController.js
@@ -7,221 +7,213 @@
* @author Bernhard Posselt <dev@bernhard-posselt.com>
* @copyright Bernhard Posselt 2014
*/
-app.controller('ContentController',
- function (Publisher, FeedResource, ItemResource, SettingsResource, data,
- $route, $routeParams, $location, FEED_TYPE, ITEM_AUTO_PAGE_SIZE,
- Loading, $filter) {
- 'use strict';
+app.controller('ContentController', function (Publisher, FeedResource, ItemResource, SettingsResource, data, $route,
+ $routeParams, $location, FEED_TYPE, ITEM_AUTO_PAGE_SIZE, Loading,
+ $filter) {
+ 'use strict';
+
+ var self = this;
+ ItemResource.clear();
+
+ // distribute data to models based on key
+ Publisher.publishAll(data);
+
+ this.getFirstItem = function () {
+ var orderFilter = $filter('orderBy');
+ var orderedItems = orderFilter(this.getItems(), this.orderBy());
+ var firstItem = orderedItems[0];
+ if (firstItem === undefined) {
+ return undefined;
+ } else {
+ return firstItem.id;
+ }
+ };
- var self = this;
- ItemResource.clear();
- // distribute data to models based on key
- Publisher.publishAll(data);
+ this.isAutoPagingEnabled = true;
+ // the interface should show a hint if there are not enough items sent
+ // it's assumed that theres nothing to autpage
- this.getFirstItem = function () {
- var orderFilter = $filter('orderBy');
- var orderedItems = orderFilter(this.getItems(), this.orderBy());
- var firstItem = orderedItems[0];
- if (firstItem === undefined) {
- return undefined;
- } else {
- return firstItem.id;
- }
- };
+ this.isNothingMoreToAutoPage = ItemResource.size() < ITEM_AUTO_PAGE_SIZE;
+ this.getItems = function () {
+ return ItemResource.getAll();
+ };
- this.isAutoPagingEnabled = true;
- // the interface should show a hint if there are not enough items sent
- // it's assumed that theres nothing to autpage
+ this.isItemActive = function (id) {
+ return this.activeItem === id;
+ };
- if (ItemResource.size() >= ITEM_AUTO_PAGE_SIZE) {
- this.isNothingMoreToAutoPage = false;
- } else {
- this.isNothingMoreToAutoPage = true;
+ this.setItemActive = function (id) {
+ this.activeItem = id;
+ };
+
+ this.toggleStar = function (itemId) {
+ ItemResource.toggleStar(itemId);
+ };
+
+ this.toggleItem = function (item) {
+ // TODO: unittest
+ if (this.isCompactView()) {
+ item.show = !item.show;
}
+ };
- this.getItems = function () {
- return ItemResource.getAll();
- };
+ this.isShowAll = function () {
+ return SettingsResource.get('showAll');
+ };
- this.isItemActive = function (id) {
- return this.activeItem === id;
- };
+ this.markRead = function (itemId) {
+ var item = ItemResource.get(itemId);
- this.setItemActive = function (id) {
- this.activeItem = id;
- };
+ if (!item.keepUnread && item.unread === true) {
+ ItemResource.markItemRead(itemId);
+ FeedResource.markItemOfFeedRead(item.feedId);
+ }
+ };
- this.toggleStar = function (itemId) {
- ItemResource.toggleStar(itemId);
- };
+ this.getFeed = function (feedId) {
+ return FeedResource.getById(feedId);
+ };
- this.toggleItem = function (item) {
- // TODO: unittest
- if (this.isCompactView()) {
- item.show = !item.show;
- }
- };
+ this.toggleKeepUnread = function (itemId) {
+ var item = ItemResource.get(itemId);
+ if (!item.unread) {
+ FeedResource.markItemOfFeedUnread(item.feedId);
+ ItemResource.markItemRead(itemId, false);
+ }
- this.isShowAll = function () {
- return SettingsResource.get('showAll');
- };
+ item.keepUnread = !item.keepUnread;
+ };
- this.markRead = function (itemId) {
- var item = ItemResource.get(itemId);
+ var getOrdering = function () {
+ var ordering = SettingsResource.get('oldestFirst');
- if (!item.keepUnread && item.unread === true) {
- ItemResource.markItemRead(itemId);
- FeedResource.markItemOfFeedRead(item.feedId);
+ if (self.isFeed()) {
+ var feed = FeedResource.getById($routeParams.id);
+ if (feed && feed.ordering === 1) {
+ ordering = true;
+ } else if (feed && feed.ordering === 2) {
+ ordering = false;
}
- };
+ }
+
+ return ordering;
+ };
+
+ this.orderBy = function () {
+ if (getOrdering()) {
+ return 'id';
+ } else {
+ return '-id';
+ }
+ };
+
+ this.isCompactView = function () {
+ return SettingsResource.get('compact');
+ };
+
+ this.isCompactExpand = function () {
+ return SettingsResource.get('compactExpand');
+ };
+
+ this.autoPagingEnabled = function () {
+ return this.isAutoPagingEnabled;
+ };
- this.getFeed = function (feedId) {
- return FeedResource.getById(feedId);
- };
+ this.markReadEnabled = function () {
+ return !SettingsResource.get('preventReadOnScroll');
+ };
- this.toggleKeepUnread = function (itemId) {
+ this.scrollRead = function (itemIds) {
+ var ids = [];
+ var feedIds = [];
+
+ itemIds.forEach(function (itemId) {
var item = ItemResource.get(itemId);
- if (!item.unread) {
- FeedResource.markItemOfFeedUnread(item.feedId);
- ItemResource.markItemRead(itemId, false);
+ if (!item.keepUnread) {
+ ids.push(itemId);
+ feedIds.push(item.feedId);
}
+ });
- item.keepUnread = !item.keepUnread;
- };
+ if (ids.length > 0) {
+ FeedResource.markItemsOfFeedsRead(feedIds);
+ ItemResource.markItemsRead(ids);
+ }
+ };
- var getOrdering = function () {
- var ordering = SettingsResource.get('oldestFirst');
+ this.isFeed = function () {
+ return $route.current.$$route.type === FEED_TYPE.FEED;
+ };
- if (self.isFeed()) {
- var feed = FeedResource.getById($routeParams.id);
- if (feed && feed.ordering === 1) {
- ordering = true;
- } else if (feed && feed.ordering === 2) {
- ordering = false;
- }
- }
+ this.autoPage = function () {
+ if (this.isNothingMoreToAutoPage) {
+ return;
+ }
- return ordering;
- };
+ // in case a subsequent autopage request comes in wait until
+ // the current one finished and execute a request immediately
+ // afterwards
+ if (!this.isAutoPagingEnabled) {
+ this.autoPageAgain = true;
+ return;
+ }
- this.orderBy = function () {
- if (getOrdering()) {
- return 'id';
- } else {
- return '-id';
- }
- };
-
- this.isCompactView = function () {
- return SettingsResource.get('compact');
- };
-
- this.isCompactExpand = function () {
- return SettingsResource.get('compactExpand');
- };
-
- this.autoPagingEnabled = function () {
- return this.isAutoPagingEnabled;
- };
-
- this.markReadEnabled = function () {
- return !SettingsResource.get('preventReadOnScroll');
- };
-
- this.scrollRead = function (itemIds) {
- var ids = [];
- var feedIds = [];
-
- itemIds.forEach(function (itemId) {
- var item = ItemResource.get(itemId);
- if (!item.keepUnread) {
- ids.push(itemId);
- feedIds.push(item.feedId);
- }
- });
-
- if (ids.length > 0) {
- FeedResource.markItemsOfFeedsRead(feedIds);
- ItemResource.markItemsRead(ids);
- }
- };
+ this.isAutoPagingEnabled = false;
+ this.autoPageAgain = false;
- this.isFeed = function () {
- return $route.current.$$route.type === FEED_TYPE.FEED;
- };
+ var type = $route.current.$$route.type;
+ var id = $routeParams.id;
+ var oldestFirst = getOrdering();
+ var showAll = SettingsResource.get('showAll');
+ var self = this;
+ var search = $location.search().search;
- this.autoPage = function () {
- if (this.isNothingMoreToAutoPage) {
- return;
- }
+ Loading.setLoading('autopaging', true);
- // in case a subsequent autopage request comes in wait until
- // the current one finished and execute a request immediately
- // afterwards
- if (!this.isAutoPagingEnabled) {
- this.autoPageAgain = true;
- return;
- }
+ ItemResource.autoPage(type, id, oldestFirst, showAll, search).then(function (response) {
+ Publisher.publishAll(response.data);
- this.isAutoPagingEnabled = false;
- this.autoPageAgain = false;
-
- var type = $route.current.$$route.type;
- var id = $routeParams.id;
- var oldestFirst = getOrdering();
- var showAll = SettingsResource.get('showAll');
- var self = this;
- var search = $location.search().search;
-
- Loading.setLoading('autopaging', true);
-
- ItemResource.autoPage(type, id, oldestFirst, showAll, search)
- .then(function (response) {
- Publisher.publishAll(response.data);
-
- if (response.data.items.length >= ITEM_AUTO_PAGE_SIZE) {
- self.isAutoPagingEnabled = true;
- } else {
- self.isNothingMoreToAutoPage = true;
- }
-
- if (self.isAutoPagingEnabled && self.autoPageAgain) {
- self.autoPage();
- }
- return response.data;
- }, function () {
+ if (response.data.items.length >= ITEM_AUTO_PAGE_SIZE) {
self.isAutoPagingEnabled = true;
- }).finally(function () {
- Loading.setLoading('autopaging', false);
- });
- };
-
- this.getRelativeDate = function (timestamp) {
- if (timestamp !== undefined && timestamp !== '') {
- var languageCode = SettingsResource.get('language');
- var date =
- moment.unix(timestamp).locale(languageCode).fromNow() + '';
- return date;
} else {
- return '';
+ self.isNothingMoreToAutoPage = true;
}
- };
-
- this.refresh = function () {
- $route.reload();
- };
- this.getMediaType = function (type) {
- if (type && type.indexOf('audio') === 0) {
- return 'audio';
- } else if (type && type.indexOf('video') === 0) {
- return 'video';
- } else {
- return undefined;
+ if (self.isAutoPagingEnabled && self.autoPageAgain) {
+ self.autoPage();
}
- };
+ return response.data;
+ }, function () {
+ self.isAutoPagingEnabled = true;
+ }).finally(function () {
+ Loading.setLoading('autopaging', false);
+ });
+ };
+
+ this.getRelativeDate = function (timestamp) {
+ if (timestamp !== undefined && timestamp !== '') {
+ var languageCode = SettingsResource.get('language');
+ return moment.unix(timestamp).locale(languageCode).fromNow() + '';
+ } else {
+ return '';
+ }
+ };
+
+ this.refresh = function () {
+ $route.reload();
+ };
+
+ this.getMediaType = function (type) {
+ if (type && type.indexOf('audio') === 0) {
+ return 'audio';
+ } else if (type && type.indexOf('video') === 0) {
+ return 'video';
+ } else {
+ return undefined;
+ }
+ };
- this.activeItem = this.getFirstItem();
- }); \ No newline at end of file
+ this.activeItem = this.getFirstItem();
+}); \ No newline at end of file
diff --git a/js/controller/ExploreController.js b/js/controller/ExploreController.js
index 08c1ee251..6d34efb40 100644
--- a/js/controller/ExploreController.js
+++ b/js/controller/ExploreController.js
@@ -7,52 +7,51 @@
* @author Bernhard Posselt <dev@bernhard-posselt.com>
* @copyright Bernhard Posselt 2014
*/
-app.controller('ExploreController',
-function (sites, $rootScope, FeedResource, SettingsResource, $location) {
- 'use strict';
-
- this.sites = sites;
- // join all sites
- this.feeds = Object.keys(sites).map(function (key) {
- return [key, sites[key]];
- }).reduce(function (xs, x) {
- var category = x[0];
- var feedList = x[1];
- feedList.forEach(function (feed) {
- feed.category = category;
- });
- return xs.concat(feedList);
- }, []);
-
- this.feedExists = function (location) {
- return FeedResource.getByLocation(location) !== undefined;
- };
-
- this.subscribeTo = function (location) {
- $rootScope.$broadcast('addFeed', location);
- };
-
- this.isCategoryShown = function (data) {
- return data.filter(function (element) {
- return FeedResource.getByLocation(element.feed) === undefined;
- }).length > 0;
- };
-
- this.getSupportedLanguageCodes = function () {
- return SettingsResource.getSupportedLanguageCodes();
- };
-
- this.getCurrentLanguageCode = function () {
- var language = $location.search().lang;
- if (!language) {
- language = SettingsResource.get('language');
- }
- return language;
- };
-
- this.showLanguage = function (languageCode) {
- $location.url('/explore/?lang=' + languageCode);
- };
-
- this.selectedLanguageCode = this.getCurrentLanguageCode();
+app.controller('ExploreController', function (sites, $rootScope, FeedResource, SettingsResource, $location) {
+ 'use strict';
+
+ this.sites = sites;
+ // join all sites
+ this.feeds = Object.keys(sites).map(function (key) {
+ return [key, sites[key]];
+ }).reduce(function (xs, x) {
+ var category = x[0];
+ var feedList = x[1];
+ feedList.forEach(function (feed) {
+ feed.category = category;
+ });
+ return xs.concat(feedList);
+ }, []);
+
+ this.feedExists = function (location) {
+ return FeedResource.getByLocation(location) !== undefined;
+ };
+
+ this.subscribeTo = function (location) {
+ $rootScope.$broadcast('addFeed', location);
+ };
+
+ this.isCategoryShown = function (data) {
+ return data.filter(function (element) {
+ return FeedResource.getByLocation(element.feed) === undefined;
+ }).length > 0;
+ };
+
+ this.getSupportedLanguageCodes = function () {
+ return SettingsResource.getSupportedLanguageCodes();
+ };
+
+ this.getCurrentLanguageCode = function () {
+ var language = $location.search().lang;
+ if (!language) {
+ language = SettingsResource.get('language');
+ }
+ return language;
+ };
+
+ this.showLanguage = function (languageCode) {
+ $location.url('/explore/?lang=' + languageCode);
+ };
+
+ this.selectedLanguageCode = this.getCurrentLanguageCode();
});
diff --git a/js/controller/NavigationController.js b/js/controller/NavigationController.js
index 812c2b2bd..e79202574 100644
--- a/js/controller/NavigationController.js
+++ b/js/controller/NavigationController.js
@@ -7,9 +7,8 @@
* @author Bernhard Posselt <dev@bernhard-posselt.com>
* @copyright Bernhard Posselt 2014
*/
-app.controller('NavigationController',
-function ($route, FEED_TYPE, FeedResource, FolderResource, ItemResource,
- SettingsResource, Publisher, $rootScope, $location, $q) {
+app.controller('NavigationController', function ($route, FEED_TYPE, FeedResource, FolderResource, ItemResource,
+ SettingsResource, Publisher, $rootScope, $location, $q) {
'use strict';
this.feedError = '';
@@ -84,7 +83,7 @@ function ($route, FEED_TYPE, FeedResource, FolderResource, ItemResource,
return this.getFeedUnreadCount(feedId) > 0;
};
- this.getFolderUnreadCount= function (folderId) {
+ this.getFolderUnreadCount = function (folderId) {
return FeedResource.getFolderUnreadCount(folderId);
};
@@ -175,15 +174,11 @@ function ($route, FEED_TYPE, FeedResource, FolderResource, ItemResource,
// is closed or has no unread articles
existingFolder.getsFeed = true;
- FeedResource.create(feed.url, existingFolder.id, undefined,
- feed.user, feed.password)
- .then(function (data) {
-
+ FeedResource.create(feed.url, existingFolder.id, undefined, feed.user, feed.password).then(function (data) {
Publisher.publishAll(data);
// set folder as default
$location.path('/items/feeds/' + data.feeds[0].id + '/');
-
}).finally(function () {
existingFolder.getsFeed = undefined;
feed.url = '';
diff --git a/js/controller/SettingsController.js b/js/controller/SettingsController.js
index c20f801c8..2f8a1107c 100644
--- a/js/controller/SettingsController.js
+++ b/js/controller/SettingsController.js
@@ -7,84 +7,80 @@
* @author Bernhard Posselt <dev@bernhard-posselt.com>
* @copyright Bernhard Posselt 2014
*/
-app.controller('SettingsController',
- function ($route, $q, SettingsResource, ItemResource, OPMLParser,
- OPMLImporter, Publisher) {
- 'use strict';
- this.isOPMLImporting = false;
- this.isArticlesImporting = false;
- this.opmlImportError = false;
- this.articleImportError = false;
- this.opmlImportEmptyError = false;
- var self = this;
-
- var set = function (key, value) {
- SettingsResource.set(key, value);
+app.controller('SettingsController', function ($route, $q, SettingsResource, ItemResource, OPMLParser, OPMLImporter,
+ Publisher) {
+ 'use strict';
+ this.isOPMLImporting = false;
+ this.isArticlesImporting = false;
+ this.opmlImportError = false;
+ this.articleImportError = false;
+ this.opmlImportEmptyError = false;
+ var self = this;
- if (['showAll', 'oldestFirst', 'compact'].indexOf(key) >= 0) {
- $route.reload();
- }
- };
+ var set = function (key, value) {
+ SettingsResource.set(key, value);
- this.toggleSetting = function (key) {
- set(key, !this.getSetting(key));
- };
+ if (['showAll', 'oldestFirst', 'compact'].indexOf(key) >= 0) {
+ $route.reload();
+ }
+ };
- this.getSetting = function (key) {
- return SettingsResource.get(key);
- };
+ this.toggleSetting = function (key) {
+ set(key, !this.getSetting(key));
+ };
- this.importOPML = function (content) {
- self.opmlImportError = false;
- self.opmlImportEmptyError = false;
- self.articleImportError = false;
+ this.getSetting = function (key) {
+ return SettingsResource.get(key);
+ };
- try {
- this.isOPMLImporting = false;
- var parsedContent = OPMLParser.parse(content);
+ this.importOPML = function (fileContent) {
+ self.opmlImportError = false;
+ self.opmlImportEmptyError = false;
+ self.articleImportError = false;
- var jobSize = 5;
+ try {
+ this.isOPMLImporting = false;
+ var parsedContent = OPMLParser.parse(fileContent);
- if (parsedContent.folders.length === 0 &&
- parsedContent.feeds.length === 0) {
- self.opmlImportEmptyError = true;
- } else {
- OPMLImporter.importFolders(parsedContent)
- .then(function (feedQueue) {
- return OPMLImporter.importFeedQueue(feedQueue,
- jobSize);
- }).finally(function () {
- self.isOPMLImporting = false;
- });
- }
+ var jobSize = 5;
- } catch (error) {
- this.opmlImportError = true;
- console.error(error);
- this.isOPMLImporting = false;
+ if (parsedContent.folders.length === 0 &&
+ parsedContent.feeds.length === 0) {
+ self.opmlImportEmptyError = true;
+ } else {
+ OPMLImporter.importFolders(parsedContent).then(function (feedQueue) {
+ return OPMLImporter.importFeedQueue(feedQueue, jobSize);
+ }).finally(function () {
+ self.isOPMLImporting = false;
+ });
}
- };
- this.importArticles = function (content) {
- this.opmlImportError = false;
- this.articleImportError = false;
+ } catch (error) {
+ this.opmlImportError = true;
+ console.error(error);
+ this.isOPMLImporting = false;
+ }
+ };
- try {
- this.isArticlesImporting = true;
- var articles = JSON.parse(content);
+ this.importArticles = function (content) {
+ this.opmlImportError = false;
+ this.articleImportError = false;
- var self = this;
- ItemResource.importArticles(articles).then(function (data) {
- Publisher.publishAll(data);
- }).finally(function () {
- self.isArticlesImporting = false;
- });
+ try {
+ this.isArticlesImporting = true;
+ var articles = JSON.parse(content);
- } catch (error) {
- console.error(error);
- this.articleImportError = true;
- this.isArticlesImporting = false;
- }
- };
+ var self = this;
+ ItemResource.importArticles(articles).then(function (data) {
+ Publisher.publishAll(data);
+ }).finally(function () {
+ self.isArticlesImporting = false;
+ });
- }); \ No newline at end of file
+ } catch (error) {
+ console.error(error);
+ this.articleImportError = true;
+ this.isArticlesImporting = false;
+ }
+ };
+});