Update getting started guide (#383)
Description of changes Updates the getting started guide to include new content on how to: - Avoid loading the toolkit package directly from node_modules - Register the toolkit components in JS/TS - Add proper content security policies for loading scripts, styles, and images
This commit is contained in:
Родитель
ebcfee1d48
Коммит
c960b53ee3
|
@ -26,7 +26,6 @@ scripts
|
|||
.github
|
||||
.eslintrc.js
|
||||
.eslintrc.cjs
|
||||
.eslintrc.mjs
|
||||
.eslintignore
|
||||
.prettierrc
|
||||
.prettierignore
|
||||
|
|
|
@ -10,7 +10,7 @@ _If you get stuck at any point or if you just want a pre-configured starter exte
|
|||
|
||||
## Part 1: Create a webview-based extension
|
||||
|
||||
Before installing the toolkit, you need to create a webview-based extension to use the toolkit in. The following steps are taken directly from the Visual Studio Code [Your First Extension](https://code.visualstudio.com/api/get-started/your-first-extension) guide and [Webview API](https://code.visualstudio.com/api/extension-guides/webview) guide.
|
||||
Before installing the toolkit, you need to create an extension that uses a webview. The following steps are taken directly from the Visual Studio Code [Your First Extension](https://code.visualstudio.com/api/get-started/your-first-extension) guide and [Webview API](https://code.visualstudio.com/api/extension-guides/webview) guide.
|
||||
|
||||
To generate a basic extension, we can use [Yeoman](https://yeoman.io/) and the [Visual Studio Code Extension Generator](https://www.npmjs.com/package/generator-code). First, though, make sure you have [Node.js](https://nodejs.org/en/) and [Git](https://git-scm.com/) installed. Then, install Yeoman and the generator using the following command:
|
||||
|
||||
|
@ -18,8 +18,6 @@ To generate a basic extension, we can use [Yeoman](https://yeoman.io/) and the [
|
|||
npm install -g yo generator-code
|
||||
```
|
||||
|
||||
The generator will scaffold a TypeScript or JavaScript extension ready for development.
|
||||
|
||||
Run the generator and fill out a few fields for a new TypeScript extension:
|
||||
|
||||
```bash
|
||||
|
@ -32,13 +30,157 @@ yo code
|
|||
# ? Initialize a git repository? Yes
|
||||
# ? Bundle the source code with webpack? No
|
||||
# ? Which package manager to use? npm
|
||||
|
||||
code ./hello-world
|
||||
# ? Do you want to open the new folder with Visual Studio Code? Open with `code`
|
||||
```
|
||||
|
||||
### Install and configure esbuild
|
||||
|
||||
This extension will use [esbuild](https://esbuild.github.io/) to bundle source code. The following steps are an adapted version of those provided in the [Bundling Extensions](https://code.visualstudio.com/api/working-with-extensions/bundling-extension#using-esbuild) guide.
|
||||
|
||||
First install esbuild as a development dependency:
|
||||
|
||||
```
|
||||
npm i --save-dev esbuild@0.16.17
|
||||
```
|
||||
|
||||
_Note: Esbuild recently [released breaking changes in v0.17.0](https://github.com/evanw/esbuild/releases/tag/v0.17.0). This guide and associated sample extensions will be updated to account for this soon. But for the time being the installed version of esbuild should be pinned to the last v0.16 release._
|
||||
|
||||
Next, create an `esbuild.js` build script (in the root of the project) for bundling the extension code:
|
||||
|
||||
```js
|
||||
// file: esbuild.js
|
||||
|
||||
const { build } = require("esbuild");
|
||||
|
||||
const baseConfig = {
|
||||
bundle: true,
|
||||
minify: process.env.NODE_ENV === "production",
|
||||
sourcemap: process.env.NODE_ENV !== "production",
|
||||
};
|
||||
|
||||
const extensionConfig = {
|
||||
...baseConfig,
|
||||
platform: "node",
|
||||
format: "cjs",
|
||||
entryPoints: ["./src/extension.ts"],
|
||||
outfile: "./out/extension.js",
|
||||
external: ["vscode"],
|
||||
};
|
||||
|
||||
(async () => {
|
||||
try {
|
||||
await build(extensionConfig);
|
||||
console.log("build complete");
|
||||
} catch (err) {
|
||||
process.stderr.write(err.stderr);
|
||||
process.exit(1);
|
||||
}
|
||||
})();
|
||||
```
|
||||
|
||||
This is a basic config that will build extension source code for a Node/CommonJS-based environment (required to run VS Code extensions). It accepts a `src/extension.ts` file as the input and outputs a single `out/extension.js` file. Additionally, when a "production" environment variable is set the output code will be minified and will not include sourcemaps.
|
||||
|
||||
To test that this works, update the `compile` and `vscode:prepublish` scripts and add a `package` script in `package.json`:
|
||||
|
||||
```json
|
||||
// file: package.json
|
||||
|
||||
"scripts": {
|
||||
"vscode:prepublish": "npm run package",
|
||||
"compile": "node ./esbuild.js",
|
||||
"package": "NODE_ENV=production node ./esbuild.js",
|
||||
},
|
||||
```
|
||||
|
||||
Now run the `package` and `compile` scripts:
|
||||
|
||||
```
|
||||
npm run package
|
||||
npm run compile
|
||||
```
|
||||
|
||||
Running `package` should generate an `out` folder containing a minified `extension.js` file, while `compile` should generate a non-minified `extension.js` file and an `extension.js.map` sourcemap file.
|
||||
|
||||
**Configure source code watching**
|
||||
|
||||
To configure source code watching, which is required to achieve a good extension debugging experience a few more things need to be updated.
|
||||
|
||||
Back in `esbuild.js`, add a `watchConfig` and update the script to accept a `--watch` flag:
|
||||
|
||||
```js
|
||||
// file: esbuild.js
|
||||
|
||||
// ... other configs ...
|
||||
|
||||
const watchConfig = {
|
||||
watch: {
|
||||
onRebuild(error, result) {
|
||||
console.log("[watch] build started");
|
||||
if (error) {
|
||||
error.errors.forEach(error =>
|
||||
console.error(`> ${error.location.file}:${error.location.line}:${error.location.column}: error: ${error.text}`)
|
||||
);
|
||||
} else {
|
||||
console.log("[watch] build finished");
|
||||
}
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
(async () => {
|
||||
const args = process.argv.slice(2);
|
||||
try {
|
||||
if (args.includes("--watch")) {
|
||||
// Build and watch source code
|
||||
console.log("[watch] build started");
|
||||
await build({
|
||||
...extensionConfig,
|
||||
...watchConfig,
|
||||
});
|
||||
console.log("[watch] build finished");
|
||||
} else {
|
||||
// Build source code
|
||||
await build(extensionConfig);
|
||||
console.log("build complete");
|
||||
}
|
||||
} catch (err) {
|
||||
process.stderr.write(err.stderr);
|
||||
process.exit(1);
|
||||
}
|
||||
})();
|
||||
```
|
||||
|
||||
This watch config adheres to the conventions of the [esbuild-problem-matchers extension](https://github.com/connor4312/esbuild-problem-matchers#esbuild-via-js).
|
||||
|
||||
The npm `watch` script should now be updated, along with the `problemMatcher` field in `.vscode/tasks.json`.
|
||||
|
||||
```json
|
||||
// file: package.json
|
||||
|
||||
"scripts": {
|
||||
"watch": "node ./esbuild.js --watch",
|
||||
}
|
||||
```
|
||||
|
||||
```json
|
||||
// file: .vscode/tasks.json
|
||||
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"problemMatcher": "$esbuild-watch"
|
||||
// ... other configs ...
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
Finally, you'll likely see a warning in `tasks.json` stating "Unrecognized problem matcher. Is the extension that contributes this problem matcher installed?". To fix this [install the esbuild-problem-matchers extension](https://marketplace.visualstudio.com/items?itemName=connor4312.esbuild-problem-matchers).
|
||||
|
||||
### Create a webview
|
||||
|
||||
With this basic extension created, you now need to create a webview. The following steps are an adapted version of those provided in the [Webview API](https://code.visualstudio.com/api/extension-guides/webview) guide – for more info about webviews, read the guide.
|
||||
You now need to create a webview. The following steps are an adapted version of those provided in the [Webview API](https://code.visualstudio.com/api/extension-guides/webview) guide – for more info about webviews read the guide.
|
||||
|
||||
Start by navigating to the `extensions.ts` file inside the `src` directory and replacing the contents of the `activate` function with the following:
|
||||
|
||||
|
@ -65,7 +207,7 @@ Inside this file, create a class that manages the state and behavior of Hello Wo
|
|||
It'll contain all the data and methods for:
|
||||
|
||||
- Creating and rendering Hello World webview panels
|
||||
- Properly cleaning up and disposing webview resources when the panel is closed
|
||||
- Properly cleaning up and disposing of webview resources when the panel is closed
|
||||
- Setting the HTML content of the webview panel
|
||||
- Setting message listeners so data can be passed between the webview and extension
|
||||
|
||||
|
@ -113,7 +255,7 @@ export class HelloWorldPanel {
|
|||
}
|
||||
```
|
||||
|
||||
At this point, you can also go back to the `src/extension.ts` file and add an import statement to resolve the earlier error.
|
||||
At this point, you can go back to the `src/extension.ts` file and add an import statement to resolve the earlier error.
|
||||
|
||||
```typescript
|
||||
// file: src/extension.ts
|
||||
|
@ -165,7 +307,7 @@ private constructor(panel: vscode.WebviewPanel) {
|
|||
|
||||
The `_getWebviewContent` method is where the UI of the extension will be defined.
|
||||
|
||||
This is also where references to CSS and JavaScript files/packages are created and inserted into the webview HTML. You'll configure the Webview UI Toolkit here, in the second part of this guide.
|
||||
This is also where references to CSS and JavaScript files are created and inserted into the webview HTML.
|
||||
|
||||
```typescript
|
||||
// file: src/panels/HelloWorldPanel.ts
|
||||
|
@ -226,9 +368,153 @@ With an extension created, install the toolkit package using this command:
|
|||
npm install --save @vscode/webview-ui-toolkit
|
||||
```
|
||||
|
||||
### Using the toolkit inside a webview
|
||||
### Register the toolkit components
|
||||
|
||||
With the package installed, you need to adjust the project so the toolkit is usable within your webview. To do this, start by updating the `_getWebviewContent` method to accept two new parameters.
|
||||
Create a new directory/file at `src/webview/main.ts`. For now, it will contain the code that will register the toolkit web components (in this case a `<vscode-button>`).
|
||||
|
||||
```js
|
||||
// file: src/webview/main.ts
|
||||
|
||||
import { provideVSCodeDesignSystem, vsCodeButton } from "@vscode/webview-ui-toolkit";
|
||||
|
||||
provideVSCodeDesignSystem().register(vsCodeButton());
|
||||
```
|
||||
|
||||
_A quick note on registering other components:_
|
||||
|
||||
To register more toolkit components, simply import the component
|
||||
registration function and call it from within the register
|
||||
method, like so:
|
||||
|
||||
```js
|
||||
import { provideVSCodeDesignSystem, vsCodeButton, vsCodeCheckbox } from "@vscode/webview-ui-toolkit";
|
||||
|
||||
provideVSCodeDesignSystem().register(vsCodeButton(), vsCodeCheckbox());
|
||||
```
|
||||
|
||||
### Add the button to the webview markup
|
||||
|
||||
With those changes, you can now add the `<vscode-button>` to the webview markup like so:
|
||||
|
||||
```typescript
|
||||
// file: src/panels/HelloWorldPanel.ts
|
||||
|
||||
private _getWebviewContent() {
|
||||
return /*html*/ `
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||
<title>Hello World!</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Hello World!</h1>
|
||||
<vscode-button id="howdy">Howdy!</vscode-button>
|
||||
</body>
|
||||
</html>
|
||||
`;
|
||||
}
|
||||
```
|
||||
|
||||
### Update esbuild config
|
||||
|
||||
In the next step you'll add a script tag into the webview HTML that references a bundled version `src/webview/main.ts`. This means you need to update the esbuild config one final time to bundle webview code:
|
||||
|
||||
```js
|
||||
// file: esbuild.js
|
||||
|
||||
// ... other configs ...
|
||||
|
||||
const webviewConfig = {
|
||||
...baseConfig,
|
||||
target: "es2020",
|
||||
format: "esm",
|
||||
entryPoints: ["./src/webview/main.ts"],
|
||||
outfile: "./out/webview.js",
|
||||
};
|
||||
|
||||
(async () => {
|
||||
const args = process.argv.slice(2);
|
||||
try {
|
||||
if (args.includes("--watch")) {
|
||||
// Build and watch extension and webview code
|
||||
console.log("[watch] build started");
|
||||
await build({
|
||||
...extensionConfig,
|
||||
...watchConfig,
|
||||
});
|
||||
await build({
|
||||
...webviewConfig,
|
||||
...watchConfig,
|
||||
});
|
||||
console.log("[watch] build finished");
|
||||
} else {
|
||||
// Build extension and webview code
|
||||
await build(extensionConfig);
|
||||
await build(webviewConfig);
|
||||
console.log("build complete");
|
||||
}
|
||||
} catch (err) {
|
||||
process.stderr.write(err.stderr);
|
||||
process.exit(1);
|
||||
}
|
||||
})();
|
||||
```
|
||||
|
||||
This additional config will build webview source code for an ESM-based environment (required for running code within a webview context, which you can think of as running code in a browser because webviews are just an iframe under the hood). It accepts a `src/webview/main.ts` file as the input and outputs a single `out/webview.js` file. Additionally, it inherits the `baseConfig` you added earlier, so when a "production" environment variable is set the webview code will be minified and will not include sourcemaps.
|
||||
|
||||
### Add a script tag to the webview markup
|
||||
|
||||
You can now use some Visual Studio Code APIs to create a URI pointing to the `out/webview.js` file.
|
||||
|
||||
These API calls can get a bit verbose, so create a small helper function to keep your code clean.
|
||||
|
||||
Add a new file at `src/utilities/getUri.ts` with the following:
|
||||
|
||||
```typescript
|
||||
// file: src/utilities/getUri.ts
|
||||
|
||||
import { Uri, Webview } from "vscode";
|
||||
|
||||
export function getUri(webview: Webview, extensionUri: Uri, pathList: string[]) {
|
||||
return webview.asWebviewUri(Uri.joinPath(extensionUri, ...pathList));
|
||||
}
|
||||
```
|
||||
|
||||
You can use that helper function to get a webview URI that points to the `webview.js` file and then add a script tag to the webview markup.
|
||||
|
||||
```typescript
|
||||
// file: src/panels/HelloWorldPanel.ts
|
||||
|
||||
import { getUri } from "../utilities/getUri";
|
||||
|
||||
// ... other code ...
|
||||
|
||||
private _getWebviewContent() {
|
||||
const webviewUri = getUri(webview, extensionUri, ["out", "webview.js"]);
|
||||
|
||||
return /*html*/ `
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||
<title>Hello World!</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Hello World!</h1>
|
||||
<vscode-button id="howdy">Howdy!</vscode-button>
|
||||
<script type="module" src="${webviewUri}"></script>
|
||||
</body>
|
||||
</html>
|
||||
`;
|
||||
}
|
||||
```
|
||||
|
||||
### Add missing parameters
|
||||
|
||||
You might have noticed that there are some errors in the `getUri` function call. To fix this, start by updating the `_getWebviewContent` method to accept two new parameters.
|
||||
|
||||
```typescript
|
||||
// file: src/panels/HelloWorldPanel.ts
|
||||
|
@ -272,74 +558,11 @@ Finally, update the call to the `render` method:
|
|||
HelloWorldPanel.render(context.extensionUri);
|
||||
```
|
||||
|
||||
### Create a webview uri
|
||||
### Enable webview scripts and improve security
|
||||
|
||||
With those changes, you can now use some Visual Studio Code APIs to create a URI pointing to the toolkit package. Just a heads-up: These API calls can get a bit verbose, so you also need to create a small helper function to keep your code clean.
|
||||
The final set of steps you need to take are enabling and improving webview security.
|
||||
|
||||
Create a new file at `src/utilities/getUri.ts` with the following:
|
||||
|
||||
```typescript
|
||||
// file: src/utilities/getUri.ts
|
||||
|
||||
import { Uri, Webview } from "vscode";
|
||||
|
||||
export function getUri(webview: Webview, extensionUri: Uri, pathList: string[]) {
|
||||
return webview.asWebviewUri(Uri.joinPath(extensionUri, ...pathList));
|
||||
}
|
||||
```
|
||||
|
||||
You can use that helper function to get a webview URI which points to the toolkit package.
|
||||
|
||||
```typescript
|
||||
// file: src/panels/HelloWorldPanel.ts
|
||||
|
||||
import { getUri } from "../utilities/getUri";
|
||||
|
||||
// ... other code ...
|
||||
|
||||
private _getWebviewContent(webview: vscode.Webview, extensionUri: vscode.Uri) {
|
||||
const toolkitUri = getUri(webview, extensionUri, [
|
||||
"node_modules",
|
||||
"@vscode",
|
||||
"webview-ui-toolkit",
|
||||
"dist",
|
||||
"toolkit.js", // A toolkit.min.js file is also available
|
||||
]);
|
||||
|
||||
// ... other code ...
|
||||
}
|
||||
```
|
||||
|
||||
### Pass the uri into the webview
|
||||
|
||||
With access to the toolkit URI, you can pass it into the webview context with a regular `<script>` tag by doing this:
|
||||
|
||||
```typescript
|
||||
// file: src/panels/HelloWorldPanel.ts
|
||||
|
||||
private _getWebviewContent(webview: vscode.Webview, extensionUri: vscode.Uri) {
|
||||
// ... toolkit uri ...
|
||||
|
||||
return /*html*/ `
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||
<script type="module" src="${toolkitUri}"></script>
|
||||
<title>Hello World!</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Hello World!</h1>
|
||||
</body>
|
||||
</html>
|
||||
`;
|
||||
}
|
||||
```
|
||||
|
||||
### Update webview configuration
|
||||
|
||||
The final thing you need to do before you can test these updates is update the webview panel configuration option you left empty earlier in the `render` method so that JavaScript is enabled in the webview.
|
||||
Start by updating the webview panel configuration option you left empty earlier in the `render` method so that JavaScript is enabled in the webview and resource loading is restricted to the `out` directory.
|
||||
|
||||
```typescript
|
||||
// file: src/panels/HelloWorldPanel.ts
|
||||
|
@ -348,44 +571,82 @@ public static render(extensionUri: vscode.Uri) {
|
|||
// ... other code ...
|
||||
|
||||
const panel = vscode.window.createWebviewPanel("helloworld", "Hello World", vscode.ViewColumn.One, {
|
||||
// Enable javascript in the webview
|
||||
enableScripts: true,
|
||||
// Restrict the webview to only load resources from the `out` directory
|
||||
localResourceRoots: [vscode.Uri.joinPath(extensionUri, 'out')]
|
||||
});
|
||||
|
||||
// ... other code ...
|
||||
}
|
||||
```
|
||||
|
||||
### Make sure everything works
|
||||
You should also update the content security policy of your webview to only allow scripts that have a specific nonce. To do this, create another utility function at `src/utilities/getNonce.ts`.
|
||||
|
||||
It's time to run a test to see if everything works. To do this, add a `<vscode-button>` to the webview HTML, and then open the extension in the Extension Development Host window by pressing `F5`.
|
||||
```typescript
|
||||
// file: src/utilities/getNonce.ts
|
||||
|
||||
export function getNonce() {
|
||||
let text = "";
|
||||
const possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
|
||||
for (let i = 0; i < 32; i++) {
|
||||
text += possible.charAt(Math.floor(Math.random() * possible.length));
|
||||
}
|
||||
return text;
|
||||
}
|
||||
```
|
||||
|
||||
Back in `HelloWorldPanel.ts` add the nonce to the webview `script` tag and create a content security policy `meta` tag so that only loading scripts with a nonce is allowed.
|
||||
|
||||
```typescript
|
||||
// file: src/panels/HelloWorldPanel.ts
|
||||
|
||||
import { getNonce } from "../utilities/getNonce";
|
||||
|
||||
// ... other code ...
|
||||
|
||||
private _getWebviewContent(webview: vscode.Webview, extensionUri: vscode.Uri) {
|
||||
// ... other code ...
|
||||
const webviewUri = getUri(webview, extensionUri, ["out", "webview.js"]);
|
||||
|
||||
const nonce = getNonce();
|
||||
|
||||
return /*html*/ `
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||
<script type="module" src="${toolkitUri}"></script>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="Content-Security-Policy" content="default-src 'none'; script-src 'nonce-${nonce}';">
|
||||
<title>Hello World!</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Hello World!</h1>
|
||||
<vscode-button id="howdy">Howdy!</vscode-button>
|
||||
<script type="module" nonce="${nonce}" src="${webviewUri}"></script>
|
||||
</body>
|
||||
</html>
|
||||
`;
|
||||
}
|
||||
```
|
||||
|
||||
_Note: As your extension grows you will likely want to add custom styles, fonts, and/or images to your webview. If you do, you will need to update the content security policy meta tag to explicity allow for these resources. This [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy) provides further information on the topic. Also here's a simple example of configuring these:_
|
||||
|
||||
```js
|
||||
private _getWebviewContent(webview: vscode.Webview, extensionUri: vscode.Uri) {
|
||||
return /*html*/ `
|
||||
// ... other markup ...
|
||||
<meta http-equiv="Content-Security-Policy" content="default-src 'none'; style-src ${webview.cspSource}; font-src ${webview.cspSource}; img-src ${webview.cspSource} https:; script-src 'nonce-${nonce}';">
|
||||
`;
|
||||
}
|
||||
```
|
||||
|
||||
### Make sure everything works
|
||||
|
||||
It's time to run a test to see if everything works. Just as before, open the extension in the Extension Development Host window by pressing `F5` and then run the `Hello World` command.
|
||||
|
||||
![Testing That The Toolkit Works](./assets/images/toolkit-button-test.gif)
|
||||
|
||||
Theming is built right into the components, so you can test that out, too. Open the Command Pallette (`Crtl + Shift + P` or `Cmd + Shift + P` on Mac), search for "Preferences: Color Theme," and cycle through all the themes to see the button change.
|
||||
Theming is built right into the components, so you can test that out too. Open the Command Palette (`Crtl + Shift + P` or `Cmd + Shift + P` on Mac), search for "Preferences: Color Theme," and cycle through all the themes to see the button change.
|
||||
|
||||
![Testing That The Toolkit Theme Utilities Work](./assets/images/toolkit-theme-test.gif)
|
||||
|
||||
|
@ -395,7 +656,7 @@ The final part of this guide will help you adjust the extension once more, so th
|
|||
|
||||
### Create the message listener method
|
||||
|
||||
Now, you can create the `_setWebviewMessageListener` method in our `HelloWorldPanel` class. It'll be responsible for setting up an event listener that listens for messages passed from the webview context, and executes code based on the received message.
|
||||
Now, you can create the `_setWebviewMessageListener` method in our `HelloWorldPanel` class. It'll be responsible for setting up an event listener that listens for messages passed from the webview context and executes code based on the received message.
|
||||
|
||||
```typescript
|
||||
// file: src/panels/HelloWorldPanel.ts
|
||||
|
@ -436,22 +697,27 @@ private constructor(panel: vscode.WebviewPanel, extensionUri: vscode.Uri) {
|
|||
|
||||
### Create message-sending code
|
||||
|
||||
Now that the message listener code created, you need message-sending code.
|
||||
Now that the message listener code is created, you need message-sending code.
|
||||
|
||||
This will come in the form of a `main.js` file that'll send a message whenever the `<vscode-button>` is clicked.
|
||||
Back in `src/webview/main.ts` add the following code that will send a message whenever the `<vscode-button>` is clicked.
|
||||
|
||||
Create a new file at `webview-ui/main.js`.
|
||||
```typescript
|
||||
// file: src/webview/main.ts
|
||||
|
||||
```javascript
|
||||
// file: webview-ui/main.js
|
||||
import { provideVSCodeDesignSystem, vsCodeButton, Button } from "@vscode/webview-ui-toolkit";
|
||||
|
||||
// ... toolkit registeration code ...
|
||||
|
||||
const vscode = acquireVsCodeApi();
|
||||
|
||||
window.addEventListener("load", main);
|
||||
|
||||
function main() {
|
||||
const howdyButton = document.getElementById("howdy");
|
||||
howdyButton.addEventListener("click", handleHowdyClick);
|
||||
// To get improved type annotations/IntelliSense the associated class for
|
||||
// a given toolkit component can be imported and used to type cast a reference
|
||||
// to the element (i.e. the `as Button` syntax)
|
||||
const howdyButton = document.getElementById("howdy") as Button;
|
||||
howdyButton?.addEventListener("click", handleHowdyClick);
|
||||
}
|
||||
|
||||
function handleHowdyClick() {
|
||||
|
@ -462,51 +728,42 @@ function handleHowdyClick() {
|
|||
}
|
||||
```
|
||||
|
||||
In order for this `main.js` file to run, the last thing to do is create and pass a URI into the webview HTML – just like you did for the toolkit package.
|
||||
You'll notice a few errors. To fix them, update the `tsconfig.json` file by changing the `lib` compiler option to include `DOM`.
|
||||
|
||||
```typescript
|
||||
// file: src/panels/HelloWorldPanel.ts
|
||||
```json
|
||||
// file: tsconfig.json
|
||||
|
||||
private _getWebviewContent(webview: vscode.Webview, extensionUri: vscode.Uri) {
|
||||
// ... other code ...
|
||||
|
||||
const mainUri = getUri(webview, extensionUri, ["webview-ui", "main.js"]);
|
||||
|
||||
return /*html*/ `
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||
<script type="module" src="${toolkitUri}"></script>
|
||||
<script type="module" src="${mainUri}"></script>
|
||||
<title>Hello World!</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Hello World!</h1>
|
||||
<vscode-button id="howdy">Howdy!</vscode-button>
|
||||
</body>
|
||||
</html>
|
||||
`;
|
||||
{
|
||||
"compilerOptions": {
|
||||
"lib": ["ES2020", "DOM"]
|
||||
// ... other options ...
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
Also, install the `@types/vscode-webview` package as a development dependency.
|
||||
|
||||
```
|
||||
npm install --save-dev @types/vscode-webview
|
||||
```
|
||||
|
||||
_Tip: Sometimes you need to restart the TypeScript language server for this change to be picked up. Run "TypeScript: Restart TS server" in the command palette if you're still getting type errors._
|
||||
|
||||
### One final test
|
||||
|
||||
You should test that this all works. To do this, run the extension and click the "Howdy!" button.
|
||||
|
||||
![Testing that the clicking the howdy button works](./assets/images/toolkit-button-click-test.png)
|
||||
![Testing that clicking the howdy button works](./assets/images/toolkit-button-click-test.png)
|
||||
|
||||
## Next steps
|
||||
|
||||
Congratulations on getting started with the Webview UI Toolkit! 🎊
|
||||
|
||||
You can find a [completed hello world extension](https://github.com/microsoft/vscode-webview-ui-toolkit-samples/tree/main/default/hello-world) based on this guide that includes documentation comments explaining the code in even more detail. Also, in the same repository, you can take a look at other sample extensions/templates demonstrating the toolkit in more complex scenarios or with different frontend frameworks/build tools.
|
||||
You can find a [completed hello world extension](https://github.com/microsoft/vscode-webview-ui-toolkit-samples/tree/main/default/hello-world) based on this guide that includes documentation comments explaining the code in even more detail. In the same repository, you can take a look at [other sample extensions/templates](https://github.com/microsoft/vscode-webview-ui-toolkit-samples) demonstrating the toolkit in more complex scenarios or with different frontend frameworks and build tools.
|
||||
|
||||
One more thing: Check out our component documentation and Visual Studio Code guides on how to work with webviews.
|
||||
Also, check out our component documentation and Visual Studio Code resources on how to build extensions.
|
||||
|
||||
- [Component Docs](./components.md)
|
||||
- [Toolkit Extension Samples](https://github.com/microsoft/vscode-webview-ui-toolkit-samples)
|
||||
- [Webview API Guide](https://code.visualstudio.com/api/extension-guides/webview)
|
||||
- [Webview API Guidelines](https://code.visualstudio.com/api/references/extension-guidelines#webviews)
|
||||
- [Webview UX Guidelines](https://code.visualstudio.com/api/ux-guidelines/webviews)
|
||||
|
|
Загрузка…
Ссылка в новой задаче