Skip to content

Commit

Permalink
Merge branch 'main' into refactor/setup-workspaces
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosallexandre committed Dec 10, 2024
2 parents 3f561a0 + bc098da commit 06b55e9
Show file tree
Hide file tree
Showing 45 changed files with 690 additions and 361 deletions.
30 changes: 30 additions & 0 deletions eventcatalog/src/pages/visualiser/context-map/index.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
import NodeGraph from '@components/MDX/NodeGraph/NodeGraph.astro';
import { ViewTransitions } from 'astro:transitions';
import VerticalSideBarLayout from '@layouts/VerticalSideBarLayout.astro';
---

<VerticalSideBarLayout title={`Visualiser | Bounded context map`}>
<div class="bg-gray-100/50 m-4">
<div
class="h-[calc(100vh-110px)] w-full relative border border-gray-200"
id={`domain-context-map-portal`}
transition:animate="fade"
>
</div>
<NodeGraph
id="domain-context-map"
collection="domain-context-map"
title="Bounded context map"
mode="full"
linkTo="visualiser"
version="1.0.0"
linksToVisualiser={false}
href={{
label: ``,
url: '/',
}}
/>
</div>
<ViewTransitions />
</VerticalSideBarLayout>
2 changes: 1 addition & 1 deletion examples/default/domains/Orders/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
- id: NotificationService
version: 0.0.2
- id: OrdersService
version: 0.0.2
version: 0.0.3
badges:
- content: New domain
backgroundColor: blue
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ receives:
- id: InventoryAdjusted
version: 0.0.3
- id: GetOrder
- id: UserSubscriptionCancelled
sends:
- id: OrderAmended
- id: OrderCancelled
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ receives:
- id: PaymentInitiated
version: 0.0.1
- id: GetPaymentStatus
- id: UserSubscriptionStarted
- id: InventoryAdjusted
sends:
- id: PaymentProcessed
version: 0.0.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ receives:
- id: CancelSubscription
version: 0.0.1
- id: GetSubscriptionStatus
- id: PaymentProcessed
version: 0.0.1
sends:
- id: UserSubscriptionStarted
version: 0.0.1
Expand Down
Loading

0 comments on commit 06b55e9

Please sign in to comment.