This server serves up examples of the web components built within DevTools and provides a useful way to document various states of components.
For more background, see the initial proposal and design doc.
To add an example for your component:
- Create
front_end/ui/components/docs/DIR
whereDIR
is the name of your component. - 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
ordata-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. - Create a
BUILD.gn
in your newDIR
. This should contain the following code:
import("../../../scripts/build/ninja/copy.gni")
import("../../../scripts/build/typescript/typescript.gni")
ts_library("ts") {
sources = [
"basic.ts"
]
deps = [
# As an example: anything your TS code imports needs to be listed here as a dep.
"../../ui/components/data_grid:bundle",
]
}
copy_to_gen("elements_breadcrumbs") {
sources = [
"basic.html",
# list all other examples here
]
deps = [
":ts"
]
}
- Update
front_end/ui/components/docs/BUILD.gn
to add your new directory'sBUILD.GN
to thepublic_deps
array. - Run
npm run components-server
to fire up a server onlocalhost:8090
. You should now see your component listed and you can click on the link to view the examples. - 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
.