Skip auto saving when moving through history of changes

[MAILPOET-1976]
This commit is contained in:
Ján Mikláš
2019-05-29 19:55:04 +02:00
committed by M. Shull
parent ae664de002
commit 3ff1a6f83d

View File

@@ -11,6 +11,7 @@ import _ from 'underscore';
var Module = {};
var saveTimeout;
var skipNextAutoSave;
// Save editor contents to server
Module.save = function () {
@@ -292,6 +293,10 @@ Module.autoSave = function () {
Module._cancelAutosave();
saveTimeout = setTimeout(function () {
if (skipNextAutoSave) {
skipNextAutoSave = false;
return;
}
App.getChannel().request('save').always(function () {
Module._cancelAutosave();
});
@@ -305,6 +310,10 @@ Module._cancelAutosave = function () {
saveTimeout = undefined;
};
Module.onHistoryUpdate = function onHistoryUpdate() {
skipNextAutoSave = true;
};
Module.beforeExitWithUnsavedChanges = function (e) {
var message;
var event;
@@ -325,6 +334,7 @@ App.on('before:start', function (BeforeStartApp) {
var Application = BeforeStartApp;
Application.save = Module.save;
Application.getChannel().on('autoSave', Module.autoSave);
Application.getChannel().on('historyUpdate', Module.onHistoryUpdate);
window.onbeforeunload = Module.beforeExitWithUnsavedChanges;