summaryrefslogtreecommitdiffstats
path: root/module/web
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2012-12-20 15:33:01 +0100
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2012-12-20 15:33:01 +0100
commitceb59ee0739546368135b0d86a69b17c92bfbccf (patch)
tree863b70e281f8aa833d2a4a72a61f25113dd9b8e3 /module/web
parentseparated handlebars init (diff)
downloadpyload-ceb59ee0739546368135b0d86a69b17c92bfbccf.tar.xz
added models and collections for progress
Diffstat (limited to 'module/web')
-rw-r--r--module/web/static/js/collections/ProgressList.js17
-rw-r--r--module/web/static/js/models/Progress.js35
-rw-r--r--module/web/static/js/models/ServerStatus.js20
3 files changed, 72 insertions, 0 deletions
diff --git a/module/web/static/js/collections/ProgressList.js b/module/web/static/js/collections/ProgressList.js
new file mode 100644
index 000000000..1706d5f16
--- /dev/null
+++ b/module/web/static/js/collections/ProgressList.js
@@ -0,0 +1,17 @@
+define(['jquery', 'backbone', 'underscore', 'models/Progress'], function($, Backbone, _, Progress) {
+
+ return Backbone.Collection.extend({
+
+ model: Progress,
+
+ comparator: function(progress) {
+ return progress.get('eta');
+ },
+
+ initialize: function() {
+
+ }
+
+ });
+
+}); \ No newline at end of file
diff --git a/module/web/static/js/models/Progress.js b/module/web/static/js/models/Progress.js
new file mode 100644
index 000000000..ebbe34862
--- /dev/null
+++ b/module/web/static/js/models/Progress.js
@@ -0,0 +1,35 @@
+define(['jquery', 'backbone', 'underscore'], function($, Backbone, _) {
+
+ return Backbone.Model.extend({
+
+// TODO
+// idAttribute: 'fid',
+
+ defaults: {
+ plugin: null,
+ name: null,
+ statusmsg: -1,
+ eta: -1,
+ done: -1,
+ total: -1,
+ download: null
+ },
+
+
+ // Model Constructor
+ initialize: function() {
+
+ },
+
+ // Any time a model attribute is set, this method is called
+ validate: function(attrs) {
+
+ },
+
+ isDownload : function() {
+ return this.has('download')
+ }
+
+ });
+
+}); \ No newline at end of file
diff --git a/module/web/static/js/models/ServerStatus.js b/module/web/static/js/models/ServerStatus.js
new file mode 100644
index 000000000..f89282d8d
--- /dev/null
+++ b/module/web/static/js/models/ServerStatus.js
@@ -0,0 +1,20 @@
+define(['jquery', 'backbone', 'underscore'], function($, Backbone, _) {
+
+ return Backbone.Model.extend({
+
+ defaults: {
+ queuedDownloads: -1,
+ totalDownloads: -1,
+ speed: -1,
+ pause: false,
+ download: false,
+ reconnect: false,
+ },
+
+ // Model Constructor
+ initialize: function() {
+
+ }
+
+ });
+}); \ No newline at end of file