本文整理匯總了TypeScript中@jupyterlab/services.ContentsManager.extname方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript ContentsManager.extname方法的具體用法?TypeScript ContentsManager.extname怎麽用?TypeScript ContentsManager.extname使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類@jupyterlab/services.ContentsManager
的用法示例。
在下文中一共展示了ContentsManager.extname方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: createConsole
execute: (args: ICreateConsoleArgs) => {
args = args || {};
let name = `Console ${++count}`;
// If we get a session, use it.
if (args.id) {
return manager.ready.then(() => {
return manager.connectTo(args.id);
}).then(session => {
name = session.path.split('/').pop();
name = `Console ${name.match(CONSOLE_REGEX)[1]}`;
createConsole(session, name);
return session.id;
});
}
// Find the correct path for the new session.
// Use the given path or the cwd.
let path = args.path || pathTracker.path;
if (ContentsManager.extname(path)) {
path = ContentsManager.dirname(path);
}
path = `${path}/console-${count}-${utils.uuid()}`;
// Get the kernel model.
return manager.ready.then(() => getKernel(args, name)).then(kernel => {
if (!kernel || (kernel && !kernel.id && !kernel.name)) {
return;
}
// Start the session.
let options: Session.IOptions = {
path,
kernelName: kernel.name,
kernelId: kernel.id
};
return manager.startNew(options).then(session => {
createConsole(session, name);
return session.id;
});
});
}
示例2: createConsole
execute: (args: ICreateConsoleArgs) => {
args = args || {};
let name = `Console ${++count}`;
// If we get a session, use it.
if (args.sessionId) {
return manager.connectTo(args.sessionId).then(session => {
createConsole(session, name);
return session.id;
});
}
// Find the correct path for the new session.
// Use the given path or the cwd.
let path = args.path || pathTracker.path;
if (ContentsManager.extname(path)) {
path = ContentsManager.dirname(path);
}
path = `${path}/console-${utils.uuid()}`;
// Get the kernel model.
return getKernel(args, name).then(kernel => {
if (!kernel) {
return;
}
// Start the session.
let options: Session.IOptions = {
path,
kernelName: kernel.name,
kernelId: kernel.id
};
return manager.startNew(options).then(session => {
createConsole(session, name);
return session.id;
});
});
}