本文整理汇总了TypeScript中wed/task-runner.TaskRunner.onCompleted方法的典型用法代码示例。如果您正苦于以下问题:TypeScript TaskRunner.onCompleted方法的具体用法?TypeScript TaskRunner.onCompleted怎么用?TypeScript TaskRunner.onCompleted使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类wed/task-runner.TaskRunner
的用法示例。
在下文中一共展示了TaskRunner.onCompleted方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it("moving into or out of a label with autohidden attributes", async () => {
// Moving into or ouot of a label with autohidden attributes does not
// merely refresh the errors but recreates them because errors that were
// visible may become invisible or errors that were invisible may become
// visible.
function getError(): GUIValidationError {
const errors = controller.copyErrorList();
let found: GUIValidationError | undefined;
for (const error of errors) {
if (error.item!.textContent === "attribute not allowed here: xxx") {
found = error;
}
}
assert.isDefined(found);
return found!;
}
await processRunner.onCompleted();
// tslint:disable-next-line:no-any
const errorLayer = (editor as any).errorLayer.el as Element;
let orig = _slice.call(errorLayer.children);
const divs = editor.dataRoot.querySelectorAll("body>div");
const div = divs[divs.length - 1];
// We check that there is an error for the "xxx" attribute, which has no
// link (=== no marker).
assert.isUndefined(getError().marker);
// Move into the label.
editor.caretManager.setCaret(div, 0);
editor.caretManager.move("left");
let after;
await processRunner.onCompleted();
await waitForSuccess(() => {
after = _slice.call(errorLayer.children);
assertNewMarkers(orig, after, "moving into the label");
// Now it has a link (=== has a marker).
assert.isDefined(getError().marker);
});
orig = after;
// Move out of the label.
editor.caretManager.move("right");
await processRunner.onCompleted();
await waitForSuccess(() => {
assertNewMarkers(orig, _slice.call(errorLayer.children),
"moving out of the label");
// No link again.
assert.isUndefined(getError().marker);
});
});
示例2: itNoIE
itNoIE("errors for inline elements in a correct position", async () => {
await processRunner.onCompleted();
const p = guiRoot.querySelectorAll(".body .p")[12];
const dataP = editor.toDataNode(p)!;
const dataMonogr = dataP.childNodes[0] as Element;
const monogr = $.data(dataMonogr, "wed_mirror_node");
assert.equal(dataMonogr.tagName, "monogr");
let pError;
let pErrorIx: number = 0;
let monogrError;
let monogrErrorIx: number = 0;
let i = 0;
for (const error of controller.copyErrorList()) {
if (pError === undefined && error.ev.node === dataP) {
pError = error;
pErrorIx = i;
}
if (monogrError === undefined && error.ev.node === dataMonogr) {
monogrError = error;
monogrErrorIx = i;
}
i++;
}
// Make sure we found our errors.
assert.isDefined(pError, "no error for our paragraph");
assert.isDefined(monogrError, "no error for our monogr");
// Find the corresponding markers
// tslint:disable-next-line:no-any
const markers = (editor as any).errorLayer.el.children;
const pMarker = markers[pErrorIx];
const monogrMarker = markers[monogrErrorIx];
assert.isDefined(pMarker, "should have an error for our paragraph");
assert.isDefined(monogrMarker, "should have an error for our monogr");
const pMarkerRect = pMarker.getBoundingClientRect();
// The pMarker should appear to the right of the start label for the
// paragraph and overlap with the start label for monogr.
const pStartLabel = firstGUI(p)!;
assert.isTrue(pStartLabel.classList.contains("__start_label"),
"should should have a start label for the paragraph");
const pStartLabelRect = pStartLabel.getBoundingClientRect();
assert.isTrue(pMarkerRect.left >= pStartLabelRect.right,
"the paragraph error marker should be to the right of the \
start label for the paragraph");
// We used to check the top too, but the changes in caret size make that
// impractical. So we check only the bottom position.
assert.isTrue(Math.abs(pMarkerRect.bottom - pStartLabelRect.bottom) <= 5,
"the paragraph error marker should have a bottom which is \
within 5 pixels of the bottom of the start label for the paragraph");
const monogrStartLabel = firstGUI(monogr)!;
assert.isTrue(monogrStartLabel.classList.contains("__start_label"),
"should should have a start label for the paragraph");
const monogrStartLabelRect = monogrStartLabel.getBoundingClientRect();
assert.isTrue(Math.abs(pMarkerRect.left - monogrStartLabelRect.left) <= 5,
"the paragraph error marker have a left side within 5 pixels \
of the left side of the start label for the monogr");
// The monogrMarker should be to the right of the monogrStartLabel.
const monogrMarkerRect = monogrMarker.getBoundingClientRect();
assert.isTrue(monogrMarkerRect.left >= monogrStartLabelRect.right,
"the monogr error marker should be to the right of the \
start label for the monogr");
monogrMarker.scrollIntoView();
// We used to check the top too, but the changes in caret size make that
// impractical. So we check only the bottom position.
assert.isTrue(Math.abs(monogrMarkerRect.bottom -
monogrStartLabelRect.bottom) <= 5,
"the monogr error marker should have a bottom which is \
within 5 pixels of the bottom of the start label for the monogr");
});