summaryrefslogtreecommitdiffhomepage
path: root/util/eventbus/assets/main.html
blob: 51d6b22addc6a7580f19291cffddd3ca8c5df8f0 (plain)
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
<!DOCTYPE html>
<html>
    <head>
        <script src="bus/htmx.min.js"></script>
        <script src="bus/htmx-websocket.min.js"></script>
        <link rel="stylesheet" href="bus/style.css">
    </head>
    <body hx-ext="ws">
        <h1>Event bus</h1>

        <section>
            <h2>General</h2>
            {{with $.PublishQueue}}
            {{len .}} pending
            {{end}}

            <button hx-post="bus/monitor" hx-swap="outerHTML">Monitor all events</button>
        </section>

        <section>
            <h2>Clients</h2>

            <table>
                <thead>
                    <tr>
                        <th>Name</th>
                        <th>Publishing</th>
                        <th>Subscribing</th>
                        <th>Pending</th>
                    </tr>
                </thead>
                {{range .Clients}}
                <tr id="{{.Name}}">
                    <td>{{.Name}}</td>
                    <td class="list">
                        <ul>
                            {{range .Publish}}
                            <li><a href="#{{.}}">{{.}}</a></li>
                            {{end}}
                        </ul>
                    </td>
                    <td class="list">
                        <ul>
                            {{range .Subscribe}}
                            <li><a href="#{{.}}">{{.}}</a></li>
                            {{end}}
                        </ul>
                    </td>
                    <td>
                        {{len ($.SubscribeQueue .Client)}}
                    </td>
                </tr>
                {{end}}
            </table>
        </section>

        <section>
            <h2>Types</h2>

            {{range .Types}}

            <section id="{{.}}">
            <h3>{{.Name}}</h3>
            <h4>Definition</h4>
            <code>{{prettyPrintStruct .}}</code>

            <h4>Published by:</h4>
            {{if len (.Publish)}}
            <ul>
                {{range .Publish}}
                <li><a href="#{{.Name}}">{{.Name}}</a></li>
                {{end}}
            </ul>
            {{else}}
            <ul>
                <li>No publishers.</li>
            </ul>
            {{end}}

            <h4>Received by:</h4>
            {{if len (.Subscribe)}}
            <ul>
                {{range .Subscribe}}
                <li><a href="#{{.Name}}">{{.Name}}</a></li>
                {{end}}
            </ul>
            {{else}}
            <ul>
                <li>No subscribers.</li>
            </ul>
            {{end}}
            </section>
            {{end}}

        </section>
    </body>
</html>