UNPKG

1.92 kBMarkdownView Raw
1# Components dev server
2
3This server serves up examples of the web components built within DevTools and provides a useful way to document various states of components.
4
5For more background, see the [initial proposal and design doc](https://docs.google.com/document/d/1P6qtACf4aryfT9OSHxNFI3okMKt9oUrtzOKCws5bOec/edit?pli=1).
6
7To add an example for your component:
8
91. Create `front_end/ui/components/docs/DIR` where `DIR` is the name of your component.
102. Within the new `DIR`, add HTML and TypeScript files. Each one of these is a standalone example. You should name the HTML file based on what it's documenting, e.g. `basic.html` or `data-missing.html`, and add a TypeScript file with the same name. The TypeScript file should contain all the code to import and run your component, and within the HTML file you can place any HTML or CSS you need (inline style tags are fine for examples) to render the component in the right context.
113. Create a `BUILD.gn` in your new `DIR`. This should contain the following code:
12
13```
14import("../../../scripts/build/ninja/copy.gni")
15import("../../../third_party/typescript/typescript.gni")
16
17ts_library("ts") {
18 sources = [
19 "basic.ts"
20 ]
21
22 deps = [
23 # As an example: anything your TS code imports needs to be listed here as a dep.
24 "../../ui/components/data_grid:bundle",
25 ]
26}
27
28copy_to_gen("elements_breadcrumbs") {
29 sources = [
30 "basic.html",
31 # list all other examples here
32 ]
33
34 deps = [
35 ":ts"
36 ]
37}
38```
39
40
414. Update `front_end/ui/components/docs/BUILD.gn` to add your new directory's `BUILD.GN` to the `public_deps` array.
425. Run `npm run components-server` to fire up a server on `localhost:8090`. You should now see your component listed and you can click on the link to view the examples.
436. **Note**: the server assumes your built target is `Default`. If not, run the server and pass the `--target` flag: `npm run components-server -- --target=Release`.