forked from plantuml-stdlib/C4-PlantUML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
C4_Component.puml
104 lines (84 loc) · 3.48 KB
/
C4_Component.puml
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
'!include https://raw.githubusercontent.com/RicardoNiepel/C4-PlantUML/master/C4_Container.puml
!include https://raw.githubusercontent.com/NJ-Brad/C4-PlantUML/master/C4_Container.puml
' uncomment the following line and comment the first to use locally
'!include C4_Container.puml
' Scope: A single container.
' Primary elements: Components within the container in scope.
' Supporting elements: Containers (within the software system in scope) plus people and software systems directly connected to the components.
' Intended audience: Software architects and developers.
' Colors
' ##################################
!procedure COMPONENT_BG_COLOR()
#85BBF0
!endprocedure
!procedure EXTERNAL_COMPONENT_BG_COLOR()
#BBBBBB
!endprocedure
' Styling
' ##################################
skinparam rectangle<<component>> {
StereotypeFontColor ELEMENT_FONT_COLOR()
FontColor #000000
BackgroundColor COMPONENT_BG_COLOR()
BorderColor #78A8D8
}
skinparam database<<component>> {
StereotypeFontColor ELEMENT_FONT_COLOR()
FontColor #000000
BackgroundColor COMPONENT_BG_COLOR()
BorderColor #78A8D8
}
skinparam rectangle<<external_component>> {
StereotypeFontColor ELEMENT_FONT_COLOR()
FontColor #000000
BackgroundColor EXTERNAL_COMPONENT_BG_COLOR()
BorderColor #8A8A8A
}
skinparam database<<external_component>> {
StereotypeFontColor ELEMENT_FONT_COLOR
FontColor #000000
BackgroundColor EXTERNAL_COMPONENT_BG_COLOR
BorderColor #8A8A8A
}
' Layout
' ##################################
!procedure LAYOUT_WITH_LEGEND()
hide stereotype
legend right
|= |= Type |
|<PERSON_BG_COLOR()> | person |
|<EXTERNAL_PERSON_BG_COLOR()> | external person |
|<SYSTEM_BG_COLOR()> | system |
|<EXTERNAL_SYSTEM_BG_COLOR()> | external system |
|<CONTAINER_BG_COLOR()> | container |
|<COMPONENT_BG_COLOR()> | component |
|<EXTERNAL_CONTAINER_BG_COLOR()> | external container |
|<EXTERNAL_COMPONENT_BG_COLOR()> | external component |
endlegend
!endprocedure
' Elements
' ##################################
!unquoted procedure Component(e_alias, e_label, e_techn)
rectangle "==e_label\n//<size:$TECHN_FONT_SIZE>[e_techn]</size>//" <<component>> as e_alias
!endprocedure
!unquoted procedure Component(e_alias, e_label, e_techn, e_descr)
rectangle "==e_label\n//<size:$TECHN_FONT_SIZE>[e_techn]</size>//\n\n e_descr" <<component>> as e_alias
!endprocedure
!unquoted procedure ComponentDb(e_alias, e_label, e_techn)
database "==e_label\n//<size:$TECHN_FONT_SIZE>[e_techn]</size>//" <<component>> as e_alias
!endprocedure
!unquoted procedure ComponentDb(e_alias, e_label, e_techn, e_descr)
database "==e_label\n//<size:$TECHN_FONT_SIZE>[e_techn]</size>//\n\n e_descr" <<component>> as e_alias
!endprocedure
!unquoted procedure Component_Ext(e_alias, e_label, e_techn)
rectangle "==e_label\n//<size:TECHN_FONT_SIZE>[e_techn]</size>//" <<external_component>> as e_alias
!endprocedure
!unquoted procedure Component_Ext(e_alias, e_label, e_techn, e_descr)
rectangle "==e_label\n//<size:TECHN_FONT_SIZE>[e_techn]</size>//\n\n e_descr" <<external_component>> as e_alias
!endprocedure
!unquoted procedure ComponentDb_Ext(e_alias, e_label, e_techn)
database "==e_label\n//<size:TECHN_FONT_SIZE>[e_techn]</size>//" <<external_component>> as e_alias
!endprocedure
!unquoted procedure ComponentDb_Ext(e_alias, e_label, e_techn, e_descr)
database "==e_label\n//<size:TECHN_FONT_SIZE>[e_techn]</size>//\n\n e_descr" <<external_component>> as e_alias
!endprocedure