Merge branch 'release/v7.2.0' into develop

This commit is contained in:
Julia Radzhabova 2022-06-22 23:13:24 +03:00
commit 7975609bd4
12 changed files with 47 additions and 35 deletions

View file

@ -194,7 +194,21 @@ define([
}; };
var _onHintsShow = function (visible, level) { var _onHintsShow = function (visible, level) {
native.execCommand('althints:show', JSON.stringify(visible && !(level > 0))); let info = {
visible: visible && !(level > 0),
};
if ( !!titlebuttons ) {
info.hints = {
'print': titlebuttons['print'].btn.btnEl.attr('data-hint-title'),
// 'home': Common.UI.HintManager.getStaticHint('btnhome'),
'undo': titlebuttons['undo'].btn.btnEl.attr('data-hint-title'),
'redo': titlebuttons['redo'].btn.btnEl.attr('data-hint-title'),
'save': titlebuttons['save'].btn.btnEl.attr('data-hint-title'),
};
}
native.execCommand('althints:show', JSON.stringify(info));
} }
var _onKeyDown = function (e) { var _onKeyDown = function (e) {

View file

@ -204,17 +204,7 @@ define([
arr = []; arr = [];
storePlugins.each(function(item){ storePlugins.each(function(item){
var plugin = new Asc.CPlugin(); var plugin = new Asc.CPlugin();
plugin.deserialize(item.attributes); plugin.deserialize(item.get('original'));
var variations = item.get('variations'),
variationsArr = [];
variations.forEach(function(itemVar){
var variation = new Asc.CPluginVariation();
variation.deserialize(itemVar.attributes);
variationsArr.push(variation);
});
plugin.set_Variations(variationsArr);
item.set('pluginObj', plugin); item.set('pluginObj', plugin);
arr.push(plugin); arr.push(plugin);
}); });
@ -562,7 +552,8 @@ define([
visible: pluginVisible, visible: pluginVisible,
groupName: (item.group) ? item.group.name : '', groupName: (item.group) ? item.group.name : '',
groupRank: (item.group) ? item.group.rank : 0, groupRank: (item.group) ? item.group.rank : 0,
minVersion: item.minVersion minVersion: item.minVersion,
original: item
})); }));
} }
}); });

View file

@ -133,17 +133,7 @@ define([
arr = []; arr = [];
storePlugins.each(function(item){ storePlugins.each(function(item){
var plugin = new Asc.CPlugin(); var plugin = new Asc.CPlugin();
plugin.deserialize(item.attributes); plugin.deserialize(item.get('original'));
var variations = item.get('variations'),
variationsArr = [];
variations.forEach(function(itemVar){
var variation = new Asc.CPluginVariation();
variation.deserialize(itemVar.attributes);
variationsArr.push(variation);
});
plugin.set_Variations(variationsArr);
item.set('pluginObj', plugin); item.set('pluginObj', plugin);
arr.push(plugin); arr.push(plugin);
}); });
@ -332,7 +322,8 @@ define([
visible: pluginVisible, visible: pluginVisible,
groupName: (item.group) ? item.group.name : '', groupName: (item.group) ? item.group.name : '',
groupRank: (item.group) ? item.group.rank : 0, groupRank: (item.group) ? item.group.rank : 0,
minVersion: item.minVersion minVersion: item.minVersion,
original: item
})); }));
} }
}); });

View file

