import { UnitTest } from '@ephox/bedrock-client'; import { Class, Css, DomEvent, Html, Insert, InsertAll, Remove, SugarElement } from '@ephox/sugar'; import { Chain } from 'ephox/agar/api/Chain'; import * as ChainSequence from 'ephox/agar/api/ChainSequence'; import * as Guard from 'ephox/agar/api/Guard'; import * as Mouse from 'ephox/agar/api/Mouse'; import { Pipeline } from 'ephox/agar/api/Pipeline'; import * as UiFinder from 'ephox/agar/api/UiFinder'; UnitTest.asynctest('Example for Tutorial', (success, failure) => { const makeSource = () => { const editor = SugarElement.fromTag('div'); Class.add(editor, 'editor'); // Css.set(editor, 'display', 'none'); const showButton = SugarElement.fromTag('button'); Class.add(showButton, 'show'); Html.set(showButton, 'Show'); const dialog = SugarElement.fromTag('div'); Class.add(dialog, 'dialog'); Css.setAll(dialog, { width: '300px', height: '200px', border: '1px solid black', position: 'absolute', left: '100px', top: '100px', background: 'white' }); const dialogContent = SugarElement.fromTag('textarea'); Html.set(dialogContent, 'Look at this dialog ... wow!'); const cancelButton = SugarElement.fromTag('button'); Html.set(cancelButton, 'Cancel'); Class.add(cancelButton, 'cancel'); InsertAll.append(dialog, [ dialogContent, cancelButton ]); Insert.append(editor, showButton); setTimeout(() => { Insert.append(SugarElement.fromDom(document.body), editor); }, 5); const onClick = DomEvent.bind(showButton, 'click', () => { setTimeout(() => { Insert.append(editor, dialog); }, 5); onClick.unbind(); }); const onCancel = DomEvent.bind(cancelButton, 'click', () => { setTimeout(() => { Remove.remove(dialog); }, 5); onCancel.unbind(); }); return editor; }; const source = makeSource(); const body = SugarElement.fromDom(document.body); Pipeline.runStep({}, // Inject as the first input: body Chain.isolate(body, ChainSequence.sequence([ // Input: > container, output: visible element UiFinder.cWaitForVisible('Waiting for ".editor" to be visible', '.editor'), Mouse.cClickOn('button.show'), Chain.inject(body), UiFinder.cWaitForVisible('Waiting for ".dialog" to be visible', '.dialog'), Mouse.cClickOn('button.cancel'), Chain.inject(body), Chain.control( UiFinder.cFindIn('.dialog'), Guard.tryUntilNot('Keep going until .dialog is not in the DOM', 10, 2000) ) ])) , () => { Remove.remove(source); success(); }, failure); });