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:
front_end/ui/components/docs/DIR
where DIR
is the name of your component.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.BUILD.gn
in your new DIR
. 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" ] }
front_end/ui/components/docs/BUILD.gn
to add your new directory's BUILD.GN
to the public_deps
array.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.Default
. If not, run the server and pass the --target
flag: npm run components-server -- --target=Release
.