|
|
|
@ -54,45 +54,6 @@ define(["dojo/_base/declare", "dijit/tree/ForestStoreModel"], function (declare)
|
|
|
|
|
if (treeItem)
|
|
|
|
|
return this.store.setValue(treeItem, key, value);
|
|
|
|
|
},
|
|
|
|
|
getNextUnreadFeed: function (feed, is_cat) {
|
|
|
|
|
if (!this.store._itemsByIdentity)
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
let treeItem;
|
|
|
|
|
|
|
|
|
|
if (is_cat) {
|
|
|
|
|
treeItem = this.store._itemsByIdentity['CAT:' + feed];
|
|
|
|
|
} else {
|
|
|
|
|
treeItem = this.store._itemsByIdentity['FEED:' + feed];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const items = this.store._arrayOfAllItems;
|
|
|
|
|
|
|
|
|
|
for (let i = 0; i < items.length; i++) {
|
|
|
|
|
if (items[i] == treeItem) {
|
|
|
|
|
|
|
|
|
|
for (let j = i + 1; j < items.length; j++) {
|
|
|
|
|
const unread = this.store.getValue(items[j], 'unread');
|
|
|
|
|
const id = this.store.getValue(items[j], 'id');
|
|
|
|
|
|
|
|
|
|
if (unread > 0 && ((is_cat && id.match("CAT:")) || (!is_cat && id.match("FEED:")))) {
|
|
|
|
|
if (!is_cat || !(this.store.hasAttribute(items[j], 'parent_id') && this.store.getValue(items[j], 'parent_id') == feed)) return items[j];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (let j = 0; j < i; j++) {
|
|
|
|
|
const unread = this.store.getValue(items[j], 'unread');
|
|
|
|
|
const id = this.store.getValue(items[j], 'id');
|
|
|
|
|
|
|
|
|
|
if (unread > 0 && ((is_cat && id.match("CAT:")) || (!is_cat && id.match("FEED:")))) {
|
|
|
|
|
if (!is_cat || !(this.store.hasAttribute(items[j], 'parent_id') && this.store.getValue(items[j], 'parent_id') == feed)) return items[j];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
},
|
|
|
|
|
hasCats: function () {
|
|
|
|
|
if (this.store && this.store._itemsByIdentity)
|
|
|
|
|
return this.store._itemsByIdentity['CAT:-1'] != undefined;
|
|
|
|
|