Components
You can add custom EventCatalog components to your custom pages.
See the list of components and how to use them.
You can also added components designed specifically for custom documentation.
Embed EventCatalog Visualizer (NodeGraph)
In your custom documentation pages you can embed the EventCatalog Visualizer (NodeGraph) using the NodeGraph
component.
This let's you embed any visualization (domain, service, message) into your custom documentation page.
To embed the NodeGraph component, you need to use the component, and pass in the id
of the resource, version
and type
.
This is my custom documentation page, here is a NodeGraph:
<!-- Here we embed the NodeGraph component, passing in the id, version and type of the resource -->
<!-- This exammple will render a domain called "Orders" with the version "1.0.0" -->
<NodeGraph id="Orders" version="1.0.0" type="domain" />
## Getting Started
Rest of my markdown content...
NodeGraph props
Prop | Type | Required | Description |
---|---|---|---|
id | string | Yes | The id of the resource (domain, service, or message) |
version | string | Yes | The version of the resource |
type | string | Yes | The type of the resource (domain, service, command, event, query) |