aboutsummaryrefslogtreecommitdiff
path: root/src/index.html
blob: 354176392c8b95cfa78d6cab0ba8c977636cf148 (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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <title>Arching Kaos</title>
        <link rel="stylesheet" type="text/css" href="./css/akn.css">
        <style type="text/css">
        </style>
        <link rel="icon" href="./img/logo.png" sizes="32x32">
        <link rel="icon" href="./img/logo.png" sizes="192x192">
        <link rel="apple-touch-icon" href="./img/logo.png">
        <meta name="msapplication-TileImage" content="./img/logo.png">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <script src="./external/stellar-freighter-api/index.min.js"></script>
        <!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/stellar-freighter-api/1.1.2/index.min.js"></script> -->
        <script src="./external/marked.min.js"></script>
        <!-- <script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script> -->
        <meta name="theme-color" content="#7ef07e" />
        <link rel="manifest" href="manifest.json">
    </head>
    <body>
        <div class="page-layout">
            <div class="topbar">
                <div class="header">
                    <a href="#/welcome-section" id="#/welcome-section" onclick="menusel(this)"><img src="./img/header-logo.png"></a>
                    <h1 style="text-align: center;">Arching Kaos</h1>
                </div>
                <button class="menu-clickable" id="mobile-menu" onclick="toggleMenu(this)">Show menu</button>
                <nav id="double-floor" class="">
                    <div id="menu" class="upper-floor">
                        <button class="menu-clickable" id="#/welcome-section" onclick="menusel(this)">🏡 Home</button>
                        <button class="has-dropdown menu-clickable" id="modules-submenu-link" onclick="modulesSubToggle(this)">🔌 Modules</button>
                        <button class="has-dropdown menu-clickable" id="explore-submenu-link" onclick="exploreSubToggle(this)">🥽 Explore</button>
                        <button class="menu-clickable" id="#/chat-section" onclick="menusel(this)">✍️ Chat</button>
                        <button class="menu-clickable" id="#/radio-section" onclick="menusel(this)">Radio</button>
                        <button class="menu-clickable" id="#/settings-section" onclick="menusel(this)">🔧 Settings</button>
                        <button class="has-dropdown menu-clickable" id="#/stellar-section" onclick="stellarSubToggle(this)">
                            <img style="width: 13px; height: 13px;" src="./img/stellar.svg"/>&nbsp;
                            Stellar</button>
                        <button class="menu-clickable" id="#/about-section" onclick="menusel(this)">About</button>
                    </div>
                    <div id="menu" class="lower-floor">
                        <div class="dropdown" id="modules-submenu">
                            <button class="menu-clickable" onclick="modulesSubToggle(this)">..</button>
                            <button class="menu-clickable" id="#/mixtapes-section" onclick="menusel(this)">Mixtapes</button>
                            <button class="menu-clickable" id="#/news-section" onclick="menusel(this)">News</button>
                            <button class="menu-clickable" id="#/comments-section" onclick="menusel(this)">Comments</button>
                            <button class="menu-clickable" id="#/files-section" onclick="menusel(this)">Files</button>
                        </div>
                        <div class="dropdown" id="explore-submenu">
                            <button class="menu-clickable" onclick="exploreSubToggle(this)">..</button>
                            <button class="menu-clickable" id="#/zchain-data-section" onclick="menusel(this)">zchain</button>
                            <button class="menu-clickable" id="#/stats-section" onclick="menusel(this)">Stats</button>
                        </div>
                        <div class="dropdown" id="stellar-submenu">
                            <button class="menu-clickable" onclick="stellarSubToggle(this)">..</button>
                            <button class="menu-clickable" id="#/mypage-section" onclick="menusel(this)">My page</button>
                            <button class="menu-clickable" id="#/stellar-balances" onclick="menusel(this)">Balances</button>
                            <button class="menu-clickable" id="#/stellar-data-config" onclick="menusel(this)">Data</button>
                            <button class="menu-clickable" id="#/arching-kaos-node-info" onclick="menusel(this)">Node Info</button>
                        </div>
                    </div>
                </nav>
                <!-- <audio id="radio-player" controls autoplay hidden></audio> -->
                <div hidden>
                    <span>Radio</span>
                    <button id="radio-button-controller" class="menu-clickable" onclick="radioToggle();">Loading...</button>
                </div>
            </div>
            <div class="main">
                <div id="welcome-section">
                    <h2>🏡 Home</h2>
                    <p>Welcome to Arching Kaos project.</p>
                    <div id="home-grid">
                        <button class="menu-clickable" id="#/mixtapes-section" onclick="menusel(this)" style="background-image: url(img/mixtapes-logo.png); background-repeat: round;"></button>
                        <button class="menu-clickable" id="#/news-section" onclick="menusel(this)" style="background-image: url(img/news-logo.png); background-repeat: round;"></button>
                        <button class="menu-clickable" id="#/chat-section" onclick="menusel(this)" style="background-image: url(img/chat-logo.png); background-repeat: round;"></button>
                        <button class="menu-clickable" id="#/radio-section" onclick="menusel(this)" style="background-image: url(img/radio-logo.png); background-repeat: round; background-size: cover;"></button>
                        <button class="menu-clickable" id="#/stats-section" onclick="menusel(this)">Stats</button>
                    </div>
                    <h3>Render explicit zblock</h3>
                    <div style="
                             padding: 1vh 1vw;
                             display: flex;
                             flex-direction: row;
                             align-items: center;
                             gap: 10px;"
                        >
                        <input id="search-field" type="text" name="search" placeholder="Enter a zblock hash"/>
                        <button onclick="seekZblock(this.parentElement.querySelector('#search-field').value, ['search', false])">Render</button>
                    </div>
                    <div class="results-area">
                        <h3>Results</h3>
                    </div>
                    <h3>Manual scan</h3>
                    <div style="
                             display: flex;
                             flex-direction: row;
                             justify-content: start;
                             align-items: center;
                             flex-wrap: wrap;
                             gap: 5px;"
                        >
                        <button onclick="scanStellarNetworkForPeers()">Check Stellar Network</button>
                        <button onclick="checkLocalNodeInfo()">Check local Node</button>
                        <button onclick="checkLocalPeers()">Check local Peers</button>
                        <button onclick="checkLocalSchain()">Check Local Schain</button>
                    </div>
                    <div class="dialog">
                        <h3>Progress</h3>
                        <progress id="total-progress"></progress>
                        <progress id="http-progress"></progress>
                        <pre id="current-log-message"></pre>
                    </div>
                    <div>
                        <details id="logs-area">
                            <summary>Logs (click to expand)</summary>
                            <div id="logs-area-element">
                            </div>
                        </details>
                    </div>
                </div>
                <div id="about-section">
                    <h2>ℹ️ About</h2>
                    <p>Arching Kaos is a project about radio, music, communications and decentralization.</p>
                    <p>On site, you can listen to the latest mixes of music (menu entry "Mixtapes"), read latest news ("News") of the network and chat (you guessed it, "Chat" menu entry).</p>
                    <p>You can see the zchains appearing in "zchain" and logs of the process on "Logs"</p>
                    <p>Note that to participate you will need to set up your Arching Kaos set, which is not so convinient yet but possible.</p>
                    <p>Furthermore, if you are using Freighter extension you can additionally see:</p>
                    <ol>
                        <li>Your balances on your wallet</li>
                        <li>Your configuration IPNS address (if any)</li>
                        <li>Your Arching Kaos configuration (if any)</li>
                        <li>Your zchain (...)</li>
                        <li>Your posted newsfeed (...)</li>
                    </ol>
                    <p>Finally, on the stats page you can find people that are participating over the Stellar Network, using the ARCHINGKAOS token/asset/coin.</p>
                </div>
                <div id="stellar-balances">
                    <h2>Balances</h2>
                    <em id="stellar-balances-not-found">No data found (yet?)!</em>
                    <table id="stellar-balances-table"></table>
                </div>
                <div id="stellar-data-config">
                    <h2>Data</h2>
                    <em id="stellar-data-config-not-found">No data found (yet?)!</em>
                </div>
                <div id="arching-kaos-node-info">
                    <h2>Node Info</h2>
                    <em id="node-info-not-found">No data found (yet?)!</em>
                </div>
                <div id="stellar-section">
                    <h2>Stellar dashboard</h2>
                    <button class="sub-input" id="stellar-freigher-connect-address-button" onclick="connect()" >Connect with Stellar address</button>
                </div>
                <div id="mypage-section">
                    <h2>My page</h2>
                    <button id="stellar-freigher-connect-address-button" onclick="connect()">Connect with Freighter wallet</button>
                    <div id="my-news">
                        <h3>My news</h3>
                        <em id="my-news-sec-not-found">No data found (yet?)!</em>
                    </div>
                    <div id="my-mixtapes">
                        <h3>My mixtapes</h3>
                        <em id="my-mixtapes-sec-not-found">No data found (yet?)!</em>
                    </div>
                    <div id="my-zchain">
                        <h3>My zchain</h3>
                        <em id="my-zchain-sec-not-found">No data found (yet?)!</em>
                    </div>
                </div>
                <div id="zchain-data-section">
                    <h2>zchains</h2>
                    <em id="zchain-data-sec-not-found">No data found (yet?)!</em>
                </div>
                <div id="news-section">
                    <h2>News</h2>
                    <em id="news-sec-not-found">No data found (yet?)!</em>
                </div>
                <div id="comments-section">
                    <h2>Comments</h2>
                    <em id="comments-sec-not-found">No data found (yet?)!</em>
                </div>
                <div id="mixtapes-section">
                    <h2>Mixtapes</h2>
                    <em id="mixtapes-sec-not-found">No data found (yet?)!</em>
                </div>
                <div id="files-section">
                    <h2>Files</h2>
                    <em id="files-sec-not-found">No data found (yet?)!</em>
                </div>
                <div id="settings-section">
                    <h2>🔧 Settings</h2>
                </div>
                <div id="chat-section" style="height: 100%;">
                    <button style="position: fixed;" onclick="refreshChat()">Refresh</button>
                    <iframe id="chat-iframe" src="https://irc.arching-kaos.net" style="width: 100%; height: 100%;"></iframe>
                </div>
                <div id="radio-section" style="height: 100%;">
                    <button style="position: fixed;" onclick="refreshRadio()">Refresh</button>
                    <iframe id="radio-iframe" src="https://radio.arching-kaos.com" style="width: 100%; height: 100%;"></iframe>
                </div>
                <div id="stats-section">
                    <h2>Stats</h2>
                    <div class="available-networks">
                        <h3>Networks</h3>
                        <details class="stellar-network">
                            <summary>Stellar</summary>
                        </details>
                        <details class=