[DE mobile] Fix show context menu items for view mode
This commit is contained in:
parent
92520c0e13
commit
c49fc13b80
|
@ -73,17 +73,27 @@ class ContextMenu extends ContextMenuController {
|
||||||
case 'cut':
|
case 'cut':
|
||||||
if ( !LocalStorage.getBool("de-hide-copy-cut-paste-warning") )
|
if ( !LocalStorage.getBool("de-hide-copy-cut-paste-warning") )
|
||||||
this.showCopyCutPasteModal();
|
this.showCopyCutPasteModal();
|
||||||
|
|
||||||
break;
|
break;
|
||||||
case 'copy':
|
case 'copy':
|
||||||
if ( !LocalStorage.getBool("de-hide-copy-cut-paste-warning") )
|
if (!api.Copy() && !LocalStorage.getBool("de-hide-copy-cut-paste-warning") )
|
||||||
this.showCopyCutPasteModal();
|
this.showCopyCutPasteModal();
|
||||||
|
|
||||||
break;
|
break;
|
||||||
case 'paste':
|
case 'paste':
|
||||||
if ( !LocalStorage.getBool("de-hide-copy-cut-paste-warning") )
|
if ( !LocalStorage.getBool("de-hide-copy-cut-paste-warning") )
|
||||||
this.showCopyCutPasteModal();
|
this.showCopyCutPasteModal();
|
||||||
|
break;
|
||||||
|
case 'viewcomment':
|
||||||
|
Common.Notifications.trigger('viewcomment');
|
||||||
|
break;
|
||||||
|
case 'openlink':
|
||||||
|
const stack = api.getSelectedElements();
|
||||||
|
let value;
|
||||||
|
stack.forEach((item) => {
|
||||||
|
if (item.get_ObjectType() == Asc.c_oAscTypeSelectElement.Hyperlink) {
|
||||||
|
value = item.get_ObjectValue().get_Value();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
value && this.openLink(value);
|
||||||
break;
|
break;
|
||||||
case 'review':
|
case 'review':
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
|
@ -95,19 +105,6 @@ class ContextMenu extends ContextMenuController {
|
||||||
this.props.openOptions('coauth', 'cm-review-change');
|
this.props.openOptions('coauth', 'cm-review-change');
|
||||||
}, 400);
|
}, 400);
|
||||||
break;
|
break;
|
||||||
case 'split':
|
|
||||||
this.showSplitModal();
|
|
||||||
break;
|
|
||||||
case 'edit':
|
|
||||||
setTimeout(() => {
|
|
||||||
this.props.openOptions('edit');
|
|
||||||
}, 0);
|
|
||||||
break;
|
|
||||||
case 'addlink':
|
|
||||||
setTimeout(() => {
|
|
||||||
this.props.openOptions('add', 'link');
|
|
||||||
}, 400);
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log("click context menu item: " + action);
|
console.log("click context menu item: " + action);
|
||||||
|
@ -206,8 +203,53 @@ class ContextMenu extends ContextMenuController {
|
||||||
|
|
||||||
initMenuItems() {
|
initMenuItems() {
|
||||||
if ( !Common.EditorApi ) return [];
|
if ( !Common.EditorApi ) return [];
|
||||||
|
const { isEdit } = this.props;
|
||||||
|
|
||||||
return EditorUIController.ContextMenu.mapMenuItems(this);
|
if (isEdit) {
|
||||||
|
return EditorUIController.ContextMenu.mapMenuItems(this);
|
||||||
|
} else {
|
||||||
|
const { t } = this.props;
|
||||||
|
const _t = t("ContextMenu", {returnObjects: true});
|
||||||
|
const { canViewComments } = this.props;
|
||||||
|
|
||||||
|
const api = Common.EditorApi.get();
|
||||||
|
const stack = api.getSelectedElements();
|
||||||
|
const canCopy = api.can_CopyCut();
|
||||||
|
|
||||||
|
let itemsIcon = [],
|
||||||
|
itemsText = [];
|
||||||
|
|
||||||
|
if ( canCopy ) {
|
||||||
|
itemsIcon.push({
|
||||||
|
event: 'copy',
|
||||||
|
icon: 'icon-copy'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( canViewComments && this.isComments ) {
|
||||||
|
itemsText.push({
|
||||||
|
caption: _t.menuViewComment,
|
||||||
|
event: 'viewcomment'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
let isLink = false;
|
||||||
|
stack.forEach(item => {
|
||||||
|
const objectType = item.get_ObjectType();
|
||||||
|
if ( objectType === Asc.c_oAscTypeSelectElement.Hyperlink ) {
|
||||||
|
isLink = true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
if ( isLink ) {
|
||||||
|
itemsText.push({
|
||||||
|
caption: _t.menuOpenLink,
|
||||||
|
event: 'openlink'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return itemsIcon.concat(itemsText);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
initExtraItems () {
|
initExtraItems () {
|
||||||
|
|
Loading…
Reference in a new issue