-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.js
55 lines (43 loc) · 1.25 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
52
53
54
55
const vscode = require('vscode');
const path = require('path');
/**
* @param {vscode.ExtensionContext} context
*/
function activate(context) {
console.log('Congratulations, your extension "rubber-duck-vscode-plugin" is now active!');
let disposable = vscode.commands.registerCommand('extension.summonDuck', function () {
const panel = vscode.window.createWebviewPanel(
'rubberDuck',
'Rubber Duck',
vscode.ViewColumn.Beside,
{}
);
const onDiskPath = vscode.Uri.file(
path.join(context.extensionPath, 'media', 'duck.jpeg')
);
const duckSrc = onDiskPath.with({ scheme: 'vscode-resource' });
vscode.window.showInformationMessage('Rubber Duck summoned');
panel.webview.html = getWebviewContent(duckSrc);
});
context.subscriptions.push(disposable);
}
exports.activate = activate;
function getWebviewContent(path) {
return `<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rubber duck!</title>
</head>
<body>
<h1 style="text-align: center;">Sup?</h1>
<img style="display: block; margin: auto;" src="${path}" width="300" />
</body>
</html>`;
}
function deactivate() {}
module.exports = {
activate,
deactivate
}