-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.js
51 lines (44 loc) · 1.35 KB
/
extension.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// The module 'vscode' contains the VS Code extensibility API
// Import the module and reference it with the alias vscode in your code below
const vscode = require('vscode');
// This method is called when your extension is activated
// Your extension is activated the very first time the command is executed
/**
* @param {vscode.ExtensionContext} context
*/
function activate(context) {
const view = vscode.window.createTreeView('chat', {
treeDataProvider: {
getChildren: () => ['Chat Bot'],
getTreeItem: (item) => ({
label: item,
command: {
command: 'myExtension.openChatBot',
title: 'Open Chat Bot'
}
})
}
});
const command = vscode.commands.registerCommand('myExtension.openChatBot', () => {
const panel = vscode.window.createWebviewPanel(
'chatBot',
'Chat Bot',
vscode.ViewColumn.One,
{}
);
panel.webview.html = getChatBotHtml();
});
context.subscriptions.push(view, command);
}
function getChatBotHtml() {
return `
<!DOCTYPE html>
<html lang="en">
<body>
<h1>Chat Bot testing</h1>
<!-- Your chat bot code goes here -->
</body>
</html>
`;
}
exports.activate = activate;