207 lines
8.2 KiB
React
207 lines
8.2 KiB
React
|
import React, { useEffect, useState } from 'react';
|
||
|
import { inject } from 'mobx-react';
|
||
|
import { f7 } from 'framework7-react';
|
||
|
import { useTranslation } from 'react-i18next';
|
||
|
import ToolbarView from "../view/Toolbar";
|
||
|
|
||
|
const ToolbarController = inject('storeAppOptions', 'users', 'storeSpreadsheetInfo')(props => {
|
||
|
const {t} = useTranslation();
|
||
|
const _t = t("Toolbar", { returnObjects: true });
|
||
|
|
||
|
const appOptions = props.storeAppOptions;
|
||
|
const isDisconnected = props.users.isDisconnected;
|
||
|
const displayCollaboration = props.users.hasEditUsers || appOptions.canViewComments;
|
||
|
const docTitle = props.storeSpreadsheetInfo.dataDoc ? props.storeSpreadsheetInfo.dataDoc.title : '';
|
||
|
|
||
|
useEffect(() => {
|
||
|
const onDocumentReady = () => {
|
||
|
const api = Common.EditorApi.get();
|
||
|
api.asc_registerCallback('asc_onCanUndoChanged', onApiCanUndo);
|
||
|
api.asc_registerCallback('asc_onCanRedoChanged', onApiCanRedo);
|
||
|
api.asc_registerCallback('asc_onSelectionChanged', onApiSelectionChanged);
|
||
|
api.asc_registerCallback('asc_onWorkbookLocked', onApiSelectionChanged);
|
||
|
api.asc_registerCallback('asc_onWorksheetLocked', onApiSelectionChanged);
|
||
|
api.asc_registerCallback('asc_onActiveSheetChanged', onApiActiveSheetChanged);
|
||
|
api.asc_registerCallback('asc_onCoAuthoringDisconnect', onCoAuthoringDisconnect);
|
||
|
|
||
|
Common.Notifications.on('api:disconnect', onCoAuthoringDisconnect);
|
||
|
Common.Notifications.on('toolbar:activatecontrols', activateControls);
|
||
|
Common.Notifications.on('toolbar:deactivateeditcontrols', deactivateEditControls);
|
||
|
Common.Notifications.on('goback', goBack);
|
||
|
Common.Notifications.on('sheet:active', onApiActiveSheetChanged);
|
||
|
};
|
||
|
if ( !Common.EditorApi ) {
|
||
|
Common.Notifications.on('document:ready', onDocumentReady);
|
||
|
Common.Gateway.on('init', loadConfig);
|
||
|
} else {
|
||
|
onDocumentReady();
|
||
|
}
|
||
|
|
||
|
return () => {
|
||
|
Common.Notifications.off('document:ready', onDocumentReady);
|
||
|
Common.Notifications.off('api:disconnect', onCoAuthoringDisconnect);
|
||
|
Common.Notifications.off('toolbar:activatecontrols', activateControls);
|
||
|
Common.Notifications.off('toolbar:deactivateeditcontrols', deactivateEditControls);
|
||
|
Common.Notifications.off('goback', goBack);
|
||
|
Common.Notifications.off('sheet:active', onApiActiveSheetChanged);
|
||
|
|
||
|
const api = Common.EditorApi.get();
|
||
|
api.asc_unregisterCallback('asc_onCanUndoChanged', onApiCanUndo);
|
||
|
api.asc_unregisterCallback('asc_onCanRedoChanged', onApiCanRedo);
|
||
|
//api.asc_unregisterCallback('asc_onSelectionChanged', onApiSelectionChanged); TO DO
|
||
|
api.asc_unregisterCallback('asc_onWorkbookLocked', onApiSelectionChanged);
|
||
|
api.asc_unregisterCallback('asc_onWorksheetLocked', onApiSelectionChanged);
|
||
|
api.asc_unregisterCallback('asc_onActiveSheetChanged', onApiActiveSheetChanged);
|
||
|
api.asc_unregisterCallback('asc_onCoAuthoringDisconnect', onCoAuthoringDisconnect);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
// Back button
|
||
|
const [isShowBack, setShowBack] = useState(false);
|
||
|
const loadConfig = (data) => {
|
||
|
if (data && data.config && data.config.canBackToFolder !== false &&
|
||
|
data.config.customization && data.config.customization.goback &&
|
||
|
(data.config.customization.goback.url || data.config.customization.goback.requestClose && data.config.canRequestClose)) {
|
||
|
setShowBack(true);
|
||
|
}
|
||
|
};
|
||
|
const onBack = () => {
|
||
|
const api = Common.EditorApi.get();
|
||
|
if (api.asc_isDocumentModified()) {
|
||
|
f7.dialog.create({
|
||
|
title : _t.dlgLeaveTitleText,
|
||
|
text : _t.dlgLeaveMsgText,
|
||
|
verticalButtons: true,
|
||
|
buttons : [
|
||
|
{
|
||
|
text: _t.leaveButtonText,
|
||
|
onClick: function() {
|
||
|
goBack();
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
text: _t.stayButtonText,
|
||
|
bold: true
|
||
|
}
|
||
|
]
|
||
|
}).open();
|
||
|
} else {
|
||
|
goBack();
|
||
|
}
|
||
|
};
|
||
|
const goBack = (current) => {
|
||
|
//if ( !Common.Controllers.Desktop.process('goback') ) {
|
||
|
if (appOptions.customization.goback.requestClose && appOptions.canRequestClose) {
|
||
|
Common.Gateway.requestClose();
|
||
|
} else {
|
||
|
const href = appOptions.customization.goback.url;
|
||
|
if (!current && appOptions.customization.goback.blank !== false) {
|
||
|
window.open(href, "_blank");
|
||
|
} else {
|
||
|
parent.location.href = href;
|
||
|
}
|
||
|
}
|
||
|
//}
|
||
|
}
|
||
|
|
||
|
// Undo and Redo
|
||
|
const [isCanUndo, setCanUndo] = useState(false);
|
||
|
const [isCanRedo, setCanRedo] = useState(false);
|
||
|
const onApiCanUndo = (can) => {
|
||
|
if (isDisconnected) return;
|
||
|
setCanUndo(can);
|
||
|
};
|
||
|
const onApiCanRedo = (can) => {
|
||
|
if (isDisconnected) return;
|
||
|
setCanRedo(can);
|
||
|
};
|
||
|
const onUndo = () => {
|
||
|
const api = Common.EditorApi.get();
|
||
|
if (api) {
|
||
|
api.asc_Undo();
|
||
|
}
|
||
|
};
|
||
|
const onRedo = () => {
|
||
|
const api = Common.EditorApi.get();
|
||
|
if (api) {
|
||
|
api.asc_Redo();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const [disabledEditControls, setDisabledEditControls] = useState(false);
|
||
|
const onApiSelectionChanged = (cellInfo) => {
|
||
|
if (isDisconnected) return;
|
||
|
|
||
|
const api = Common.EditorApi.get();
|
||
|
const info = !!cellInfo ? cellInfo : api.asc_getCellInfo();
|
||
|
let islocked = false;
|
||
|
|
||
|
switch (info.asc_getSelectionType()) {
|
||
|
case Asc.c_oAscSelectionType.RangeChart:
|
||
|
case Asc.c_oAscSelectionType.RangeImage:
|
||
|
case Asc.c_oAscSelectionType.RangeShape:
|
||
|
case Asc.c_oAscSelectionType.RangeChartText:
|
||
|
case Asc.c_oAscSelectionType.RangeShapeText:
|
||
|
const objects = api.asc_getGraphicObjectProps();
|
||
|
for ( let i in objects ) {
|
||
|
if ( objects[i].asc_getObjectType() == Asc.c_oAscTypeSelectElement.Image ) {
|
||
|
if ((islocked = objects[i].asc_getObjectValue().asc_getLocked()))
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
break;
|
||
|
default:
|
||
|
islocked = info.asc_getLocked();
|
||
|
}
|
||
|
|
||
|
setDisabledEditControls(islocked);
|
||
|
};
|
||
|
|
||
|
const onApiActiveSheetChanged = (index) => {
|
||
|
Common.Notifications.trigger('comments:filterchange', ['doc', 'sheet' + Common.EditorApi.get().asc_getWorksheetId(index)], false );
|
||
|
};
|
||
|
|
||
|
const [disabledSettings, setDisabledSettings] = useState(false);
|
||
|
const deactivateEditControls = (enableDownload) => {
|
||
|
setDisabledEditControls(true);
|
||
|
if (enableDownload) {
|
||
|
//DE.getController('Settings').setMode({isDisconnected: true, enableDownload: enableDownload});
|
||
|
} else {
|
||
|
setDisabledSettings(true);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
|
||
|
const [disabledControls, setDisabledControls] = useState(true);
|
||
|
const activateControls = () => {
|
||
|
setDisabledControls(false);
|
||
|
};
|
||
|
|
||
|
const onCoAuthoringDisconnect = (enableDownload) => {
|
||
|
deactivateEditControls(enableDownload);
|
||
|
setCanUndo(false);
|
||
|
setCanRedo(false);
|
||
|
f7.popover.close();
|
||
|
f7.sheet.close();
|
||
|
f7.popup.close();
|
||
|
};
|
||
|
|
||
|
return (
|
||
|
<ToolbarView openOptions={props.openOptions}
|
||
|
isEdit={appOptions.isEdit}
|
||
|
docTitle={docTitle}
|
||
|
isShowBack={isShowBack}
|
||
|
onBack={onBack}
|
||
|
isCanUndo={isCanUndo}
|
||
|
isCanRedo={isCanRedo}
|
||
|
onUndo={onUndo}
|
||
|
onRedo={onRedo}
|
||
|
disabledControls={disabledControls}
|
||
|
disabledEditControls={disabledEditControls}
|
||
|
disabledSettings={disabledSettings}
|
||
|
displayCollaboration={displayCollaboration}
|
||
|
/>
|
||
|
)
|
||
|
});
|
||
|
|
||
|
export {ToolbarController as Toolbar};
|