index.ts 1.91 KB
Newer Older
liuzhe-lz's avatar
liuzhe-lz committed
1
2
3
4
import { JupyterFrontEnd, JupyterFrontEndPlugin } from '@jupyterlab/application';
import { ICommandPalette, IFrame } from '@jupyterlab/apputils';
import { PageConfig } from '@jupyterlab/coreutils';
import { ILauncher } from '@jupyterlab/launcher';
liuzhe-lz's avatar
liuzhe-lz committed
5
6
7
8
9
10
11
12
13
14
15
import { LabIcon } from '@jupyterlab/ui-components';

const nniIconSvg = `
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 162 84">
  <polygon fill="#0b6bac" points="0,84 12,84 34,18 56,84 68,84 87,27 75,27 62,66 40,0 28,0 0,84"/>
  <polygon fill="#0b6bac" points="94,84 106,84 125,27 113,27 100,66 90,36 84,54 94,84"/>
  <polygon fill="#0b6bac" points="122,0 128,18 140,18 134,0 122,0"/>
  <polygon fill="#0b6bac" points="131,27 150,84 162,84 143,27 131,27"/>
</svg>
`;
const nniIcon = new LabIcon({ name: 'nni', svgstr: nniIconSvg });
liuzhe-lz's avatar
liuzhe-lz committed
16
17
18
19
20
21
22
23
24
25
26
27

class NniWidget extends IFrame {
    constructor() {
        super({
            sandbox: [
                'allow-same-origin',
                'allow-scripts',
            ]
        });
        this.url = PageConfig.getBaseUrl() + 'nni/index';
        this.id = 'nni';
        this.title.label = 'NNI';
liuzhe-lz's avatar
liuzhe-lz committed
28
        this.title.icon = nniIcon;
liuzhe-lz's avatar
liuzhe-lz committed
29
30
31
32
33
34
35
36
37
38
39
40
41
        this.title.closable = true;
    }
}

async function activate(app: JupyterFrontEnd, palette: ICommandPalette, launcher: ILauncher | null) {
    console.log('nni extension is activated');
    const { commands, shell } = app;
    const command = 'nni';
    const category = 'Other';

    commands.addCommand(command, {
        label: 'NNI',
        caption: 'NNI',
liuzhe-lz's avatar
liuzhe-lz committed
42
        icon: (args) => (args.isPalette ? null : nniIcon),
liuzhe-lz's avatar
liuzhe-lz committed
43
44
45
46
47
48
49
50
        execute: () => {
            shell.add(new NniWidget(), 'main');
        }
    });

    palette.addItem({ command, category });

    if (launcher) {
liuzhe-lz's avatar
liuzhe-lz committed
51
        launcher.add({ command, category });
liuzhe-lz's avatar
liuzhe-lz committed
52
53
54
55
56
57
58
59
60
61
62
63
    }
}

const extension: JupyterFrontEndPlugin<void> = {
    id: 'nni',
    autoStart: true,
    optional: [ILauncher],
    requires: [ICommandPalette],
    activate,
};

export default extension;