mirror of https://gitee.com/bigwinds/arangodb
104 lines
3.1 KiB
JavaScript
104 lines
3.1 KiB
JavaScript
/*jslint indent: 2, nomen: true, maxlen: 100, sloppy: true, vars: true, white: true, plusplus: true */
|
|
/*global require, exports */
|
|
window.arangoCollections = Backbone.Collection.extend({
|
|
comparator : function(model) {
|
|
return model.get('name').toLowerCase();
|
|
},
|
|
|
|
url: '/_api/collection',
|
|
parse: function(response) {
|
|
$.each(response.collections, function(key, val) {
|
|
if (val.status == 2) {
|
|
val.status = 'unloaded';
|
|
}
|
|
else if (val.status == 3) {
|
|
val.status = 'loaded';
|
|
}
|
|
});
|
|
return response.collections;
|
|
},
|
|
model: arangoCollection,
|
|
getProperties: function (id) {
|
|
var data2;
|
|
$.ajax({
|
|
type: "GET",
|
|
url: "/_api/collection/" + id + "/properties",
|
|
contentType: "application/json",
|
|
processData: false,
|
|
async: false,
|
|
success: function(data) {
|
|
data2 = data;
|
|
},
|
|
error: function(data) {
|
|
console.log("get properties failed");
|
|
data2 = data;
|
|
}
|
|
});
|
|
return data2;
|
|
},
|
|
checkCollectionName: function (name) {
|
|
|
|
},
|
|
renameCollection: function (id, name) {
|
|
$.ajax({
|
|
type: "PUT",
|
|
async: false, // sequential calls!
|
|
url: "/_api/collection/" + id + "/rename",
|
|
data: '{"name":"' + name + '"}',
|
|
contentType: "application/json",
|
|
processData: false,
|
|
success: function(data) {
|
|
alert("Collection renamed");
|
|
},
|
|
error: function(data) {
|
|
alert(getErrorMessage(data));
|
|
failed = true;
|
|
}
|
|
});
|
|
},
|
|
changeCollection: function (id, wfs, journalSize) {
|
|
$.ajax({
|
|
type: "PUT",
|
|
async: false, // sequential calls!
|
|
url: "/_api/collection/" + id + "/properties",
|
|
data: '{"waitForSync":' + wfs + ',"journalSize":' + JSON.stringify(journalSize) + '}',
|
|
contentType: "application/json",
|
|
processData: false,
|
|
success: function(data) {
|
|
alert("Saved collection properties");
|
|
},
|
|
error: function(data) {
|
|
alert(getErrorMessage(data));
|
|
failed = true;
|
|
}
|
|
});
|
|
},
|
|
deleteCollection: function (id) {
|
|
|
|
},
|
|
loadCollection: function (id) {
|
|
$.ajax({
|
|
type: 'PUT',
|
|
url: "/_api/collection/" + id + "/load",
|
|
success: function () {
|
|
},
|
|
error: function (data) {
|
|
var temp = JSON.parse(data.responseText);
|
|
alert("Error: " + JSON.stringify(temp.errorMessage));
|
|
}
|
|
});
|
|
},
|
|
unloadCollection: function (id) {
|
|
$.ajax({
|
|
type: 'PUT',
|
|
url: "/_api/collection/" + id + "/unload",
|
|
success: function () {
|
|
},
|
|
error: function () {
|
|
var temp = JSON.parse(data.responseText);
|
|
alert("Error: " + JSON.stringify(temp.errorMessage));
|
|
}
|
|
});
|
|
}
|
|
});
|