本文整理汇总了TypeScript中@jupyterlab/apputils.CommandLinker.disconnectNode方法的典型用法代码示例。如果您正苦于以下问题:TypeScript CommandLinker.disconnectNode方法的具体用法?TypeScript CommandLinker.disconnectNode怎么用?TypeScript CommandLinker.disconnectNode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类@jupyterlab/apputils.CommandLinker
的用法示例。
在下文中一共展示了CommandLinker.disconnectNode方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it('should disconnect a node from a command', () => {
let called = false;
const command = 'commandlinker:disconnect-node';
const commands = new CommandRegistry();
const linker = new CommandLinker({ commands });
const node = document.createElement('div');
const disposable = commands.addCommand(command, {
execute: () => {
called = true;
}
});
document.body.appendChild(node);
linker.connectNode(node, command, null);
// Make sure connection is working.
expect(called).to.equal(false);
simulate(node, 'click');
expect(called).to.equal(true);
// Reset flag.
called = false;
// Make sure disconnection is working.
linker.disconnectNode(node);
expect(called).to.equal(false);
simulate(node, 'click');
expect(called).to.equal(false);
document.body.removeChild(node);
linker.dispose();
disposable.dispose();
});