Commit ffc55535 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

Добавил asc_stopSaving и asc_continueSaving для остановки и возобновлении...

Добавил asc_stopSaving и asc_continueSaving для остановки и возобновлении сохранения на время, пока показывается сообщение об уходе со страницы (т.к. при уходе проскакивает таймер автосохранения).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@61820 954022d7-b5bf-4e40-9824-e11837661b57
parent a6338271
...@@ -109,7 +109,8 @@ var ASC_DOCS_API_USE_EMBEDDED_FONTS = "@@ASC_DOCS_API_USE_EMBEDDED_FONTS"; ...@@ -109,7 +109,8 @@ var ASC_DOCS_API_USE_EMBEDDED_FONTS = "@@ASC_DOCS_API_USE_EMBEDDED_FONTS";
this.autoSaveGap = 0; // Интервал автосохранения (0 - означает, что автосохранения нет) в милесекундах this.autoSaveGap = 0; // Интервал автосохранения (0 - означает, что автосохранения нет) в милесекундах
this.isAutoSave = false; // Флаг, означает что запущено автосохранение this.isAutoSave = false; // Флаг, означает что запущено автосохранение
this.canSave = true; //Флаг нужен чтобы не происходило сохранение пока не завершится предыдущее сохранение this.canSave = true; // Флаг нужен чтобы не происходило сохранение пока не завершится предыдущее сохранение
this.waitSave = false; // Отложенное сохранение, происходит во время долгих операций
// Режим вставки диаграмм в редакторе документов // Режим вставки диаграмм в редакторе документов
this.isChartEditor = false; this.isChartEditor = false;
...@@ -577,12 +578,8 @@ var ASC_DOCS_API_USE_EMBEDDED_FONTS = "@@ASC_DOCS_API_USE_EMBEDDED_FONTS"; ...@@ -577,12 +578,8 @@ var ASC_DOCS_API_USE_EMBEDDED_FONTS = "@@ASC_DOCS_API_USE_EMBEDDED_FONTS";
}; };
spreadsheet_api.prototype.asc_Save = function (isAutoSave) { spreadsheet_api.prototype.asc_Save = function (isAutoSave) {
if (undefined != window['appBridge']) { if (!this.canSave || this.isChartEditor || c_oAscAdvancedOptionsAction.None !== this.advancedOptionsAction
window['appBridge']['dummyCommandSave'] (); // TEST || this.waitSave)
return;
}
if (!this.canSave || this.isChartEditor || c_oAscAdvancedOptionsAction.None !== this.advancedOptionsAction)
return; return;
this.isAutoSave = !!isAutoSave; this.isAutoSave = !!isAutoSave;
...@@ -596,23 +593,11 @@ var ASC_DOCS_API_USE_EMBEDDED_FONTS = "@@ASC_DOCS_API_USE_EMBEDDED_FONTS"; ...@@ -596,23 +593,11 @@ var ASC_DOCS_API_USE_EMBEDDED_FONTS = "@@ASC_DOCS_API_USE_EMBEDDED_FONTS";
this.canSave = false; this.canSave = false;
var t = this; var t = this;
this.CoAuthoringApi.askSaveChanges (function (e) { t.onSaveCallback (e); }); this.CoAuthoringApi.askSaveChanges(function (e) { t.onSaveCallback (e); });
}; };
spreadsheet_api.prototype.asc_Print = function(adjustPrint){ spreadsheet_api.prototype.asc_Print = function (adjustPrint){
if (adjustPrint) this.adjustPrint = adjustPrint ? adjustPrint : new asc_CAdjustPrint();
this.adjustPrint = adjustPrint;
else {
this.adjustPrint = new asc_CAdjustPrint();
}
if (undefined != window['appBridge']) {
this.advancedOptionsAction = c_oAscAdvancedOptionsAction.Save;
window['appBridge']['dummyCommandPrint'] ();
this.advancedOptionsAction = c_oAscAdvancedOptionsAction.None;
return;
}
this.asc_DownloadAs(c_oAscFileType.PDF); this.asc_DownloadAs(c_oAscFileType.PDF);
}; };
...@@ -1927,11 +1912,23 @@ var ASC_DOCS_API_USE_EMBEDDED_FONTS = "@@ASC_DOCS_API_USE_EMBEDDED_FONTS"; ...@@ -1927,11 +1912,23 @@ var ASC_DOCS_API_USE_EMBEDDED_FONTS = "@@ASC_DOCS_API_USE_EMBEDDED_FONTS";
var t = this; var t = this;
var nState; var nState;
if (false == e["saveLock"]) { if (false == e["saveLock"]) {
if (this.waitSave) {
// Мы не можем в этот момент сохранять, т.к. попали в ситуацию, когда мы залочили сохранение и успели нажать вставку до ответа
// Нужно снять lock с сохранения
this.CoAuthoringApi.onUnSaveLock = function () {
t.canSave = true;
t.isAutoSave = false;
t.lastSaveTime = null;
};
this.CoAuthoringApi.unSaveLock();
return;
}
if (this.isAutoSave) if (this.isAutoSave)
this.asc_StartAction(c_oAscAsyncActionType.Information, c_oAscAsyncAction.Save); this.asc_StartAction(c_oAscAsyncActionType.Information, c_oAscAsyncAction.Save);
// Принимаем чужие изменения // Принимаем чужие изменения
t.collaborativeEditing.applyChanges(); this.collaborativeEditing.applyChanges();
// Сохраняем файл на сервер // Сохраняем файл на сервер
//this._asc_save(); //this._asc_save();
...@@ -3270,6 +3267,15 @@ var ASC_DOCS_API_USE_EMBEDDED_FONTS = "@@ASC_DOCS_API_USE_EMBEDDED_FONTS"; ...@@ -3270,6 +3267,15 @@ var ASC_DOCS_API_USE_EMBEDDED_FONTS = "@@ASC_DOCS_API_USE_EMBEDDED_FONTS";
} }
}; };
// Other
spreadsheet_api.prototype.asc_stopSaving = function () {
this.waitSave = true;
};
spreadsheet_api.prototype.asc_continueSaving = function () {
this.waitSave = false;
};
// offline mode // offline mode
spreadsheet_api.prototype.offlineModeInit = function() { spreadsheet_api.prototype.offlineModeInit = function() {
...@@ -3898,6 +3904,10 @@ var ASC_DOCS_API_USE_EMBEDDED_FONTS = "@@ASC_DOCS_API_USE_EMBEDDED_FONTS"; ...@@ -3898,6 +3904,10 @@ var ASC_DOCS_API_USE_EMBEDDED_FONTS = "@@ASC_DOCS_API_USE_EMBEDDED_FONTS";
prot["asc_coAuthoringChatGetMessages"] = prot.asc_coAuthoringChatGetMessages; prot["asc_coAuthoringChatGetMessages"] = prot.asc_coAuthoringChatGetMessages;
prot["asc_coAuthoringDisconnect"] = prot.asc_coAuthoringDisconnect; prot["asc_coAuthoringDisconnect"] = prot.asc_coAuthoringDisconnect;
// other
prot["asc_stopSaving"] = prot.asc_stopSaving;
prot["asc_continueSaving"] = prot.asc_continueSaving;
// offline mode // offline mode
prot["asc_openNewDocument"] = prot.asc_openNewDocument; prot["asc_openNewDocument"] = prot.asc_openNewDocument;
......
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment