2020-07-26 11:50:36 +02:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<link
|
|
|
|
href="https://fonts.googleapis.com/css?family=Montserrat&display=swap"
|
|
|
|
rel="stylesheet"
|
|
|
|
/>
|
|
|
|
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
|
|
<link href="https://fonts.googleapis.com/css?family=Noto+Sans+SC&display=swap" rel="stylesheet">
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
/* background: rgb(221, 208, 208); */
|
|
|
|
background:#333;
|
|
|
|
font-family: 'Arial';
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
h1 { color: grey;}
|
|
|
|
.mermaid2 {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.height {
|
|
|
|
min-height: 600px;
|
|
|
|
height: 600px;
|
|
|
|
}
|
|
|
|
.height2 {
|
|
|
|
min-height: 600px;
|
|
|
|
height: 1300px;
|
|
|
|
}
|
|
|
|
.width {
|
|
|
|
width: 33%;
|
|
|
|
border: 1px solid blue;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>Showcases of diagrams</h1>
|
|
|
|
<div class="flex flex-wrap">
|
|
|
|
<div class="mermaid width height">
|
2020-07-29 18:38:59 +02:00
|
|
|
%%{init: {'theme': 'base', 'themeVariables':{'primaryColor': '#ff0000'}}%%
|
2020-07-26 11:50:36 +02:00
|
|
|
graph TD
|
|
|
|
A[Christmas] -->|Get money| B(Go shopping)
|
|
|
|
B --> C{Let me think}
|
|
|
|
B --> G[/Another/]
|
|
|
|
C ==>|One| D[Laptop]
|
|
|
|
C -->|Two| E[iPhone]
|
|
|
|
C -->|Three| F[fa:fa-car Car]
|
|
|
|
subgraph section
|
|
|
|
C
|
|
|
|
D
|
|
|
|
E
|
|
|
|
F
|
|
|
|
G
|
|
|
|
end
|
|
|
|
</div>
|
|
|
|
<div class="mermaid width height">
|
|
|
|
flowchart TD
|
|
|
|
A[Christmas] -->|Get money| B(Go shopping)
|
|
|
|
B --> C{Let me think}
|
|
|
|
B --> G[Another]
|
|
|
|
C ==>|One| D[Laptop]
|
|
|
|
C x--x|Two| E[iPhone]
|
|
|
|
C o--o|Three| F[fa:fa-car Car]
|
|
|
|
subgraph section
|
|
|
|
C
|
|
|
|
D
|
|
|
|
E
|
|
|
|
F
|
|
|
|
G
|
|
|
|
end
|
|
|
|
</div>
|
|
|
|
<div class="mermaid width height" >
|
|
|
|
sequenceDiagram
|
|
|
|
autonumber
|
|
|
|
par Action 1
|
|
|
|
Alice->>John: Hello John, how are you?
|
|
|
|
and Action 2
|
|
|
|
Alice->>Bob: Hello Bob, how are you?
|
|
|
|
end
|
|
|
|
Alice->>+John: Hello John, how are you?
|
|
|
|
Alice->>+John: John, can you hear me?
|
|
|
|
John-->>-Alice: Hi Alice, I can hear you!
|
|
|
|
Note right of John: John is perceptive
|
|
|
|
John-->>-Alice: I feel great!
|
|
|
|
loop Every minute
|
|
|
|
John-->Alice: Great!
|
|
|
|
end
|
2020-07-30 08:34:41 +02:00
|
|
|
</div>
|
|
|
|
<div class="mermaid width height" >
|
|
|
|
%%{init: {'theme':'dark'}}%%
|
|
|
|
|
|
|
|
classDiagram
|
|
|
|
Animal "1" <|-- Duck
|
|
|
|
Animal <|-- Fish
|
|
|
|
Animal <--o Zebra
|
|
|
|
Animal : +int age
|
|
|
|
Animal : +String gender
|
|
|
|
Animal: +isMammal()
|
|
|
|
Animal: +mate()
|
|
|
|
class Duck{
|
|
|
|
+String beakColor
|
|
|
|
+swim()
|
|
|
|
+quack()
|
|
|
|
}
|
|
|
|
class Fish{
|
|
|
|
-int sizeInFeet
|
|
|
|
-canEat()
|
|
|
|
}
|
|
|
|
class Zebra{
|
|
|
|
+bool is_wild
|
|
|
|
+run()
|
|
|
|
}
|
2020-07-26 11:50:36 +02:00
|
|
|
</div>
|
|
|
|
<div class="mermaid width height">
|
|
|
|
gantt
|
|
|
|
dateFormat :YYYY-MM-DD
|
|
|
|
title Adding GANTT diagram functionality to mermaid
|
|
|
|
excludes :excludes the named dates/days from being included in a charted task..
|
|
|
|
section A section
|
|
|
|
Completed task :done, des1, 2014-01-06,2014-01-08
|
|
|
|
Active task :active, des2, 2014-01-09, 3d
|
|
|
|
Future task : des3, after des2, 5d
|
|
|
|
Future task2 : des4, after des3, 5d
|
|
|
|
|
|
|
|
section Critical tasks
|
|
|
|
Completed task in the critical line :crit, done, 2014-01-06,24h
|
|
|
|
Implement parser and jison :crit, done, after des1, 2d
|
|
|
|
Create tests for parser :crit, active, 3d
|
|
|
|
Future task in critical line :crit, 5d
|
|
|
|
Create tests for renderer :2d
|
|
|
|
Add to mermaid :1d
|
|
|
|
|
|
|
|
section Documentation
|
|
|
|
Describe gantt syntax :active, a1, after des1, 3d
|
|
|
|
Add gantt diagram to demo page :after a1 , 20h
|
|
|
|
Add another diagram to demo page :doc1, after a1 , 48h
|
|
|
|
|
|
|
|
section Last section
|
|
|
|
Describe gantt syntax :after doc1, 3d
|
|
|
|
Add gantt diagram to demo page :20h
|
|
|
|
Add another diagram to demo page :48h
|
|
|
|
</div>
|
|
|
|
<div class="mermaid width height2">
|
|
|
|
stateDiagram
|
|
|
|
[*] --> Active
|
|
|
|
|
|
|
|
state Active {
|
|
|
|
[*] --> NumLockOff
|
|
|
|
NumLockOff --> NumLockOn : EvNumLockPressed
|
|
|
|
NumLockOn --> NumLockOff : EvNumLockPressed
|
|
|
|
--
|
|
|
|
[*] --> CapsLockOff
|
|
|
|
CapsLockOff --> CapsLockOn : EvCapsLockPressed
|
|
|
|
CapsLockOn --> CapsLockOff : EvCapsLockPressed
|
|
|
|
--
|
|
|
|
[*] --> ScrollLockOff
|
|
|
|
ScrollLockOff --> ScrollLockOn : EvCapsLockPressed
|
|
|
|
ScrollLockOn --> ScrollLockOff : EvCapsLockPressed
|
|
|
|
}
|
|
|
|
state SomethingElse {
|
|
|
|
A --> B
|
|
|
|
B --> A
|
|
|
|
}
|
|
|
|
|
|
|
|
Active --> SomethingElse
|
2020-07-30 19:18:18 +02:00
|
|
|
SomethingElse --> [*]
|
2020-07-26 11:50:36 +02:00
|
|
|
note right of SomethingElse : This is the note to the right.
|
|
|
|
</div>
|
|
|
|
<div class="mermaid width height2">
|
|
|
|
stateDiagram-v2
|
|
|
|
[*] --> Active
|
|
|
|
|
|
|
|
state Active {
|
|
|
|
[*] --> NumLockOff
|
|
|
|
NumLockOff --> NumLockOn : EvNumLockPressed
|
|
|
|
NumLockOn --> NumLockOff : EvNumLockPressed
|
|
|
|
--
|
|
|
|
[*] --> CapsLockOff
|
|
|
|
CapsLockOff --> CapsLockOn : EvCapsLockPressed
|
|
|
|
CapsLockOn --> CapsLockOff : EvCapsLockPressed
|
|
|
|
--
|
|
|
|
[*] --> ScrollLockOff
|
|
|
|
ScrollLockOff --> ScrollLockOn : EvCapsLockPressed
|
|
|
|
ScrollLockOn --> ScrollLockOff : EvCapsLockPressed
|
|
|
|
}
|
|
|
|
state SomethingElse {
|
|
|
|
A --> B
|
|
|
|
B --> A
|
|
|
|
}
|
|
|
|
|
|
|
|
Active --> SomethingElse2
|
2020-07-30 19:18:18 +02:00
|
|
|
SomethingElse2 --> [*]
|
2020-07-26 11:50:36 +02:00
|
|
|
note right of SomethingElse2 : This is the note to the right.
|
|
|
|
</div>
|
|
|
|
<div class="mermaid width height2">
|
|
|
|
erDiagram
|
|
|
|
CUSTOMER }|..|{ DELIVERY-ADDRESS : has
|
|
|
|
CUSTOMER ||--o{ ORDER : places
|
|
|
|
CUSTOMER ||--o{ INVOICE : "liable for"
|
|
|
|
DELIVERY-ADDRESS ||--o{ ORDER : receives
|
|
|
|
INVOICE ||--|{ ORDER : covers
|
|
|
|
ORDER ||--|{ ORDER-ITEM : includes
|
|
|
|
PRODUCT-CATEGORY ||--|{ PRODUCT : contains
|
|
|
|
PRODUCT ||--o{ ORDER-ITEM : "ordered in"
|
|
|
|
</div>
|
|
|
|
<div class="mermaid width height">
|
|
|
|
journey
|
|
|
|
title My working day
|
|
|
|
section Go to work
|
|
|
|
Make tea: 5: Me
|
|
|
|
Go upstairs: 3: Me
|
|
|
|
Do work: 1: Me, Cat
|
|
|
|
section Go home
|
|
|
|
Go downstairs: 5: Me
|
|
|
|
Sit down: 5: Me
|
|
|
|
</div>
|
2022-02-10 20:32:21 +01:00
|
|
|
<div class="mermaid width height">
|
|
|
|
requirementDiagram
|
2020-07-26 11:50:36 +02:00
|
|
|
|
2022-02-10 20:32:21 +01:00
|
|
|
requirement test_req {
|
|
|
|
id: 1
|
|
|
|
text: the test text.
|
|
|
|
risk: high
|
|
|
|
verifymethod: test
|
|
|
|
}
|
|
|
|
|
|
|
|
functionalRequirement test_req2 {
|
|
|
|
id: 1.1
|
|
|
|
text: the second test text.
|
|
|
|
risk: low
|
|
|
|
verifymethod: inspection
|
|
|
|
}
|
|
|
|
|
|
|
|
performanceRequirement test_req3 {
|
|
|
|
id: 1.2
|
|
|
|
text: the third test text.
|
|
|
|
risk: medium
|
|
|
|
verifymethod: demonstration
|
|
|
|
}
|
|
|
|
|
|
|
|
element test_entity {
|
|
|
|
type: simulation
|
|
|
|
}
|
|
|
|
|
|
|
|
element test_entity2 {
|
|
|
|
type: word doc
|
|
|
|
docRef: reqs/test_entity
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
test_entity - satisfies -> test_req2
|
|
|
|
test_req - traces -> test_req2
|
|
|
|
test_req - contains -> test_req3
|
|
|
|
test_req <- copies - test_entity2
|
|
|
|
</div>
|
2022-03-17 20:07:27 +01:00
|
|
|
<div class="mermaid" class="width height">
|
2022-03-25 08:56:22 +01:00
|
|
|
gitGraph
|
2022-03-17 20:07:27 +01:00
|
|
|
commit
|
|
|
|
branch hotfix
|
|
|
|
checkout hotfix
|
|
|
|
commit
|
|
|
|
branch develop
|
|
|
|
checkout develop
|
2022-03-25 08:56:22 +01:00
|
|
|
commit id:"An id" tag:"A tag"
|
2022-03-17 20:07:27 +01:00
|
|
|
branch featureB
|
|
|
|
checkout featureB
|
|
|
|
commit type:HIGHLIGHT
|
2022-03-25 08:56:22 +01:00
|
|
|
checkout main
|
2022-03-17 20:07:27 +01:00
|
|
|
checkout hotfix
|
|
|
|
commit type:NORMAL
|
|
|
|
checkout develop
|
|
|
|
commit type:REVERSE
|
|
|
|
checkout featureB
|
|
|
|
commit
|
2022-03-25 08:56:22 +01:00
|
|
|
checkout main
|
2022-03-17 20:07:27 +01:00
|
|
|
merge hotfix
|
|
|
|
checkout featureB
|
|
|
|
commit
|
|
|
|
checkout develop
|
|
|
|
branch featureA
|
|
|
|
commit
|
|
|
|
checkout develop
|
|
|
|
merge hotfix
|
|
|
|
checkout featureA
|
|
|
|
commit
|
|
|
|
checkout featureB
|
|
|
|
commit
|
|
|
|
checkout develop
|
|
|
|
merge featureA
|
|
|
|
branch release
|
|
|
|
checkout release
|
|
|
|
commit
|
2022-03-25 08:56:22 +01:00
|
|
|
checkout main
|
2022-03-17 20:07:27 +01:00
|
|
|
commit
|
|
|
|
checkout release
|
2022-03-25 08:56:22 +01:00
|
|
|
merge main
|
2022-03-17 20:07:27 +01:00
|
|
|
checkout develop
|
|
|
|
merge release
|
|
|
|
</div>
|
2020-07-26 11:50:36 +02:00
|
|
|
<script src="./mermaid.js"></script>
|
|
|
|
<script>
|
|
|
|
mermaid.parseError = function (err, hash) {
|
2022-02-10 20:32:21 +01:00
|
|
|
// console.error('Mermaid error: ', err);
|
|
|
|
};
|
2020-07-26 11:50:36 +02:00
|
|
|
mermaid.initialize({
|
2020-07-29 18:38:59 +02:00
|
|
|
theme: 'dark',
|
2020-07-26 11:50:36 +02:00
|
|
|
// arrowMarkerAbsolute: true,
|
|
|
|
// themeCSS: '.edgePath .path {stroke: red;} .arrowheadPath {fill: red;}',
|
|
|
|
logLevel: 0,
|
2022-02-10 20:32:21 +01:00
|
|
|
flowchart: { curve: 'cardinal', htmlLabels: true },
|
2020-07-26 11:50:36 +02:00
|
|
|
// gantt: { axisFormat: '%m/%d/%Y' },
|
|
|
|
sequence: { actorMargin: 50, showSequenceNumbers: true },
|
|
|
|
// sequenceDiagram: { actorMargin: 300 } // deprecated
|
|
|
|
fontFamily: '"arial", sans-serif',
|
|
|
|
curve: 'cardinal',
|
2022-02-10 20:32:21 +01:00
|
|
|
securityLevel: 'strict',
|
2020-07-26 11:50:36 +02:00
|
|
|
});
|
2022-02-10 20:32:21 +01:00
|
|
|
function callback() {
|
|
|
|
alert('It worked');
|
|
|
|
}
|
2020-07-26 11:50:36 +02:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|