本文整理汇总了TypeScript中@ephox/agar.Guard.addLogging方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Guard.addLogging方法的具体用法?TypeScript Guard.addLogging怎么用?TypeScript Guard.addLogging使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类@ephox/agar.Guard
的用法示例。
在下文中一共展示了Guard.addLogging方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: Theme
UnitTest.asynctest('tinymce.plugins.paste.browser.PasteSettingsTest', (success, failure) => {
Theme();
Plugin();
const cCreateInlineEditor = function (settings) {
return Chain.control(
McEditor.cFromSettings(Merger.merge(settings, {
inline: true,
base_url: '/project/tinymce/js/tinymce'
})),
Guard.addLogging('Create inline editor')
);
};
const cRemoveEditor = Chain.control(
McEditor.cRemove,
Guard.addLogging('Remove editor')
);
Pipeline.async({}, [
Chain.asStep({}, Log.chains('TBA', 'Paste: paste_as_text setting', [
cCreateInlineEditor({
paste_as_text: true,
plugins: 'paste'
}),
Chain.op(function (editor) {
Assertions.assertEq('Should be text format', 'text', editor.plugins.paste.clipboard.pasteFormat.get());
}),
cRemoveEditor
]))
], function () {
success();
}, failure);
});
示例2:
const cSetInputValue = (section, newValue) => Chain.control(
Chain.fromChains([
UiFinder.cFindIn(`label:contains(${section}) + div > input`),
UiControls.cSetValue(newValue)
]),
Guard.addLogging('Set input value' + newValue)
);
示例3: next
const cOpFromChains = (chains: Chain<any, any>[]) => Chain.control(
// TODO: Another API case.
Chain.on((value, next, die, logs) => {
Chain.pipeline([Chain.inject(value)].concat(chains), (_, newLogs) => next(Chain.wrap(value), newLogs), die, logs);
}),
Guard.addLogging('Chain operations')
);
示例4: from
const cResizeToPos = (sx: number, sy: number, dx: number, dy: number, delta: number = 10) => {
// Simulate moving the mouse, by making a number of movements
const numMoves = sy === dy ? Math.abs(dx - sx) / delta : Math.abs(dy - sy) / delta;
// Determine the deltas based on the number of moves to make
const deltaX = (dx - sx) / numMoves;
const deltaY = (dy - sy) / numMoves;
// Move and release the mouse
return Chain.control(
Chain.fromChains([
UiFinder.cFindIn('.tox-blocker'),
Mouse.cMouseMoveTo(sx, sy)
].concat(
Arr.range(numMoves, (count) => {
const nx = sx + count * deltaX;
const ny = sy + count * deltaY;
return Mouse.cMouseMoveTo(nx, ny);
})
).concat([
Mouse.cMouseMoveTo(dx, dy),
Mouse.cMouseUp
])
),
Guard.addLogging(`Resizing from (${sx}, ${sy}) to (${dx}, ${dy})`)
);
};
示例5:
const cGetInput = (selector: string) => Chain.control(
Chain.fromChains([
Chain.inject(Body.body()),
UiFinder.cFindIn(selector)
]),
Guard.addLogging('Get input')
);
示例6: keys
const cMergeCells = (keys) => Chain.control(
Chain.mapper((editor: any) => {
keys(editor);
editor.execCommand('mceTableMergeCells');
}),
Guard.addLogging('Merge cells')
);
示例7:
const cSubmitDialog = () => Chain.control(
NamedChain.asChain([
NamedChain.writeValue('body', Body.body()),
NamedChain.read('body', Mouse.cClickOn('.tox-button:contains("Save")')),
NamedChain.outputInput
]),
Guard.addLogging('Submit dialog')
);
示例8:
const cSetHtml = (html) => {
return Chain.control(
Chain.op(function (elm: Element) {
Html.set(elm, html);
}),
Guard.addLogging('Set html')
);
};
示例9:
const cAssertEditorAndLastEvent = (label, state) =>
Chain.control(
Chain.fromChains([
Chain.op(() => Assertions.assertEq('Editor isFullscreen', state, editor.plugins.fullscreen.isFullscreen())),
Chain.op(() => Assertions.assertEq('FullscreenStateChanged event', state, lastEventArgs.get().state))
]),
Guard.addLogging(label)
);