summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2012-10-12 17:54:51 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2012-10-12 17:54:51 +0200
commit95542f96ebf58cf48e7ca44d18a4c30724873f93 (patch)
tree5475c6dcee7bc2a8e2d490e07e01a1ca1648bec1 /js
parent22b1cae7624d345c6c93d3dcc66ca2cae91c9857 (diff)
removed linter errors on parseInt, added the most recent timestamp and id to the load command
Diffstat (limited to 'js')
-rw-r--r--js/items.js65
-rw-r--r--js/menu.js27
2 files changed, 55 insertions, 37 deletions
diff --git a/js/items.js b/js/items.js
index 8541b0031..76b6df5d9 100644
--- a/js/items.js
+++ b/js/items.js
@@ -70,7 +70,7 @@ var News = News || {};
* @param item the dom item
*/
Items.prototype._markItemAsReadTimeout = function(item) {
- var itemId = parseInt($(item).data('id'));
+ var itemId = parseInt($(item).data('id'), 10);
var itemOffset = $(item).position().top;
var cachedItem = this._itemCache.getItem(itemId);
if(itemOffset < 0){
@@ -96,7 +96,8 @@ var News = News || {};
var data = {
id: id,
type: type,
- mostRecentItemId: this._itemCache.getMostRecentItemId(type, id)
+ mostRecentItemId: this._itemCache.getMostRecentItemId(),
+ mostRecentItemTimestamp: this._itemCache.getMostRecentItemTimestamp()
};
this._$articleList.addClass('loading');
@@ -133,7 +134,7 @@ var News = News || {};
var notJumped = true;
$('.feed_item').each(function(){
if(notJumped && $(this).position().top > 1){
- var id = parseInt($(this).data('id'));
+ var id = parseInt($(this).data('id'), 10);
self._jumpToElemenId(id);
notJumped = false;
}
@@ -150,7 +151,7 @@ var News = News || {};
if(notJumped && $(this).position().top >= 0){
var previous = $(this).prev();
if(previous.length > 0){
- var id = parseInt(previous.data('id'));
+ var id = parseInt(previous.data('id'), 10);
self._jumpToElemenId(id);
}
notJumped = false;
@@ -161,7 +162,7 @@ var News = News || {};
if(notJumped){
var $items = $('.feed_item');
if($items.length > 0){
- var id = parseInt($items.last().data('id'));
+ var id = parseInt($items.last().data('id'), 10);
self._jumpToElemenId(id);
}
}
@@ -220,7 +221,7 @@ var News = News || {};
* @return the jquery node
*/
Items.prototype._findNodeById = function(id) {
- id = parseInt(id);
+ id = parseInt(id, 10);
return this._$articleList.find('.feed_item[data-id="' + id + '"]');
};
@@ -252,13 +253,15 @@ var News = News || {};
var ItemCache = function() {
this._items = {};
this._feeds = {};
+ this._itemIds = [];
+ this._itemTimestamps = [];
};
/**
* Returns an item from the cache
*/
ItemCache.prototype.getItem = function(itemId) {
- itemId = parseInt(itemId);
+ itemId = parseInt(itemId, 10);
return this._items[itemId];
};
@@ -289,6 +292,8 @@ var News = News || {};
self._items[item.getId()] = item;
self._feeds[item.getFeedId()] = self._feeds[item.getFeedId()] || {};
self._feeds[item.getFeedId()][item.getId()] = item;
+ self._itemIds.push(item.getId());
+ self._itemTimestamps.push(item.getTimeStamp());
});
};
@@ -298,6 +303,8 @@ var News = News || {};
ItemCache.prototype.empty = function() {
this._items = {};
this._feeds = {};
+ this._itemIds = [];
+ this._itemTimestamps = [];
};
@@ -343,12 +350,13 @@ var News = News || {};
return pairs;
};
+
/**
- * Returns all the ids of feeds for a type sorted by timestamp ascending
- * @param type the type (MenuNodeType)
- * @param id the id
- * @return all the ids of feeds for a type sorted by timestamp ascending
- */
+ * Returns all the ids of feeds for a type sorted by timestamp ascending
+ * @param type the type (MenuNodeType)
+ * @param id the id
+ * @return all the ids of feeds for a type sorted by timestamp ascending
+ */
ItemCache.prototype._getSortedItemIds = function(type, id) {
var pairs = this._getItemIdTimestampPairs(type, id);
@@ -363,22 +371,33 @@ var News = News || {};
return itemIds;
};
+
/**
- * Returns the most recent id of a feed
- * @param type the type (MenuNodeType)
- * @param id the id
- * @return the most recent id that is loaded on the page or 0
+ * @return the most recent id that is loaded on the page or 0 if no ids are there
*/
- ItemCache.prototype.getMostRecentItemId = function(type, id) {
- var itemIds = this._getSortedItemIds(type, id);
- if(itemIds.length === 0){
+ ItemCache.prototype.getMostRecentItemId = function() {
+ if(this._itemIds.length === 0){
return 0;
} else {
- return itemIds[itemIds.length-1];
+ this.itemIds = this._itemIds.sort();
+ return this.itemIds[this.itemIds.length-1];
}
};
/**
+ * @return the most recent timestamp that is loaded on the page or 0 if no ids are there
+ */
+ ItemCache.prototype.getMostRecentItemTimestamp = function() {
+ if(this._itemTimestamps.length === 0){
+ return 0;
+ } else {
+ this._itemTimestamps = this._itemTimestamps.sort();
+ return this._itemTimestamps[this._itemTimestamps.length-1];
+ }
+ };
+
+
+ /**
* Returns the html for a specific feed
* @param type the type (MenuNodeType)
* @param id the id
@@ -412,14 +431,14 @@ var News = News || {};
var Item = function(html){
this._starred = false;
this._$html = $(html);
- this._id = parseInt(this._$html.data('id'));
- this._feedId = parseInt(this._$html.data('feedid'));
+ this._id = parseInt(this._$html.data('id'), 10);
+ this._feedId = parseInt(this._$html.data('feedid'), 10);
this._read = this._$html.hasClass('read');
this._locked = false;
this._important = this._$html.find('li.star').hasClass('important');
// get timestamp for sorting
var $stamp = this._$html.find('.timestamp');
- this._timestamp = parseInt($stamp.html());
+ this._timestamp = parseInt($stamp.html(), 10);
$stamp.remove();
// open all links in new tabs
this._$html.find('.body a').attr('target', '_blank');
diff --git a/js/menu.js b/js/menu.js
index 90c623f6f..bdb8e8442 100644
--- a/js/menu.js
+++ b/js/menu.js
@@ -135,7 +135,7 @@ var News = News || {};
* @param html the html to add
*/
Menu.prototype.addNode = function(parentId, html){
- parentId = parseInt(parentId);
+ parentId = parseInt(parentId, 10);
var $parentNode;
var $html = $(html);
@@ -172,7 +172,7 @@ var News = News || {};
*/
Menu.prototype.updateNode = function(type, id, data){
var $node = this._getNodeFromTypeAndId(type, id);
- id = parseInt(id);
+ id = parseInt(id, 10);
if(data.title !== undefined){
// prevent xss
@@ -188,10 +188,10 @@ var News = News || {};
/**
* Removes a node and its subnodes from the menu
* @param type the type (MenuNodeType)
- * @param id the id
+ * @param id the id
*/
Menu.prototype.removeNode = function(type, id){
- id = parseInt(id);
+ id = parseInt(id, 10);
var $node = this._getNodeFromTypeAndId(type, id);
$node.remove();
};
@@ -276,9 +276,9 @@ var News = News || {};
*/
Menu.prototype.getFeedIdsOfFolder = function(folderId) {
$folder = this._getNodeFromTypeAndId(MenuNodeType.Folder, folderId);
- var ids = new Array();
+ var ids = [];
$folder.children('ul').children('li').each(function(){
- ids.push(parseInt($(this).data('id')));
+ ids.push(parseInt($(this).data('id'), 10));
});
return ids;
};
@@ -546,7 +546,6 @@ var News = News || {};
Menu.prototype._edit = function(type, id){
var $node = this._getNodeFromTypeAndId(type, id);
var name = $node.children('.title').html();
- var id = $node.data('id');
$('#changefolder_dialog').find('input[type=text]').val(name);
$('#changefolder_dialog').find('input[type=hidden]').val(id);
$('#changefolder_dialog').dialog('open');
@@ -590,7 +589,7 @@ var News = News || {};
$.post(OC.filePath('news', 'ajax', 'setallitemsread.php'), data, function(jsonData) {
if(jsonData.status == 'success'){
- self._setUnreadCount(type, id, parseInt(jsonData.data.unreadCount));
+ self._setUnreadCount(type, id, parseInt(jsonData.data.unreadCount, 10));
} else {
OC.dialogs.alert(jsonData.data.message, t('news', 'Error'));
}
@@ -692,7 +691,7 @@ var News = News || {};
*/
Menu.prototype._getAndRemoveUnreadCount = function($listItem){
var $unreadCounter = $listItem.children('.unread_items_counter');
- var unreadCount = parseInt($unreadCounter.html());
+ var unreadCount = parseInt($unreadCounter.html(), 10);
$unreadCounter.remove();
return unreadCount;
};
@@ -720,7 +719,7 @@ var News = News || {};
*/
Menu.prototype._getIdAndTypeFromNode = function($listItem) {
return {
- id: parseInt($listItem.data('id')),
+ id: parseInt($listItem.data('id'), 10),
type: this._listItemToMenuNodeType($listItem)
};
};
@@ -782,7 +781,7 @@ var News = News || {};
* @param unreadCount the count of unread items
*/
Menu.prototype._setUnreadCount = function(type, id, unreadCount){
- unreadCount = parseInt(unreadCount);
+ unreadCount = parseInt(unreadCount, 10);
if(unreadCount < 0){
unreadCount = 0;
}
@@ -865,9 +864,9 @@ var News = News || {};
var $dropped = $(this);
var $dragged = $(ui.draggable);
- var feedId = parseInt($dragged.data('id'));
- var folderId = parseInt($dropped.data('id'));
- var fromFolderId = parseInt($dragged.parent().data('id'));
+ var feedId = parseInt($dragged.data('id'), 10);
+ var folderId = parseInt($dropped.data('id'), 10);
+ var fromFolderId = parseInt($dragged.parent().data('id'), 10);
// ignore when dragged to the same folder
if(folderId === fromFolderId){