Files
Yajbir Singh f1b860b25c
Some checks failed
check / markdownlint (push) Has been cancelled
check / spellchecker (push) Has been cancelled
updated
2025-12-11 19:03:17 +05:30

358 lines
13 KiB
JavaScript

/*
* (c) Copyright Ascensio System SIA 2010-2024
*
* This program is a free software product. You can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License (AGPL)
* version 3 as published by the Free Software Foundation. In accordance with
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
* that Ascensio System SIA expressly excludes the warranty of non-infringement
* of any third-party rights.
*
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
*
* You can contact Ascensio System SIA at 20A-6 Ernesta Birznieka-Upish
* street, Riga, Latvia, EU, LV-1050.
*
* The interactive user interfaces in modified source and object code versions
* of the Program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU AGPL version 3.
*
* Pursuant to Section 7(b) of the License you must retain the original Product
* logo when distributing the program. Pursuant to Section 7(e) we decline to
* grant you any rights under trademark law for use of our trademarks.
*
* All the Product's GUI elements, including illustrations and icon sets, as
* well as technical writing content are licensed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
*
*/
"use strict";
// Import
var c_oAscError = Asc.c_oAscError;
/////////////////////////////////////////////////////////
////////////// OPEN ////////////////////////
/////////////////////////////////////////////////////////
(/**
* @param {jQuery} $
* @param {Window} window
* @param {undefined} undefined
*/
function($, window, undefined) {
var asc = window["Asc"];
var spreadsheet_api = asc['spreadsheet_api'];
spreadsheet_api.prototype.asc_addImageDrawingObject = function(urls, imgProp, token)
{
var ws = this.wb.getWorksheet();
if (ws)
{
var _urls = urls.map(function(currentValue) {
var localUrl = window["AscDesktopEditor"]["LocalFileGetImageUrl"](currentValue);
return AscCommon.g_oDocumentUrls.getImageUrl(localUrl);
});
ws.objectRender.addImageDrawingObject(_urls, null);
}
};
spreadsheet_api.prototype.asc_showImageFileDialog = spreadsheet_api.prototype.asc_addImage = function(obj)
{
var t = this;
window["AscDesktopEditor"]["OpenFilenameDialog"]("images", false, function(_file) {
var file = _file;
if (Array.isArray(file))
file = file[0];
if (!file)
return;
var _url = window["AscDesktopEditor"]["LocalFileGetImageUrl"](file);
t._addImageUrl([AscCommon.g_oDocumentUrls.getImageUrl(_url)], obj);
});
};
spreadsheet_api.prototype.AddImageUrlAction = function(url)
{
this._addImageUrl([url]);
};
spreadsheet_api.prototype.asc_setAdvancedOptions = function(idOption, option)
{
if (asc.c_oAscAdvancedOptionsID.CSV === idOption) {
var delimiter = option.asc_getDelimiter();
var delimiterChar = option.asc_getDelimiterChar();
var _param = "";
_param += ("<m_nCsvTxtEncoding>" + option.asc_getCodePage() + "</m_nCsvTxtEncoding>");
if (null != delimiter) {
_param += ("<m_nCsvDelimiter>" + delimiter + "</m_nCsvDelimiter>");
}
if (null != delimiterChar) {
_param += ("<m_nCsvDelimiterChar>" + delimiterChar + "</m_nCsvDelimiterChar>");
}
window["AscDesktopEditor"]["SetAdvancedOptions"](_param);
}
else if (asc.c_oAscAdvancedOptionsID.DRM === idOption) {
var _param = "";
_param += ("<m_sPassword>" + AscCommon.CopyPasteCorrectString(option.asc_getPassword()) + "</m_sPassword>");
this.currentPassword = option.asc_getPassword();
window["AscDesktopEditor"]["SetAdvancedOptions"](_param);
}
};
/////////////////////////////////////////////////////////
//////////////// SAVE //////////////////////
/////////////////////////////////////////////////////////
spreadsheet_api.prototype.onUpdateDocumentModified = function(bIsModified)
{
// Обновляем только после окончания сохранения
if (this.canSave) {
this.handlers.trigger("asc_onDocumentModifiedChanged", bIsModified);
this._onUpdateDocumentCanSave();
if (undefined !== window["AscDesktopEditor"]) {
window["AscDesktopEditor"]["onDocumentModifiedChanged"](AscCommon.History ? AscCommon.History.Have_Changes(undefined, true) : bIsModified);
}
}
};
spreadsheet_api.prototype._saveLocalCheck = function()
{
return this._saveCheck();
};
spreadsheet_api.prototype.asc_Save = function (isNoUserSave, isSaveAs, isResaveAttack, options)
{
if (this.isFrameEditor() || AscCommon.c_oAscAdvancedOptionsAction.None !== this.advancedOptionsAction)
return;
//is cell editor active - try to close
this.asc_closeCellEditor();
var t = this;
if (true !== isNoUserSave)
this.IsUserSave = true;
if (this.IsUserSave)
{
this.LastUserSavedIndex = AscCommon.History.UserSavedIndex;
}
if (true === this.canSave && this._saveLocalCheck())
{
var _isNaturalSave = this.IsUserSave;
this.canSave = false;
this.CoAuthoringApi.askSaveChanges(function(e){t._onSaveCallback(e);});
if (this.CoAuthoringApi.onUnSaveLock)
this.CoAuthoringApi.onUnSaveLock();
if (_isNaturalSave === true)
window["DesktopOfflineAppDocumentStartSave"](isSaveAs, undefined, undefined, undefined, options);
}
};
spreadsheet_api.prototype.asc_DownloadAsNatural = spreadsheet_api.prototype.asc_DownloadAs;
spreadsheet_api.prototype.asc_DownloadAs = function(options)
{
if (options && options.isNaturalDownload)
return this.asc_DownloadAsNatural(options);
this.asc_Save(false, true, undefined, options);
};
spreadsheet_api.prototype.asc_isOffline = function()
{
return true;
};
spreadsheet_api.prototype["asc_setAdvancedOptions"] = spreadsheet_api.prototype.asc_setAdvancedOptions;
spreadsheet_api.prototype["asc_addImageDrawingObject"] = spreadsheet_api.prototype.asc_addImageDrawingObject;
spreadsheet_api.prototype["asc_showImageFileDialog"] = spreadsheet_api.prototype.asc_showImageFileDialog;
spreadsheet_api.prototype["asc_Save"] = spreadsheet_api.prototype.asc_Save;
spreadsheet_api.prototype["asc_DownloadAs"] = spreadsheet_api.prototype.asc_DownloadAs;
spreadsheet_api.prototype["asc_isOffline"] = spreadsheet_api.prototype.asc_isOffline;
spreadsheet_api.prototype["asc_addImage"] = spreadsheet_api.prototype.asc_addImage;
spreadsheet_api.prototype["getAdditionalSaveParams"] = function()
{
var printOptionsObj = asc["editor"].getPrintOptionsJson();
printOptionsObj["documentLayout"] = { "openedAt" : asc["editor"].openedAt };
printOptionsObj["locale"] = asc["editor"].asc_getLocale();
printOptionsObj["translate"] = AscCommon.translateManager.mapTranslate;
return printOptionsObj;
};
spreadsheet_api.prototype["asc_changeExternalReference"] = function(eR)
{
let wb = this.wb;
if (!wb) {
return;
}
window["AscDesktopEditor"]["OpenFilenameDialog"]("cell", false, function(_file) {
let file = _file;
if (Array.isArray(file))
file = file[0];
if (!file)
return;
//if not saved - put absolute path
let isSavedFile = window["AscDesktopEditor"]["LocalFileGetSaved"]();
let relativePath = isSavedFile && window["AscDesktopEditor"]["LocalFileGetRelativePath"](file);
let obj = {};
obj["path"] = relativePath;
obj["filePath"] = file;
wb.changeExternalReference(eR, obj);
});
};
/////////////////////////////////////////////////////////
////////////// CHANGES /////////////////////
/////////////////////////////////////////////////////////
AscCommon.CHistory.prototype.Reset_SavedIndex = function(IsUserSave)
{
this.SavedIndex = (null === this.SavedIndex && -1 === this.Index ? null : this.Index);
if (true === this.Is_UserSaveMode())
{
if (true === IsUserSave)
{
this.UserSavedIndex = this.Index;
this.ForceSave = false;
}
}
else
{
this.ForceSave = false;
}
};
AscCommon.CHistory.prototype.Have_Changes = function(IsNotUserSave, IsNoSavedNoModifyed)
{
var checkIndex = (this.Is_UserSaveMode() && !IsNotUserSave) ? this.UserSavedIndex : this.SavedIndex;
if (-1 === this.Index && null === checkIndex && false === this.ForceSave)
{
if (window["AscDesktopEditor"])
{
if (0 != window["AscDesktopEditor"]["LocalFileGetOpenChangesCount"]())
return true;
if (!window["AscDesktopEditor"]["LocalFileGetSaved"]() && IsNoSavedNoModifyed !== true)
return true;
}
return false;
}
return (this.Index != checkIndex || true === this.ForceSave);
};
window["DesktopOfflineAppDocumentApplyChanges"] = function(_changes)
{
for (var i = 0, l = _changes.length; i < l; ++i)
{
asc["editor"].CoAuthoringApi.onSaveChanges(_changes[i], null, true);
}
};
window["DesktopOfflineAppDocumentStartSave"] = function(isSaveAs, password, isForce, docinfo, options)
{
window.doadssIsSaveAs = isSaveAs;
if (true !== isForce && window.g_asc_plugins && AscCommon.EncryptionWorker.isNeedCrypt())
{
window.g_asc_plugins.sendToEncryption({ "type" : "generatePassword" });
return;
}
asc["editor"].sync_StartAction(Asc.c_oAscAsyncActionType.BlockInteraction, Asc.c_oAscAsyncAction.Save);
var _param = "";
if (isSaveAs === true)
_param += "saveas=true;";
// настройки для pdf
var printOptions = "";
if (isSaveAs)
{
try
{
var printOptionsObj = asc["editor"]["getAdditionalSaveParams"]();
if (options && options.advancedOptions)
{
let nativeOptions = options.advancedOptions.asc_getNativeOptions();
if (nativeOptions)
printOptionsObj["nativeOptions"] = nativeOptions;
// adjustPrint
printOptionsObj["adjustOptions"] = {};
if (null != options.advancedOptions.asc_getStartPageIndex())
printOptionsObj["adjustOptions"]["startPageIndex"] = options.advancedOptions.asc_getStartPageIndex();
if (null != options.advancedOptions.asc_getEndPageIndex())
printOptionsObj["adjustOptions"]["endPageIndex"] = options.advancedOptions.asc_getEndPageIndex();
if (null != options.advancedOptions.asc_getActiveSheetsArray())
printOptionsObj["adjustOptions"]["activeSheetsArray"] = options.advancedOptions.asc_getActiveSheetsArray();
if (null != options.advancedOptions.asc_getPrintType())
printOptionsObj["adjustOptions"]["printType"] = options.advancedOptions.asc_getPrintType();
}
printOptions = JSON.stringify(printOptionsObj);
}
catch (e)
{
printOptions = "";
}
}
window["AscDesktopEditor"]["LocalFileSave"](_param, (password === undefined) ? asc["editor"].currentPassword : password, docinfo, (options && options.fileType) ? options.fileType : 0, printOptions);
};
window["DesktopOfflineAppDocumentEndSave"] = function(error, hash, password)
{
asc["editor"].sync_EndAction(Asc.c_oAscAsyncActionType.BlockInteraction, Asc.c_oAscAsyncAction.Save);
if (0 == error)
DesktopOfflineUpdateLocalName(asc["editor"]);
else
AscCommon.History.UserSavedIndex = asc["editor"].LastUserSavedIndex;
var _lastUserSavedError = asc["editor"].LastUserSavedIndex;
asc["editor"].onUpdateDocumentModified(AscCommon.History.Have_Changes());
asc["editor"].LastUserSavedIndex = undefined;
if (2 == error)
asc["editor"].sendEvent("asc_onError", c_oAscError.ID.ConvertationSaveError, c_oAscError.Level.NoCritical);
if (0 == error)
{
if (window.SaveQuestionObjectBeforeSign)
{
var _obj = window.SaveQuestionObjectBeforeSign;
asc["editor"].sendEvent("asc_onSignatureClick", _obj.guid, _obj.width, _obj.height, window["asc_IsVisibleSign"](_obj.guid));
window.SaveQuestionObjectBeforeSign = null;
}
}
if (hash !== null && hash !== undefined && hash != "")
{
if (window.g_asc_plugins && window.g_asc_plugins.isRunnedEncryption())
{
asc["editor"]._callbackPluginEndAction = function()
{
this._callbackPluginEndAction = null;
window["AscDesktopEditor"]["buildCryptedEnd"](true);
};
window.LastUserSavedIndex = _lastUserSavedError;
window.g_asc_plugins.sendToEncryption({"type": "setPasswordByFile", "hash": hash, "password": password});
}
}
if (0 == error)
asc["editor"].sendEvent("asc_onDocumentPassword", ("" != asc["editor"].currentPassword) ? true : false);
};
window["on_editor_native_message"] = function(sCommand, sParam)
{
if (!asc["editor"])
return;
if (sCommand == "save")
asc["editor"].asc_Save();
else if (sCommand == "saveAs")
asc["editor"].asc_Save(false, true);
else if (sCommand == "print")
asc["editor"].asc_Print();
};
})(jQuery, window);