import { ApproxStructure, GeneralSteps, Logger, Mouse, Pipeline, Step } from '@ephox/agar'; import { UnitTest } from '@ephox/bedrock'; import { TinyApis, TinyLoader, TinyUi } from '@ephox/mcagar'; import { Element, Hierarchy } from '@ephox/sugar'; import ContextMenuPlugin from 'tinymce/plugins/contextmenu/Plugin'; import ModernTheme from 'tinymce/themes/modern/Theme'; UnitTest.asynctest('browser.tinymce.plugins.contextmenu.ContextMenuPluginTest', function () { const success = arguments[arguments.length - 2]; const failure = arguments[arguments.length - 1]; ModernTheme(); ContextMenuPlugin(); const sContextMenuClickInMiddleOf = function (editor, elementPath) { return Step.sync(function () { const element = Hierarchy.follow(Element.fromDom(editor.getBody()), elementPath).getOrDie().dom(); const rect = element.getBoundingClientRect(); const clientX = (rect.left + rect.width / 2), clientY = (rect.top + rect.height / 2); editor.fire('mousedown', { target: element, clientX, clientY, button: 2 }); editor.fire('mouseup', { target: element, clientX, clientY, button: 2 }); editor.fire('contextmenu', { target: element, clientX, clientY }); }); }; TinyLoader.setup(function (editor, onSuccess, onFailure) { const tinyUi = TinyUi(editor); const tinyApis = TinyApis(editor); Pipeline.async({}, [ Logger.t('Context menu click on text', GeneralSteps.sequence([ tinyApis.sSetContent('

a

'), tinyApis.sSetSelection([0, 0], 0, [0, 0], 1), Mouse.sContextMenuOn(Element.fromDom(editor.getBody()), 'p'), tinyUi.sWaitForUi('wait for context', 'div.mce-contextmenu'), tinyUi.sClickOnUi('click on link in context', 'div.mce-contextmenu span:contains("Bold")'), tinyApis.sAssertContentStructure(ApproxStructure.build(function (s, str) { return s.element('body', { children: [ s.element('p', { children: [ s.element('strong', { children: [ s.text(str.is('a')) ] }) ] }) ] }); })) ])), Logger.t('Do not select image if the context menu click is inside the currently selected range', GeneralSteps.sequence([ tinyApis.sSetContent('

a

'), tinyApis.sSetSelection([0, 0], 0, [0], 2), sContextMenuClickInMiddleOf(editor, [0, 1]), tinyApis.sAssertSelection([0, 0], 0, [0], 2) ])) ], onSuccess, onFailure); }, { plugins: 'contextmenu', toolbar: 'contextmenu', contextmenu: 'bold', skin_url: '/project/js/tinymce/skins/lightgray' }, success, failure); });