mermaid/cypress/platform/knsv2.html

431 lines
11 KiB
HTML
Raw Normal View History

2021-04-29 18:50:12 +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" />
2021-04-29 18:50:12 +02:00
<link
rel="stylesheet"
2024-05-08 11:10:05 +02:00
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link
href="https://cdn.jsdelivr.net/npm/@mdi/font@6.9.96/css/materialdesignicons.min.css"
rel="stylesheet"
/>
2024-10-29 16:21:56 +01:00
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Noto+Sans+SC&display=swap"
2021-04-29 18:50:12 +02:00
rel="stylesheet"
/>
2024-05-03 12:02:19 +02:00
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Kalam:wght@300;400;700&family=Rubik+Mono+One&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&family=Rubik+Mono+One&display=swap"
rel="stylesheet"
/>
2024-04-26 14:15:07 +02:00
2021-04-29 18:50:12 +02:00
<style>
body {
/* background: rgb(221, 208, 208); */
2024-10-28 12:53:03 +01:00
/* background: #333; */
2021-04-29 18:50:12 +02:00
font-family: 'Arial';
/* color: white; */
2021-04-29 18:50:12 +02:00
/* font-size: 18px !important; */
}
2024-08-09 15:07:09 +02:00
h1 {
color: grey;
}
2024-08-09 15:07:09 +02:00
2021-04-29 18:50:12 +02:00
.mermaid2 {
display: none;
}
2024-08-09 15:07:09 +02:00
2021-04-29 18:50:12 +02:00
.mermaid svg {
/* font-size: 18px !important; */
2024-05-08 14:16:04 +02:00
2024-05-10 13:21:39 +02:00
/* background-color: #efefef;
2024-05-08 11:10:05 +02:00
background-image: radial-gradient(#fff 51%, transparent 91%),
radial-gradient(#fff 51%, transparent 91%);
background-size: 20px 20px;
2024-05-10 13:21:39 +02:00
background-position:
0 0,
10px 10px;
background-repeat: repeat; */
2021-04-29 18:50:12 +02:00
}
2024-08-09 15:07:09 +02:00
2021-06-03 20:47:24 +02:00
.malware {
position: fixed;
bottom: 0;
left: 0;
right: 0;
2021-06-03 20:47:24 +02:00
height: 150px;
background: red;
color: black;
display: flex;
display: flex;
justify-content: center;
align-items: center;
font-family: monospace;
font-size: 72px;
}
pre {
width: 100%;
}
/* tspan {
2024-05-08 14:16:04 +02:00
font-size: 6px !important;
} */
2021-04-29 18:50:12 +02:00
</style>
</head>
2024-08-09 15:07:09 +02:00
2021-04-29 18:50:12 +02:00
<body>
2024-11-27 15:52:24 +01:00
<pre id="diagram4" class="mermaid">
2024-11-08 13:47:39 +01:00
---
config:
layout: elk
---
2024-11-27 15:52:24 +01:00
flowchart LR
subgraph S2
subgraph s1["APA"]
D{"Use the editor"}
end
2024-11-27 15:52:24 +01:00
D -- Mermaid js --> I{"fa:fa-code Text"}
D --> I
D --> I
2024-11-27 15:52:24 +01:00
end
</pre>
<pre id="diagram4" class="mermaid">
---
config:
layout: elk
---
flowchart LR
a
subgraph s0["APA"]
subgraph s8["APA"]
subgraph s1["APA"]
D{"X"}
E[Q]
end
subgraph s3["BAPA"]
F[Q]
I
end
D --> I
D --> I
D --> I
I{"X"}
end
end
</pre>
<pre id="diagram4" class="mermaid">
---
config:
layout: elk
---
flowchart LR
a
D{"Use the editor"}
D -- Mermaid js --> I{"fa:fa-code Text"}
D-->I
D-->I
</pre>
<pre id="diagram4" class="mermaid">
---
config:
layout: elk
---
flowchart LR
subgraph s1["Untitled subgraph"]
n1["Evaluate"]
n2["Option 1"]
n3["Option 2"]
n4["fa:fa-car Option 3"]
end
subgraph s2["Untitled subgraph"]
n5["Evaluate"]
n6["Option 1"]
n7["Option 2"]
n8["fa:fa-car Option 3"]
end
A["Start"] -- Some text --> B("Continue")
B --> C{"Evaluate"}
C -- One --> D["Option 1"]
C -- Two --> E["Option 2"]
C -- Three --> F["fa:fa-car Option 3"]
n1 -- One --> n2
n1 -- Two --> n3
n1 -- Three --> n4
n5 -- One --> n6
n5 -- Two --> n7
n5 -- Three --> n8
n1@{ shape: diam}
n2@{ shape: rect}
n3@{ shape: rect}
n4@{ shape: rect}
n5@{ shape: diam}
n6@{ shape: rect}
n7@{ shape: rect}
n8@{ shape: rect}
</pre>
2024-11-27 15:52:24 +01:00
<pre id="diagram4" class="mermaid">
---
config:
layout: elk
---
flowchart LR
subgraph s1["Untitled subgraph"]
n1["Evaluate"]
n2["Option 1"]
end
n1 -- One --> n2
</pre>
2024-11-27 15:52:24 +01:00
<pre id="diagram4" class="mermaid">
---
config:
layout: elk
---
flowchart LR
A{A} --> B & C
</pre
>
2024-11-27 15:52:24 +01:00
<pre id="diagram4" class="mermaid">
---
config:
layout: elk
---
flowchart LR
A{A} --> B & C
subgraph "subbe"
A
end
</pre
>
<pre id="diagram4" class="mermaid">
---
config:
layout: elk
2024-11-08 13:47:39 +01:00
---
flowchart LR
n2@{ shape: rect}
n3@{ shape: rect}
n4@{ shape: rect}
A["Start"] -- Some text --> B("Continue")
B --> C{"Evaluate"}
C -- One --> D["Option 1"]
C -- Two --> E["Option 2"]
C -- Three --> F["fa:fa-car Option 3"]
%% C@{ shape: hexagon}
</pre>
<pre id="diagram4" class="mermaid2">
---
config:
kanban:
ticketBaseUrl: 'https://github.com/your-repo/issues/#TICKET#'
---
kanban
Backlog
task1[📝 Define project requirements]@{ ticket: a101 }
To Do
task2[🔍 Research technologies]@{ ticket: a102 }
Review
task4[🔍 Code review for login feature]@{ ticket: a104 }
Done
task5[✅ Deploy initial version]@{ ticket: a105 }
In Progress
task3[💻 Develop login feature]@{ ticket: 103 }
2024-11-08 13:47:39 +01:00
</pre>
<pre id="diagram4" class="mermaid2">
2024-10-29 16:21:56 +01:00
flowchart LR
nA[Default] --> A@{ icon: 'fa:bell', form: 'rounded' }
</pre>
2024-11-08 13:47:39 +01:00
<pre id="diagram4" class="mermaid2">
2024-10-29 16:21:56 +01:00
flowchart LR
nA[Style] --> A@{ icon: 'fa:bell', form: 'rounded' }
style A fill:#f9f,stroke:#333,stroke-width:4px
</pre>
2024-11-08 13:47:39 +01:00
<pre id="diagram4" class="mermaid2">
2024-10-29 16:21:56 +01:00
flowchart LR
nA[Class] --> A@{ icon: 'fa:bell', form: 'rounded' }
A:::AClass
classDef AClass fill:#f9f,stroke:#333,stroke-width:4px
</pre>
2024-11-08 13:47:39 +01:00
<pre id="diagram4" class="mermaid2">
2024-10-29 16:21:56 +01:00
flowchart LR
nA[Class] --> A@{ icon: 'logos:aws', form: 'rounded' }
</pre>
2024-11-08 13:47:39 +01:00
<pre id="diagram4" class="mermaid2">
2024-10-29 16:21:56 +01:00
flowchart LR
nA[Default] --> A@{ icon: 'fa:bell', form: 'square' }
</pre>
2024-11-08 13:47:39 +01:00
<pre id="diagram4" class="mermaid2">
2024-10-29 16:21:56 +01:00
flowchart LR
nA[Style] --> A@{ icon: 'fa:bell', form: 'square' }
style A fill:#f9f,stroke:#333,stroke-width:4px
</pre>
2024-11-08 13:47:39 +01:00
<pre id="diagram4" class="mermaid2">
2024-10-29 16:21:56 +01:00
flowchart LR
nA[Class] --> A@{ icon: 'fa:bell', form: 'square' }
A:::AClass
classDef AClass fill:#f9f,stroke:#333,stroke-width:4px
</pre>
2024-11-08 13:47:39 +01:00
<pre id="diagram4" class="mermaid2">
2024-10-29 16:21:56 +01:00
flowchart LR
nA[Class] --> A@{ icon: 'logos:aws', form: 'square' }
</pre>
2024-11-08 13:47:39 +01:00
<pre id="diagram4" class="mermaid2">
2024-10-29 16:21:56 +01:00
flowchart LR
nA[Default] --> A@{ icon: 'fa:bell', form: 'circle' }
</pre>
2024-11-08 13:47:39 +01:00
<pre id="diagram4" class="mermaid2">
2024-10-29 16:21:56 +01:00
flowchart LR
nA[Style] --> A@{ icon: 'fa:bell', form: 'circle' }
style A fill:#f9f,stroke:#333,stroke-width:4px
</pre>
2024-11-08 13:47:39 +01:00
<pre id="diagram4" class="mermaid2">
2024-10-29 16:21:56 +01:00
flowchart LR
nA[Class] --> A@{ icon: 'fa:bell', form: 'circle' }
A:::AClass
classDef AClass fill:#f9f,stroke:#333,stroke-width:4px
</pre>
2024-11-08 13:47:39 +01:00
<pre id="diagram4" class="mermaid2">
2024-10-29 16:21:56 +01:00
flowchart LR
nA[Class] --> A@{ icon: 'logos:aws', form: 'circle' }
A:::AClass
classDef AClass fill:#f9f,stroke:#333,stroke-width:4px
</pre>
2024-11-08 13:47:39 +01:00
<pre id="diagram4" class="mermaid2">
2024-10-29 16:21:56 +01:00
flowchart LR
nA[Style] --> A@{ icon: 'logos:aws', form: 'circle' }
style A fill:#f9f,stroke:#333,stroke-width:4px
</pre>
<pre id="diagram4" class="mermaid2">
kanban
id2[In progress]
docs[Create Blog about the new diagram]@{ priority: 'Very Low', ticket: MC-2037, assigned: 'knsv' }
</pre>
2024-10-29 16:21:56 +01:00
<pre id="diagram4" class="mermaid2">
2024-10-10 08:23:58 -07:00
---
config:
kanban:
ticketBaseUrl: 'https://mermaidchart.atlassian.net/browse/#TICKET#'
# sectionWidth: 300
2024-10-10 08:23:58 -07:00
---
2024-10-06 16:55:57 +02:00
kanban
Todo
[Create Documentation]
2024-10-10 08:23:58 -07:00
docs[Create Blog about the new diagram]
2024-10-06 16:55:57 +02:00
id7[In progress]
2024-10-10 09:47:52 -07:00
id6[Create renderer so that it works in all cases. We also add som extra text here for testing purposes. And some more just for the extra flare.]
2024-10-06 18:34:24 +02:00
id9[Ready for deploy]
id8[Design grammar]@{ assigned: 'knsv' }
2024-10-06 18:34:24 +02:00
id10[Ready for test]
id4[Create parsing tests]@{ ticket: MC-2038, assigned: 'K.Sveidqvist', priority: 'High' }
id66[last item]@{ priority: 'Very Low', assigned: 'knsv' }
2024-10-06 18:34:24 +02:00
id11[Done]
2024-10-10 08:23:58 -07:00
id5[define getData]
id2[Title of diagram is more than 100 chars when user duplicates diagram with 100 char]@{ ticket: MC-2036, priority: 'Very High'}
id3[Update DB function]@{ ticket: MC-2037, assigned: knsv, priority: 'High' }
2024-10-06 18:34:24 +02:00
id12[Can't reproduce]
id3[Weird flickering in Firefox]
2024-09-12 12:10:41 +02:00
</pre>
2022-11-30 11:27:13 +01:00
<script type="module">
2023-03-20 12:21:22 +01:00
import mermaid from './mermaid.esm.mjs';
import layouts from './mermaid-layout-elk.esm.mjs';
2024-10-29 16:21:56 +01:00
const staticBellIconPack = {
prefix: 'fa6-regular',
icons: {
bell: {
body: '<path fill="currentColor" d="M224 0c-17.7 0-32 14.3-32 32v19.2C119 66 64 130.6 64 208v25.4c0 45.4-15.5 89.5-43.8 124.9L5.3 377c-5.8 7.2-6.9 17.1-2.9 25.4S14.8 416 24 416h400c9.2 0 17.6-5.3 21.6-13.6s2.9-18.2-2.9-25.4l-14.9-18.6c-28.3-35.5-43.8-79.6-43.8-125V208c0-77.4-55-142-128-156.8V32c0-17.7-14.3-32-32-32m0 96c61.9 0 112 50.1 112 112v25.4c0 47.9 13.9 94.6 39.7 134.6H72.3c25.8-40 39.7-86.7 39.7-134.6V208c0-61.9 50.1-112 112-112m64 352H160c0 17 6.7 33.3 18.7 45.3S207 512 224 512s33.3-6.7 45.3-18.7S288 465 288 448"/>',
width: 448,
},
},
width: 512,
height: 512,
};
mermaid.registerIconPacks([
{
name: 'logos',
loader: () =>
fetch('https://unpkg.com/@iconify-json/logos@1/icons.json').then((res) => res.json()),
},
{
name: 'fa',
loader: () => staticBellIconPack,
},
]);
mermaid.registerLayoutLoaders(layouts);
2021-04-29 18:50:12 +02:00
mermaid.parseError = function (err, hash) {
console.error('Mermaid error: ', err);
};
window.callback = function () {
alert('A callback was triggered');
};
2021-04-29 18:50:12 +02:00
mermaid.initialize({
2024-05-28 15:27:13 +02:00
// theme: 'base',
2024-10-28 12:53:03 +01:00
// theme: 'default',
// theme: 'forest',
2024-08-09 15:07:09 +02:00
// handDrawnSeed: 12,
2024-10-28 12:53:03 +01:00
// look: 'handDrawn',
// 'elk.nodePlacement.strategy': 'NETWORK_SIMPLEX',
2024-06-13 14:27:10 +02:00
// layout: 'dagre',
2024-06-10 13:55:12 +02:00
// layout: 'elk',
// layout: 'fixed',
2024-10-29 16:21:56 +01:00
// htmlLabels: false,
2024-05-08 14:13:18 +02:00
flowchart: { titleTopMargin: 10 },
// fontFamily: 'Caveat',
2024-06-13 14:27:10 +02:00
// fontFamily: 'Kalam',
2024-05-28 15:27:13 +02:00
// fontFamily: 'courier',
2024-05-08 14:13:18 +02:00
sequence: {
actorFontFamily: 'courier',
noteFontFamily: 'courier',
messageFontFamily: 'courier',
},
2024-10-06 19:22:07 +02:00
kanban: {
htmlLabels: false,
},
fontSize: 12,
2024-10-06 16:55:57 +02:00
logLevel: 0,
securityLevel: 'loose',
2021-04-29 18:50:12 +02:00
});
function callback() {
alert('It worked');
}
mermaid.parseError = function (err, hash) {
console.error('In parse error:');
console.error(err);
};
2021-04-29 18:50:12 +02:00
</script>
</body>
</html>