summaryrefslogtreecommitdiffstats
path: root/js/model/Item.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/model/Item.js')
-rw-r--r--js/model/Item.js44
1 files changed, 44 insertions, 0 deletions
diff --git a/js/model/Item.js b/js/model/Item.js
new file mode 100644
index 000000000..ec3512f22
--- /dev/null
+++ b/js/model/Item.js
@@ -0,0 +1,44 @@
+/**
+ * ownCloud - News
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright Bernhard Posselt 2014
+ */
+app.factory('Item', function (Model) {
+ 'use strict';
+
+ var Item = function () {
+ Model.call(this, 'id');
+ };
+
+ Item.prototype = Object.create(Model.prototype);
+
+ Item.prototype.receive = function (value, channel) {
+ switch (channel) {
+
+ case 'newestItemId':
+ this.newestItemId = value;
+ break;
+
+ case 'starred':
+ this.starredCount = value;
+ break;
+ default:
+ Model.prototype.receive.call(this, value, channel);
+ }
+ };
+
+ Item.prototype.getNewestItemId = function () {
+ return this.newestItemId;
+ };
+
+ Item.prototype.getStarredCount = function () {
+ return this.starredCount;
+ };
+
+
+ return new Item();
+}); \ No newline at end of file