blob: 3ac0898b25eac0f8b2784790c1e302d7b3fbaeb7 [file] [log] [blame]
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
// use this file except in compliance with the License. You may obtain a copy of
// the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations under
// the License.
define([
"app",
"backbone",
"addons/fauxton/base",
"d3"
],
function (app, backbone, Fauxton) {
var Active = {},
apiv = app.versionAPI;
app.taskSortBy = 'type';
Active.Task = Backbone.Model.extend({
initialize: function() {
this.set({"id": this.get('pid')});
}
});
// ALL THE TASKS
Active.Tasks = Backbone.Model.extend({
alltypes: {
"all": "All tasks",
"replication": "Replication",
"database_compaction":" Database Compaction",
"indexer": "Indexer",
"view_compaction": "View Compaction"
},
documentation: "_active_tasks",
url: function (context) {
if (context === "apiurl"){
return window.location.origin + '/_active_tasks';
} else {
return app.host + '/_active_tasks';
}
},
fetch: function (options) {
var fetchoptions = options || {};
fetchoptions.cache = false;
return Backbone.Model.prototype.fetch.call(this, fetchoptions);
},
parse: function(resp){
var types = this.getUniqueTypes(resp),
that = this;
var typeCollections = _.reduce(types, function (collection, val, key) {
collection[key] = new Active.AllTasks(that.sortThis(resp, key));
return collection;
}, {});
typeCollections.all = new Active.AllTasks(resp);
this.set(typeCollections); //now set them all to the model
},
getUniqueTypes: function(resp){
var types = this.alltypes;
_.each(resp, function(type){
if( typeof(types[type.type]) === "undefined"){
types[type.type] = type.type.replace(/_/g,' ');
}
},this);
this.alltypes = types;
return types;
},
sortThis: function(resp, type){
return _.filter(resp, function(item) { return item.type === type; });
},
changeView: function (view){
this.set({
"currentView": view
});
},
getCurrentViewData: function(){
var currentView = this.get('currentView');
return this.get(currentView);
},
getDatabaseCompactions: function(){
return this.get('databaseCompactions');
},
getIndexes: function(){
return this.get('indexes');
},
getViewCompactions: function(){
return this.get('viewCompactions');
}
});
//ALL TASKS
//NEW IDEA. Lets make this extremely generic, so if there are new weird tasks, they get sorted and collected.
Active.AllTasks = Backbone.Collection.extend({
model: Active.Task,
sortByColumn: function(colName) {
app.taskSortBy = colName;
this.sort();
},
comparator: function(item) {
return item.get(app.taskSortBy);
}
});
return Active;
});