This commit is contained in:
Mo Bitar
2016-12-30 00:07:13 -06:00
parent 110dc4e758
commit d5d1b2b7f7
6 changed files with 67 additions and 93 deletions

View File

@@ -207,8 +207,9 @@ angular.module('app.frontend')
var original = this.note.presentation_name;
this.note.presentation_name = this.url.token;
modelManager.addDirtyItems([this.note]);
apiController.saveItems([this.note], function(response){
apiController.sync(function(response){
if(!response) {
this.note.presentation_name = original;
this.url.token = original;

View File

@@ -74,9 +74,7 @@ angular.module('app.frontend')
}
this.refreshData = function() {
apiController.refreshItems(function(items){
})
apiController.sync(null);
}
this.loginSubmitPressed = function() {

View File

@@ -9,9 +9,9 @@ angular.module('app.frontend')
$scope.tags = modelManager.tags;
$scope.allTag.notes = modelManager.notes;
// setInterval(function () {
// apiController.refreshItems(null);
// }, 1000);
setInterval(function () {
apiController.sync(null);
}, 1000);
// apiController.verifyEncryptionStatusOfAllItems($scope.defaultUser, function(success){});
}
@@ -51,7 +51,8 @@ angular.module('app.frontend')
}
$scope.tagsSave = function(tag, callback) {
apiController.saveItems([tag], callback);
modelManager.addDirtyItems([tag]);
apiController.sync(callback);
}
/*
@@ -65,7 +66,7 @@ angular.module('app.frontend')
modelManager.addTagToNote(newTag, originalNote);
}
apiController.saveDirtyItems(function(){});
apiController.sync(function(){});
}
/*
@@ -109,7 +110,7 @@ angular.module('app.frontend')
$scope.saveNote = function(note, callback) {
modelManager.addDirtyItems(note);
apiController.saveDirtyItems(function(){
apiController.sync(function(){
note.hasChanges = false;
if(callback) {
@@ -133,7 +134,7 @@ angular.module('app.frontend')
}
apiController.deleteItem(note, function(success){})
apiController.saveDirtyItems(function(){});
apiController.sync(function(){});
}
/*

View File

@@ -223,47 +223,31 @@ angular.module('app.frontend')
Items
*/
this.saveDirtyItems = function(callback) {
var dirtyItems = modelManager.dirtyItems;
if(dirtyItems.length == 0) {
callback();
return;
}
this.saveItems(dirtyItems, function(response){
modelManager.clearDirtyItems();
callback();
})
}
this.refreshItems = function(callback) {
var request = Restangular.one("users", this.user.uuid).one("items");
request.get(this.lastRefreshDate ? {"updated_after" : this.lastRefreshDate.toString()} : {})
.then(function(response){
this.lastRefreshDate = new Date();
var items = this.handleItemsResponse(response.items, null);
callback(items);
}.bind(this))
.catch(function(response) {
callback(response.data);
})
}
this.saveItems = function(items, callback) {
this.sync = function(callback) {
if(!this.user.uuid) {
this.writeItemsToLocalStorage();
callback();
return;
}
var request = Restangular.one("users", this.user.uuid).one("items");
request.items = _.map(items, function(item){
var dirtyItems = modelManager.dirtyItems;
var request = Restangular.one("users", this.user.uuid).one("items/sync");
request.items = _.map(dirtyItems, function(item){
return this.createRequestParamsForItem(item);
}.bind(this));
if(this.lastRefreshDate) {
request.updated_after = this.lastRefreshDate.toString();
}
request.post().then(function(response) {
var omitFields = ["content", "enc_item_key", "auth_hash"];
this.handleItemsResponse(response.items, omitFields);
callback(response);
modelManager.clearDirtyItems();
var lastUpdated = new Date(response.last_updated);
this.lastRefreshDate = lastUpdated;
this.handleItemsResponse(response.retrieved_items, null);
if(callback) {
callback(response);
}
}.bind(this))
}
@@ -328,7 +312,8 @@ angular.module('app.frontend')
var shareFn = function() {
item.presentation_name = "_auto_";
var needsUpdate = [item].concat(item.referencesAffectedBySharingChange() || []);
this.saveItems(needsUpdate, function(success){})
modelManager.addDirtyItems(needsUpdate);
this.sync();
}.bind(this)
if(!this.user.username) {
@@ -352,7 +337,8 @@ angular.module('app.frontend')
this.unshareItem = function(item, callback) {
item.presentation_name = null;
var needsUpdate = [item].concat(item.referencesAffectedBySharingChange() || []);
this.saveItems(needsUpdate, function(success){})
modelManager.addDirtyItems(needsUpdate);
this.sync(null);
}
/*
@@ -364,9 +350,8 @@ angular.module('app.frontend')
var customModelManager = new ModelManager();
customModelManager.mapResponseItemsToLocalModels(data.items);
console.log("Importing data", JSON.parse(jsonString));
this.saveItems(customModelManager.items, function(response){
callback(response);
});
modelManager.addDirtyItems(customModelManager.items);
this.sync(callback);
}
/*

View File

@@ -641,8 +641,9 @@ angular.module('app.frontend').controller('BaseCtrl', BaseCtrl);
var original = this.note.presentation_name;
this.note.presentation_name = this.url.token;
modelManager.addDirtyItems([this.note]);
apiController.saveItems([this.note], function (response) {
apiController.sync(function (response) {
if (!response) {
this.note.presentation_name = original;
this.url.token = original;
@@ -765,7 +766,7 @@ angular.module('app.frontend').controller('BaseCtrl', BaseCtrl);
};
this.refreshData = function () {
apiController.refreshItems(function (items) {});
apiController.sync(null);
};
this.loginSubmitPressed = function () {
@@ -871,9 +872,9 @@ angular.module('app.frontend').controller('BaseCtrl', BaseCtrl);
$scope.tags = modelManager.tags;
$scope.allTag.notes = modelManager.notes;
// setInterval(function () {
// apiController.refreshItems(null);
// }, 1000);
setInterval(function () {
apiController.sync(null);
}, 1000);
// apiController.verifyEncryptionStatusOfAllItems($scope.defaultUser, function(success){});
};
@@ -913,7 +914,8 @@ angular.module('app.frontend').controller('BaseCtrl', BaseCtrl);
};
$scope.tagsSave = function (tag, callback) {
apiController.saveItems([tag], callback);
modelManager.addDirtyItems([tag]);
apiController.sync(callback);
};
/*
@@ -927,7 +929,7 @@ angular.module('app.frontend').controller('BaseCtrl', BaseCtrl);
modelManager.addTagToNote(newTag, originalNote);
}
apiController.saveDirtyItems(function () {});
apiController.sync(function () {});
};
/*
@@ -971,7 +973,7 @@ angular.module('app.frontend').controller('BaseCtrl', BaseCtrl);
$scope.saveNote = function (note, callback) {
modelManager.addDirtyItems(note);
apiController.saveDirtyItems(function () {
apiController.sync(function () {
note.hasChanges = false;
if (callback) {
@@ -995,7 +997,7 @@ angular.module('app.frontend').controller('BaseCtrl', BaseCtrl);
}
apiController.deleteItem(note, function (success) {});
apiController.saveDirtyItems(function () {});
apiController.sync(function () {});
};
/*
@@ -1742,45 +1744,31 @@ var User = function User(json_obj) {
Items
*/
this.saveDirtyItems = function (callback) {
var dirtyItems = modelManager.dirtyItems;
if (dirtyItems.length == 0) {
callback();
return;
}
this.saveItems(dirtyItems, function (response) {
modelManager.clearDirtyItems();
callback();
});
};
this.refreshItems = function (callback) {
var request = Restangular.one("users", this.user.uuid).one("items");
request.get(this.lastRefreshDate ? { "updated_after": this.lastRefreshDate.toString() } : {}).then(function (response) {
this.lastRefreshDate = new Date();
var items = this.handleItemsResponse(response.items, null);
callback(items);
}.bind(this)).catch(function (response) {
callback(response.data);
});
};
this.saveItems = function (items, callback) {
this.sync = function (callback) {
if (!this.user.uuid) {
this.writeItemsToLocalStorage();
callback();
return;
}
var request = Restangular.one("users", this.user.uuid).one("items");
request.items = _.map(items, function (item) {
var dirtyItems = modelManager.dirtyItems;
var request = Restangular.one("users", this.user.uuid).one("items/sync");
request.items = _.map(dirtyItems, function (item) {
return this.createRequestParamsForItem(item);
}.bind(this));
if (this.lastRefreshDate) {
request.updated_after = this.lastRefreshDate.toString();
}
request.post().then(function (response) {
var omitFields = ["content", "enc_item_key", "auth_hash"];
this.handleItemsResponse(response.items, omitFields);
callback(response);
modelManager.clearDirtyItems();
var lastUpdated = new Date(response.last_updated);
this.lastRefreshDate = lastUpdated;
this.handleItemsResponse(response.retrieved_items, null);
if (callback) {
callback(response);
}
}.bind(this));
};
@@ -1842,7 +1830,8 @@ var User = function User(json_obj) {
var shareFn = function () {
item.presentation_name = "_auto_";
var needsUpdate = [item].concat(item.referencesAffectedBySharingChange() || []);
this.saveItems(needsUpdate, function (success) {});
modelManager.addDirtyItems(needsUpdate);
this.sync();
}.bind(this);
if (!this.user.username) {
@@ -1868,7 +1857,8 @@ var User = function User(json_obj) {
this.unshareItem = function (item, callback) {
item.presentation_name = null;
var needsUpdate = [item].concat(item.referencesAffectedBySharingChange() || []);
this.saveItems(needsUpdate, function (success) {});
modelManager.addDirtyItems(needsUpdate);
this.sync(null);
};
/*
@@ -1880,9 +1870,8 @@ var User = function User(json_obj) {
var customModelManager = new ModelManager();
customModelManager.mapResponseItemsToLocalModels(data.items);
console.log("Importing data", JSON.parse(jsonString));
this.saveItems(customModelManager.items, function (response) {
callback(response);
});
modelManager.addDirtyItems(customModelManager.items);
this.sync(callback);
};
/*

File diff suppressed because one or more lines are too long