本文整理汇总了TypeScript中@jupyterlab/application.JupyterLab类的典型用法代码示例。如果您正苦于以下问题:TypeScript JupyterLab类的具体用法?TypeScript JupyterLab怎么用?TypeScript JupyterLab使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了JupyterLab类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: createLab
function createLab(loader: ModuleLoader): JupyterLab {
const lab = new JupyterLab({
loader,
gitDescription: process.env.GIT_DESCRIPTION,
namespace: 'jupyterlab',
version: process.env.JUPYTERLAB_VERSION
});
lab.registerPluginModules(mods);
return lab;
}
开发者ID:faricacarroll,项目名称:jupyterlab,代码行数:10,代码来源:main.ts
示例2: describe
describe('JupyterLab', () => {
let lab: JupyterLab;
let loader = new ModuleLoader();
beforeEach(() => {
lab = new JupyterLab();
});
describe('#constructor()', () => {
it('should create a JupyterLab object', () => {
expect(lab).to.be.a(JupyterLab);
});
it('should accept options', () => {
lab = new JupyterLab({
version: 'foo',
gitDescription: 'foo',
loader
});
});
});
describe('#started', () => {
it('should resolve when the application is started', (done) => {
lab.started.then(done, done);
lab.start();
});
});
describe('#info', () => {
it('should be the info about the application', () => {
expect(lab.info.version).to.be('unknown');
expect(lab.info.gitDescription).to.be('unknown');
lab = new JupyterLab({
version: 'foo',
gitDescription: 'foo'
});
expect(lab.info.version).to.be('foo');
expect(lab.info.gitDescription).to.be('foo');
});
});
describe('#loader', () => {
it('should be the loader used by the application', () => {
expect(lab.loader).to.be(null);
lab = new JupyterLab({ loader });
expect(lab.loader).to.be(loader);
});
});
describe('#start()', () => {
it('should start the application', (done) => {
lab.start().then(done, done);
});
it('should accept options', (done) => {
lab.start({ hostID: 'foo' }).then(done, done);
});
});
});
开发者ID:cameronoelsen,项目名称:jupyterlab,代码行数:72,代码来源:index.spec.ts
示例3:
const contextMenuWidget = (): Widget => {
let pathRe = /[Pp]ath:\s?(.*)\n?/;
let pathMatch = app.contextMenuFirst('title', pathRe);
if (!pathMatch) {
// fall back to active doc widget if path cannot be obtained from event
return app.shell.currentWidget;
}
return docManager.findWidget(pathMatch[1]);
};
开发者ID:willingc,项目名称:jupyterlab,代码行数:11,代码来源:index.ts
示例4: if
let onStateChanged = (sender: any, args: IChangedArgs<any>) => {
if (args.name === 'dirty') {
if (args.newValue === true) {
if (!disposable) {
disposable = app.setDirty();
}
} else if (disposable) {
disposable.dispose();
disposable = null;
}
}
};
开发者ID:SimonBiggs,项目名称:jupyterlab,代码行数:12,代码来源:index.ts
示例5:
const contextMenuWidget = (): Widget => {
const pathRe = /[Pp]ath:\s?(.*)\n?/;
const test = (node: HTMLElement) =>
node['title'] && !!node['title'].match(pathRe);
const node = app.contextMenuFirst(test);
if (!node) {
// fall back to active doc widget if path cannot be obtained from event
return app.shell.currentWidget;
}
const pathMatch = node['title'].match(pathRe);
return docManager.findWidget(pathMatch[1]);
};
开发者ID:SylvainCorlay,项目名称:jupyterlab,代码行数:13,代码来源:index.ts
示例6:
context.ready.then(() => {
context.model.stateChanged.connect(onStateChanged);
if (context.model.dirty) {
disposable = app.setDirty();
}
});
开发者ID:SimonBiggs,项目名称:jupyterlab,代码行数:6,代码来源:index.ts
示例7: it
it('should accept options', (done) => {
lab.start({ hostID: 'foo' }).then(done, done);
});
开发者ID:cameronoelsen,项目名称:jupyterlab,代码行数:3,代码来源:index.spec.ts
注:本文中的@jupyterlab/application.JupyterLab类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论