-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
51 lines (46 loc) · 1.79 KB
/
index.html
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
<html>
<head>
<link rel="stylesheet" href="./style.css">
<link rel="icon" href="favicon.svg">
<title>TARDIS - Time Agnostic Room DAG Inspection Service</title>
<script src="wasm_exec.js"></script>
</head>
<body>
<div id="page">
<div id="header">
<input id="jsonfile" type="file" />
<select id="file-select"></select>
<label>Auth Chain<input id="showauthevents" type="checkbox" /></label>
<label>Outliers<input id="showoutliers" type="checkbox" /></label>
<label>Collapse<input id="collapse" type="checkbox" /></label>
<input id="stepbwd" type="button" value="←" />
<input id="stepfwd" type="button" value="→" />
<input id="shimurl" type="text" value="https://tardis.element.dev/" placeholder="Shim URL" />
<input id="resolve" type="button" value="Resolve State" />
<div class="loader" id="loader"></div>
<span class="loader-status" id="loader-status"></span>
</div>
<div id="infocontainer">
<pre id="closeinfocontainer">[ Close ]</pre>
<pre id="eventdetails" />
</div>
<div id="contents">
<div id="eventlist"></div>
<div id="svgcontainer" class="monospace" />
</div>
</div>
<template id="eventlisttemplate">
<div class="eventlistrow">
<div class="eventlistrowprefix">
123
</div>
<button class="eventlistrowjson" title="Show JSON">
{ }
</button>
<div class="eventlistroweventid monospace"></div>
<div class="eventlistrowbody">Lorem Ipsum Dolor...</div>
</div>
</template>
<script type="module" src="./src/index.ts"></script>
</body>
</html>