-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
228 lines (201 loc) · 9.55 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
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>Coderadar Visualization</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" type="text/css" media="screen" href="node_modules/normalize.css/normalize.css"/>
<link rel="stylesheet" type="text/css" media="screen" href="css/app.css"/>
</head>
<body>
<div id="control-panel">
<div class="control-container">
<label class="control-label">Erste Revision</label>
<div class="autocomplete-wrapper" id="first-commit-auto-complete-wrapper">
<input type="text" />
<div class="button-container">
<div class="clear-button icon-close2"></div>
<div class="show-suggestions-button icon-keyboard_arrow_down"></div>
</div>
<div class="suggestions-container">
<ul class="suggestions-list"></ul>
</div>
</div>
</div>
<div class="control-container">
<label class="control-label">Zweite Revision</label>
<div class="autocomplete-wrapper" id="second-commit-auto-complete-wrapper">
<input type="text" />
<div class="button-container">
<div class="clear-button icon-close2"></div>
<div class="show-suggestions-button icon-keyboard_arrow_down"></div>
</div>
<div class="suggestions-container">
<ul class="suggestions-list"></ul>
</div>
</div>
</div>
<div class="divider"></div>
<div id="control-group-screen" class="control-container">
<div>
Ansicht <span class="tooltip-toggle" aria-label="Wechsel zwischen einer Visualisierung pro Revision oder einer kombinierten Darstellung"><i class="icon-info"></i></span>
</div>
<div class="control-item">
<input id="radio-splitscreen" type="radio" name="radio-group-screen" value="split" checked />
<label for="radio-splitscreen">nebeneinander</label>
</div>
<div class="control-item">
<input id="radio-fullscreen" type="radio" name="radio-group-screen" value="full" />
<label for="radio-fullscreen">kombiniert</label>
</div>
</div>
<div id="control-group-camera" class="control-container">
<div>
Kamerabewegung <span class="tooltip-toggle" aria-label="Getrennte oder synchronisierte Kamerabewegung auf beiden Seiten"><i class="icon-info"></i></span>
</div>
<div class="control-item">
<input id="radio-synchronized-camera" type="radio" name="radio-group-camera" value="sync" checked />
<label for="radio-synchronized-camera">synchron</label>
</div>
<div class="control-item">
<input id="radio-single-camera" type="radio" name="radio-group-camera" value="single" />
<label for="radio-single-camera">einzeln</label>
</div>
</div>
<div class="divider"></div>
<div class="control-container">
<div class="popover" id="mapping-component">
<button class="popover-toggle-btn">
<div class="custom-icon-metric-mapping">
<i class="large-icon icon-stats-bars"></i>
<i class="large-icon icon-cog"></i>
</div>
<i class="expand-icon icon-keyboard_arrow_down"></i>
</button>
<div class="popover-floating-wrapper">
<div class="popover-content">
<span class="tooltip-toggle" aria-label="Auswahl der Abbildung verschiedener Metriken auf Grundfläche, Höhe und Farbe"><i class="icon-info"></i></span>
<div>
<label for="height-metric-name"><i class="icon-arrows-v"></i> <b>Höhe</b></label>
<select id="height-metric-name"></select>
</div>
<div>
<label for="ground-area-metric-name"><i class="icon-arrows-h"></i> <b>Grundfläche</b></label>
<select id="ground-area-metric-name"></select>
</div>
<div>
<label for="color-metric-name"><i class="icon-paintcan"></i> <b>Farbe</b></label>
<select id="color-metric-name"></select>
</div>
</div>
</div>
</div>
</div>
<div class="control-container">
<div class="popover" id="filter-component">
<button class="popover-toggle-btn"><i class="large-icon icon-filter"></i><i class="expand-icon icon-keyboard_arrow_down"></i></button>
<div class="popover-floating-wrapper">
<div class="popover-content">
<span class="tooltip-toggle" aria-label="Ein- oder Ausblenden von bestimmten Dateitypen in der Visualisierung"><i class="icon-info"></i></span>
<div>
<input id="checkbox-unchanged-files" type="checkbox" value="UNCHANGED" checked disabled />
<label for="checkbox-unchanged-files">unverändert</label>
</div>
<div>
<input id="checkbox-changed-files" type="checkbox" value="CHANGED" checked disabled />
<label for="checkbox-changed-files">verändert</label>
</div>
<div>
<input id="checkbox-deleted-files" type="checkbox" value="DELETED" checked disabled />
<label for="checkbox-deleted-files">gelöscht</label>
</div>
<div>
<input id="checkbox-added-files" type="checkbox" value="ADDED" checked disabled />
<label for="checkbox-added-files">hinzugefügt</label>
</div>
<div>
<input id="checkbox-moved-files" type="checkbox" value="MOVED" checked disabled />
<label for="checkbox-moved-files">umbenannt/verschoben</label>
</div>
</div>
</div>
</div>
</div>
<div class="divider"></div>
<div class="control-container">
<button id="screenshot-btn"><i class="large-icon icon-image"></i></button>
<a href="#" id="screenshot-link" style="display: none;"></a>
</div>
<div class="control-container">
<label class="control-label">Suche</label>
<div class="autocomplete-wrapper" id="search-auto-complete-wrapper">
<i class="large-icon icon-search"></i>
<input type="text" placeholder="Modul oder Klasse" />
<div class="button-container">
<div class="clear-button icon-close2"></div>
<div class="show-suggestions-button icon-keyboard_arrow_down"></div>
</div>
<div class="suggestions-container">
<ul class="suggestions-list"></ul>
</div>
</div>
</div>
</div>
<div id="stage" class="split">
<div class="vertical-line"></div>
<div class="loading-indicator-container">
<div class="uil-cube-css left"><div></div><div></div><div></div><div></div></div>
<div class="uil-cube-css right"><div></div><div></div><div></div><div></div></div>
</div>
<div id="comparison-container">
<h3></h3>
<div class="table-container">
<table id="comparison-table">
<thead>
<tr>
<td>Metrik</td>
<td id="first-commit-id"></td>
<td id="second-commit-id"></td>
<td>Änderung</td>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>
<div id="legend-container">
<div id="legend-item-color-code" class="legend-item">
<span class="legend-color"></span>
<span class="legend-label"></span>
</div>
<div id="legend-item-commit-1" class="legend-item" style="display: none;">
<span class="legend-color"></span>
<span class="legend-label">Erste Revision</span>
</div>
<div id="legend-item-commit-2" class="legend-item" style="display: none;">
<span class="legend-color"></span>
<span class="legend-label">Zweite Revision</span>
</div>
<div id="legend-item-added-files" class="legend-item" style="display: none;">
<span class="legend-color"></span>
<span class="legend-label">hinzugefügt</span>
</div>
<div id="legend-item-deleted-files" class="legend-item" style="display: none;">
<span class="legend-color"></span>
<span class="legend-label">gelöscht</span>
</div>
<div id="legend-item-unchanged-files" class="legend-item" style="display: none;">
<span class="legend-color"></span>
<span class="legend-label">unverändert</span>
</div>
</div>
</div>
<div id="tooltip"></div>
<script src="node_modules/binpacking/js/packer.growing.js"></script>
<script src="node_modules/binpacking/js/packer.js"></script>
<script src="node_modules/axios/dist/axios.min.js"></script>
<script src="node_modules/tween.js/src/Tween.js"></script>
<script src="node_modules/three/examples/js/libs/stats.min.js"></script>
<script src="build/build.js"></script>
</body>
</html>