@ -87,6 +87,7 @@ define([
menu: new Common.UI.Menu({ menu: new Common.UI.Menu({
menuAlign: 'tr-br', menuAlign: 'tr-br',
style: 'min-width: auto;', style: 'min-width: auto;',
cls: 'shifted-right',
items: [ items: [
{ {
caption: this.txtExpand, caption: this.txtExpand,

View file

@ -9,6 +9,10 @@
"Common.Controllers.ExternalMergeEditor.textClose": "Close", "Common.Controllers.ExternalMergeEditor.textClose": "Close",
"Common.Controllers.ExternalMergeEditor.warningText": "The object is disabled because it is being edited by another user.", "Common.Controllers.ExternalMergeEditor.warningText": "The object is disabled because it is being edited by another user.",
"Common.Controllers.ExternalMergeEditor.warningTitle": "Warning", "Common.Controllers.ExternalMergeEditor.warningTitle": "Warning",
"Common.Controllers.ExternalOleEditor.textAnonymous": "Anonymous",
"Common.Controllers.ExternalOleEditor.textClose": "Close",
"Common.Controllers.ExternalOleEditor.warningText": "The object is disabled because it is being edited by another user.",
"Common.Controllers.ExternalOleEditor.warningTitle": "Warning",
"Common.Controllers.History.notcriticalErrorTitle": "Warning", "Common.Controllers.History.notcriticalErrorTitle": "Warning",
"Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "In order to compare documents all the tracked changes in them will be considered to have been accepted. Do you want to continue?", "Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "In order to compare documents all the tracked changes in them will be considered to have been accepted. Do you want to continue?",
"Common.Controllers.ReviewChanges.textAtLeast": "at least", "Common.Controllers.ReviewChanges.textAtLeast": "at least",
@ -287,6 +291,8 @@
"del_Common.Views.ExternalMergeEditor.textClose": "Close", "del_Common.Views.ExternalMergeEditor.textClose": "Close",
"del_Common.Views.ExternalMergeEditor.textSave": "Save & Exit", "del_Common.Views.ExternalMergeEditor.textSave": "Save & Exit",
"Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recipients", "Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recipients",
"del_Common.Views.ExternalOleEditor.textClose": "Close",
"del_Common.Views.ExternalOleEditor.textSave": "Save & Exit",
"Common.Views.ExternalOleEditor.textTitle": "Spreadsheet Editor", "Common.Views.ExternalOleEditor.textTitle": "Spreadsheet Editor",
"Common.Views.Header.labelCoUsersDescr": "Users who are editing the file:", "Common.Views.Header.labelCoUsersDescr": "Users who are editing the file:",
"Common.Views.Header.textAddFavorite": "Mark as favorite", "Common.Views.Header.textAddFavorite": "Mark as favorite",

View file

@ -76,7 +76,7 @@ const Settings = props => {
setTimeout(() => { setTimeout(() => {
if(config && !!config.feedback && !!config.feedback.url) { if(config && !!config.feedback && !!config.feedback.url) {
window.open(config.feedback.url, "_blank"); window.open(config.feedback.url, "_blank");
} else window.open('{{__SUPPORT_URL__}}', "_blank"); } else window.open(__SUPPORT_URL__, "_blank");
}, 400); }, 400);
} }

View file

@ -5,6 +5,10 @@
"Common.Controllers.ExternalDiagramEditor.textClose": "Close", "Common.Controllers.ExternalDiagramEditor.textClose": "Close",
"Common.Controllers.ExternalDiagramEditor.warningText": "The object is disabled because it is being edited by another user.", "Common.Controllers.ExternalDiagramEditor.warningText": "The object is disabled because it is being edited by another user.",
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Warning", "Common.Controllers.ExternalDiagramEditor.warningTitle": "Warning",
"Common.Controllers.ExternalOleEditor.textAnonymous": "Anonymous",
"Common.Controllers.ExternalOleEditor.textClose": "Close",
"Common.Controllers.ExternalOleEditor.warningText": "The object is disabled because it is being edited by another user.",
"Common.Controllers.ExternalOleEditor.warningTitle": "Warning",
"Common.define.chartData.textArea": "Area", "Common.define.chartData.textArea": "Area",
"Common.define.chartData.textAreaStacked": "Stacked area", "Common.define.chartData.textAreaStacked": "Stacked area",
"Common.define.chartData.textAreaStackedPer": "100% Stacked area", "Common.define.chartData.textAreaStackedPer": "100% Stacked area",
@ -371,6 +375,8 @@
"del_Common.Views.ExternalDiagramEditor.textClose": "Close", "del_Common.Views.ExternalDiagramEditor.textClose": "Close",
"del_Common.Views.ExternalDiagramEditor.textSave": "Save & Exit", "del_Common.Views.ExternalDiagramEditor.textSave": "Save & Exit",
"Common.Views.ExternalDiagramEditor.textTitle": "Chart Editor", "Common.Views.ExternalDiagramEditor.textTitle": "Chart Editor",
"del_Common.Views.ExternalOleEditor.textClose": "Close",
"del_Common.Views.ExternalOleEditor.textSave": "Save & Exit",
"Common.Views.ExternalOleEditor.textTitle": "Spreadsheet Editor", "Common.Views.ExternalOleEditor.textTitle": "Spreadsheet Editor",
"Common.Views.Header.labelCoUsersDescr": "Users who are editing the file:", "Common.Views.Header.labelCoUsersDescr": "Users who are editing the file:",
"Common.Views.Header.textAddFavorite": "Mark as favorite", "Common.Views.Header.textAddFavorite": "Mark as favorite",

View file

@ -120,7 +120,7 @@ const SettingsList = inject("storeAppOptions", "storeToolbarSettings")(observer(
closeModal(); closeModal();
if(config && !!config.feedback && !!config.feedback.url) { if(config && !!config.feedback && !!config.feedback.url) {
window.open(config.feedback.url, "_blank"); window.open(config.feedback.url, "_blank");
} else window.open('{{__SUPPORT_URL__}}', "_blank"); } else window.open(__SUPPORT_URL__, "_blank");
}; };
const appOptions = props.storeAppOptions; const appOptions = props.storeAppOptions;

View file

@ -69,8 +69,6 @@ define([
this.addListeners({ this.addListeners({
'FileMenu': { 'FileMenu': {
'settings:apply': function() { 'settings:apply': function() {
if (!me.mode || !me.mode.isEdit) return;
me.needUpdateFormula = true; me.needUpdateFormula = true;
var lang = Common.localStorage.getItem("sse-settings-func-locale"); var lang = Common.localStorage.getItem("sse-settings-func-locale");
@ -116,13 +114,13 @@ define([
setApi: function (api) { setApi: function (api) {
this.api = api; this.api = api;
this.api.asc_registerCallback('asc_onSendFunctionWizardInfo', _.bind(this.onSendFunctionWizardInfo, this));
if (this.formulasGroups && this.api) { if (this.formulasGroups) {
Common.Utils.InternalSettings.set("sse-settings-func-last", Common.localStorage.getItem("sse-settings-func-last")); Common.Utils.InternalSettings.set("sse-settings-func-last", Common.localStorage.getItem("sse-settings-func-last"));
this.reloadTranslations(Common.localStorage.getItem("sse-settings-func-locale") || this.appOptions.lang, true); this.reloadTranslations(Common.localStorage.getItem("sse-settings-func-locale") || this.appOptions.lang, true);
if (!this.mode.isEdit) return;
var me = this; var me = this;
this.formulas = new SSE.Views.FormulaDialog({ this.formulas = new SSE.Views.FormulaDialog({
@ -140,6 +138,7 @@ define([
} }
this.formulaTab && this.formulaTab.setApi(this.api); this.formulaTab && this.formulaTab.setApi(this.api);
this.api.asc_registerCallback('asc_onSendFunctionWizardInfo', _.bind(this.onSendFunctionWizardInfo, this));
return this; return this;
}, },
@ -193,6 +192,8 @@ define([
}); });
} }
if (!this.mode.isEdit) return;
if (me.langDescJson[lang]) if (me.langDescJson[lang])
me.loadingFormulas(me.langDescJson[lang], suppressEvent); me.loadingFormulas(me.langDescJson[lang], suppressEvent);
else { else {

View file

@ -1006,6 +1006,8 @@ define([
} }
}, 50); }, 50);
} else { } else {
var formulasDlgController = application.getController('FormulaDialog');
formulasDlgController && formulasDlgController.setMode(me.appOptions).setApi(me.api);
documentHolderView.createDelayedElementsViewer(); documentHolderView.createDelayedElementsViewer();
Common.NotificationCenter.trigger('document:ready', 'main'); Common.NotificationCenter.trigger('document:ready', 'main');
me.applyLicense(); me.applyLicense();

View file

@ -271,7 +271,7 @@ define([
'<tr>', '<tr>',
'<td class="group-name" colspan="2"><label><%= scope.strRegSettings %></label></td>', '<td class="group-name" colspan="2"><label><%= scope.strRegSettings %></label></td>',
'</tr>', '</tr>',
'<tr class="edit">', '<tr class="">',
'<td><label><%= scope.strFuncLocale %></label></td>', '<td><label><%= scope.strFuncLocale %></label></td>',
'<td>', '<td>',
'<div><div id="fms-cmb-func-locale" style="display: inline-block; margin-right: 15px;vertical-align: middle;"></div>', '<div><div id="fms-cmb-func-locale" style="display: inline-block; margin-right: 15px;vertical-align: middle;"></div>',
@ -321,7 +321,7 @@ define([
'<div class="fms-flex-apply hidden">', '<div class="fms-flex-apply hidden">',
'<table class="main" style="margin: 10px 18px; width: 100%"><tbody>', '<table class="main" style="margin: 10px 18px; width: 100%"><tbody>',
'<tr>', '<tr>',
'<td><button class="btn normal dlg-btn primary" data-hint="3" data-hint-direction="bottom" data-hint-offset="big"><%= scope.okButtonText %></button></td>', '<td><button class="btn normal dlg-btn primary" data-hint="2" data-hint-direction="bottom" data-hint-offset="big"><%= scope.okButtonText %></button></td>',
'<td></td>', '<td></td>',
'</tr>', '</tr>',
'</tbody></table>', '</tbody></table>',

View file

@ -130,7 +130,7 @@ const SettingsList = inject("storeAppOptions")(observer(props => {
closeModal(); closeModal();
if(config && !!config.feedback && !!config.feedback.url) { if(config && !!config.feedback && !!config.feedback.url) {
window.open(config.feedback.url, "_blank"); window.open(config.feedback.url, "_blank");
} else window.open('{{__SUPPORT_URL__}}', "_blank"); } else window.open(__SUPPORT_URL__, "_blank");
}; };
const appOptions = props.storeAppOptions; const appOptions = props.storeAppOptions;