import { GeneralSteps, Logger, Pipeline, Step } from '@ephox/agar'; import { TinyApis, TinyLoader } from '@ephox/mcagar'; import { Hierarchy, Element } from '@ephox/sugar'; import TypeText from '../module/test/TypeText'; import Theme from 'tinymce/themes/modern/Theme'; import { UnitTest } from '@ephox/bedrock'; UnitTest.asynctest('browser.tinymce.core.ClickContentEditableFalseTest', function () { const success = arguments[arguments.length - 2]; const failure = arguments[arguments.length - 1]; Theme(); const sClickMiddleOf = 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 }); editor.fire('mouseup', { target: element, clientX, clientY }); editor.fire('click', { target: element, clientX, clientY }); }); }; TinyLoader.setup(function (editor, onSuccess, onFailure) { const tinyApis = TinyApis(editor); Pipeline.async({}, [ tinyApis.sFocus, Logger.t('Click on content editable false', GeneralSteps.sequence([ tinyApis.sSetContent('

a

'), sClickMiddleOf(editor, [0]), tinyApis.sAssertSelection([], 0, [], 1) ])), Logger.t('Click on content editable false inside content editable true', GeneralSteps.sequence([ tinyApis.sSetContent('

a

'), sClickMiddleOf(editor, [0, 0]), tinyApis.sAssertSelection([0], 0, [0], 1) ])), Logger.t('Click on content editable true inside content editable false', GeneralSteps.sequence([ tinyApis.sSetContent('

a

'), sClickMiddleOf(editor, [0, 0]), tinyApis.sAssertSelection([0, 0, 0], 1, [0, 0, 0], 1) ])), Logger.t('Click on content editable false inside content editable true and then on content editable true and type', GeneralSteps.sequence([ tinyApis.sSetContent('

a

b

'), sClickMiddleOf(editor, [0, 0]), sClickMiddleOf(editor, [0, 1]), tinyApis.sAssertSelection([0, 1, 0], 1, [0, 1, 0], 1), TypeText.sTypeContentAtSelection(Element.fromDom(editor.getDoc()), 'c'), tinyApis.sAssertContent('

a

bc

'), tinyApis.sAssertSelection([0, 1, 0], 2, [0, 1, 0], 2) ])), Logger.t('Click on content editable false then outside on content editable inherit', GeneralSteps.sequence([ tinyApis.sSetContent('

a

a

'), sClickMiddleOf(editor, [0]), sClickMiddleOf(editor, [1]), tinyApis.sAssertSelection([1, 0], 1, [1, 0], 1) ])) ], onSuccess, onFailure); }, { skin_url: '/project/js/tinymce/skins/lightgray', indent: false }, success, failure); });