-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
78 lines (67 loc) · 2.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Saga Pattern Diagrams</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
box-sizing: border-box;
text-align: center;
background-color: #f8f9fa;
color: #333;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1, h2 {
margin-top: 40px;
color: #007bff;
}
img {
max-width: 100%;
height: auto;
display: block;
margin: 20px auto;
border: 1px solid #dee2e6;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<div class="container">
<h1>Saga Pattern Architecture Diagrams</h1>
<div class="orchestration">
<h2>Orchestration Pattern</h2>
<div class="orchestration-diagrams">
<h3>Create Order Success</h3>
<img src="/tiny-saga/diagrams/Orchestration/Order_Flows-Success-Order.drawio.png" alt="Orchestration-CreateOrderSuccess">
<h3>Create Order Inventory Not Available</h3>
<img src="/tiny-saga/diagrams/Orchestration/Order_Flows-Inventory_not_available.drawio.png" alt="Orchestration-CreateOrderInventoryNotAvailable">
<h3>Create Order Insufficient Fund</h3>
<img src="/tiny-saga/diagrams/Orchestration/Order_Flows-Insufficient_Fund.drawio.png" alt="Orchestration-CreateOrderInsufficientFund">
</div>
</div>
<div class="choreography">
<h2>Choreography Pattern</h2>
<div class="choreography-diagrams">
<h3>Create Order Success</h3>
<img src="/tiny-saga/diagrams/Success_Order_Flow-Success-Order.drawio.png" alt="CreateOrderSuccess">
<h3>Create Order Inventory Not Available</h3>
<img src="/tiny-saga/diagrams/Success_Order_Flow-Inventory_not_available.drawio.png" alt="CreateOrderInventoryNotAvailable">
<h3>Create Order Insufficient Fund</h3>
<img src="/tiny-saga/diagrams/Success_Order_Flow-Insufficient_Fund.drawio.png" alt="CreateOrderInsufficientFund">
</div>
</div>
</div>
</body>
</html>