Skip to content

Commit d4a1942

Browse files
committed
Update flows.puml diagram
1 parent f5fc094 commit d4a1942

File tree

1 file changed

+35
-32
lines changed

1 file changed

+35
-32
lines changed

docs/flows.puml

+35-32
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,69 @@
11
@startuml
22
left to right direction
33

4-
object source.MoodleAssignment {
4+
namespace execution {
5+
class MoodleAssignment {
56
name: string
67
deadline: date
78
url: string
89
}
910

10-
map source.Moodle {
11+
map rootNode.Moodle {
1112
url => my.moodle.com
1213
username => student
13-
MoodleAssignment *-> MoodleAssignment
1414
}
15+
note top of rootNode.Moodle : NodePosition.START
1516

16-
object target.TodoistTask {
17-
title: string
18-
description: string
19-
deadline: date
20-
}
21-
map target.Todolist {
22-
username => myuser
23-
<<apiKey>> => ...
24-
TodoistTask *-> TodoistTask
25-
}
26-
27-
28-
object target.NtfyNotification {
17+
class flow.NtfyNotification {
2918
urgency: number
3019
header: string
3120
content: string
3221
}
3322

34-
map target.Ntfy {
35-
url => ntfy.sh
36-
topic => mytopic
37-
NtfyNotification *-> NtfyNotification
23+
map flow.NotificationMapper {
24+
urgency => normal
25+
header => {{name}}
26+
content => A new assignment was published.
3827
}
3928

40-
map flow.AssignmentNotification {
41-
urgency => normal
42-
title => {{name}}
43-
description => A new assignment was published.
29+
map flow.Ntfy {
30+
url => ntfy.sh
31+
topic => mytopic
4432
}
4533

46-
source.MoodleAssignment --> flow.AssignmentNotification
47-
flow.AssignmentNotification --> target.NtfyNotification
34+
rootNode.Moodle --> flow.NotificationMapper
35+
(rootNode.Moodle, flow.NotificationMapper) .. MoodleAssignment
36+
flow.NotificationMapper --> flow.Ntfy
37+
(flow.NotificationMapper, flow.Ntfy) .. flow.NtfyNotification
4838

49-
map flow.AssignmentTask {
39+
map flow.TaskMapper {
5040
title => {{name}}
5141
description => {{url}}
5242
<deadline> => {{deadline}
5343
}
5444

55-
source.MoodleAssignment --> flow.AssignmentTask
56-
flow.AssignmentTask --> target.TodoistTask
45+
class flow.TodoistTask {
46+
title: string
47+
description: string
48+
deadline: date
49+
}
5750

58-
note right of flow.AssignmentTask : The fields are taken from the target. They are either\nhardcoded or templated from the source entity.
51+
map flow.Todoist {
52+
username => myuser
53+
<<apiKey>> => ...
54+
}
55+
56+
rootNode.Moodle --> flow.TaskMapper
57+
(rootNode.Moodle, flow.TaskMapper) .. MoodleAssignment
58+
flow.TaskMapper --> flow.Todoist
59+
(flow.TaskMapper, flow.Todoist) .. flow.TodoistTask
60+
61+
note right of flow.TaskMapper : The fields are taken from the target. They are either\nhardcoded or templated from the source entity.
62+
}
5963

6064
legend
6165
<field> = hidden by default, shown in advanced mode
62-
<<field>> = not supposed to be shown to the user
63-
{{template}} = template (for ex. jekyll)
66+
{{template}} = template (e.g. jekyll)
6467
end legend
6568

6669
@enduml

0 commit comments

Comments
 (0)