-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
260 lines (237 loc) · 12 KB
/
index.html
File metadata and controls
260 lines (237 loc) · 12 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- General -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="preconnect" href="https://fusionapi.hahoos.dev">
<link rel="dns-prefetch" href="https://fusionapi.hahoos.dev">
<link rel="preconnect" href="https://cdn.jsdelivr.net">
<link rel="dns-prefetch" href="https://cdn.jsdelivr.net">
<!-- SEO -->
<title>Fusion Lobby Browser</title>
<meta name="keywords" content="Fusion, LabFusion, BONELAB, BONELAB-Fusion, Boneworks, SLZ, Stress Level Zero" />
<meta name="description"
content="Browse LabFusion lobbies without having to even launch BONELAB! Check if your friends are playing and even join with just a press of a button!" />
<link rel="canonical" href="https://fusion.hahoos.dev/" />
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebSite",
"url": "https://fusion.hahoos.dev",
"name": "Fusion Lobby Browser",
"alternateName": ["FLB", "LabFusion Lobby Browser"],
"description": "Browse LabFusion lobbies without having to even launch BONELAB! Check if your friends are playing and even join with just a press of a button!"
}
</script>
<!-- Discord Embed-->
<meta property="og:title" content="Fusion Lobby Browser" />
<meta property="og:site_name" content="Fusion Lobby Browser">
<meta property="og:type" content="website" />
<meta property="og:url" content="https://fusion.hahoos.dev/" />
<meta property="og:description"
content="Browse LabFusion lobbies without having to even launch BONELAB! Check if your friends are playing and even join with just a press of a button!" />
<meta name="theme-color" content="#6495ED">
<!-- Twitter -->
<meta name="twitter:card" content="summary">
<meta name="twitter:url" content="https://fusion.hahoos.dev/">
<meta name="twitter:title" content="Fusion Lobby Browser">
<meta name="twitter:description"
content="Browse LabFusion lobbies without having to even launch BONELAB! Check if your friends are playing and even join with just a press of a button!">
<!-- Favicon -->
<link rel="icon" type="image/png" href="/images/favicon/favicon-144x144.png" sizes="144x144" />
<link rel="icon" type="image/png" href="/images/favicon/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/png" href="/images/favicon/favicon-64x64.png" sizes="64x64" />
<link rel="icon" type="image/png" href="/images/favicon/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="/images/favicon/favicon-16x16.png" sizes="16x16" />
<link rel="icon" type="image/svg+xml" href="/images/favicon/favicon.svg" />
<link rel="shortcut icon" href="/images/favicon/favicon.ico" sizes="any" />
<link rel="apple-touch-icon" sizes="180x180" href="/images/favicon/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="FLB" />
<meta property="og:image" content="https://fusion.hahoos.dev/images/favicon/web-app-manifest-192x192.png" />
<link rel="manifest" href="./manifest.json" />
<!-- Scripts & Styles -->
<!-- [ External ] -->
<style>
phantom-ui[loading] * {
-webkit-text-fill-color: transparent !important;
pointer-events: none;
user-select: none;
}
phantom-ui[loading] img,
phantom-ui[loading] svg,
phantom-ui[loading] video,
phantom-ui[loading] canvas,
phantom-ui[loading] button,
phantom-ui[loading] [role="button"] {
opacity: 0 !important;
}
</style>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11" defer crossOrigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@aejkatappaja/phantom-ui/dist/phantom-ui.cdn.js"
crossOrigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/tippy.js@6.3/dist/tippy.umd.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/tippy.js@6.3/dist/tippy.min.css">
<!-- [ Internal ] -->
<script src="scripts/unityRichText.js" type="module" crossOrigin="anonymous"></script>
<script src="scripts/defaultBarcodes.js" type="module" crossOrigin="anonymous"></script>
<script src="scripts/discord.js" type="module" crossOrigin="anonymous"></script>
<script src="scripts/purify.min.js" crossOrigin="anonymous"></script>
<script src="scripts/lobbies.js" type="module" crossOrigin="anonymous"></script>
<link rel="stylesheet" href="styles/fonts.css" crossOrigin="anonymous" />
<link rel="stylesheet" href="styles/style.css" crossOrigin="anonymous" />
</head>
<body>
<div class="lobby lobbyToCopy">
<img class="lobbyThumbnail" src="images/default/VoidG114.webp" loading="lazy" alt="Template thumbnail">
<p class="info lobbyName" data-shimmer-no-children>HAHOOS's Lobby!</p>
<p class="info lobbyHostName" data-shimmer-no-children>HAHOOS</p>
<p class="info levelTitle" data-shimmer-no-children>7/11</p>
<p class="info gamemodeTitle" data-shimmer-no-children>Avatar Infection</p>
<p class="info lobbyPlayerCount" data-shimmer-no-children>(0/10)</p>
<button class="connect inline">Join!</button>
<button class="moreInfo inline">More Info</button>
</div>
<div class="player playerToCopy">
<img class="avatarThumbnail" src="images/default/Jay.webp" loading="lazy" alt="Template thumbnail">
<p class="name" data-shimmer-no-children>RottenCheese</p>
<p class="username" data-shimmer-no-children>Test</p>
<p class="permissions" data-shimmer-no-children>OWNER</p>
<p class="avatarTitle" data-shimmer-no-children>Fancy Ford</p>
</div>
<div class="discord discordToCopy">
<img class="serverIcon" src="images/default/Jay.webp" loading="lazy" alt="Template icon">
<p class="inline serverName">RottenCheese's Server</p>
<p class="inline memberCount">569 members</p>
<a class="discordJoin inline" href="#" target="_blank" rel="noopener noreferrer">
<button class="discordJoinBtn">Join!</button>
</a>
</div>
<header>
<h1>Fusion Lobby Browser</h1>
<p class="headerText">Browse Fusion Lobbies without having to open BONELAB.</p>
<p class="headerText">If you like my work, consider supporting me on <a href="https://ko-fi.com/hahoos"
target="_blank" rel="noopener noreferrer">Ko-fi!</a></p>
<p class="headerText">Thank you for all the feedback! For progress updates or further suggestions/questions check
out my <a href="https://discord.com/channels/563139253542846474/1328096592812707900/" target="_blank"
rel="noopener noreferrer">modding thread!</a> (<a href="https://discord.gg/bonelab" target="_blank"
rel="noopener noreferrer">BONELAB discord server</a>)
</p>
<p class="hidden" id="uptime">Backend up since: N/A</p>
<p class="hidden" id="refresh">Last Refresh: N/A</p>
<button id="refreshButton">Refresh</button>
</header>
<phantom-ui id="moreDetails-loader">
<div id="moreDetails-outer" class="hidden">
<div id="moreDetails" class="hidden">
<div class="header-outer">
<div class="header">
<p class="lobbyTitle" data-shimmer-no-children>HAHOOS's Lobby!</p>
<div class="inline infoControls">
<button class="connect">Join!</button>
<button id="closeMoreInfo">Close</button>
</div>
</div>
</div>
<div class="content hidden">
<div class="left-content side">
<img class="thumbnail" src="images/default/VoidG114.webp" loading="lazy" alt="Template thumbnail">
</div>
<div class="right-content side">
<p class="detail">Description</p>
<p class="detail-info lobbyDescription" data-shimmer-no-children>Lorem ipsum dolor sit amet consectetur
adipiscing elit. Quisque
faucibus ex sapien vitae pellentesque sem placerat. In
id cursus mi pretium tellus duis convallis. Tempus leo eu aenean sed diam urna tempor. Pulvinar vivamus
fringilla lacus
nec metus bibendum egestas. Iaculis massa nisl malesuada lacinia integer nunc posuere. Ut hendrerit semper
vel class
aptent taciti sociosqu. Ad litora torquent per conubia nostra inceptos himenaeos.</p>
<p class="detail">Level</p>
<p class="detail-info levelTitle" data-shimmer-no-children>7/11</p>
<p class="detail">Gamemode</p>
<p class="detail-info gamemode" data-shimmer-no-children>Avatar Infection (HAHOOS.AvatarInfection)</p>
<div class="collapsable">
<button class="textButton" data-toggle="collapse">
<p class="detail permissionsTitle">Permissions</p>
</button>
<div>
<div class="inline permissionsLevels">
</div>
<div class="inline permissionsList">
</div>
</div>
</div>
</div>
</div>
<div class="inline">
<p class="playersTitle hidden" data-shimmer-no-children>Players</p>
<p class="plrCount" data-shimmer-no-children>(11/15)</p>
</div>
<p class="lobbyHost" data-shimmer-no-children>Host: RottenCheese</p>
<div class="players hidden">
</div>
</div>
</div>
</phantom-ui>
<h2 class="lobbyHeader hidden" align="center">Lobbies (10)</h2>
<p class="lobbyInfo hidden">There are currently <span class="playerCount">-1 players</span> playing on <span
class="lobbyCount">-1 lobbies</span></p>
<div class="inline serverSelection">
<button id="steamServer" class="activeServer">Steam</button>
<button id="epicServer">Epic Games</button>
</div>
<p id="lobbyLimit" class="hidden">Steam has a limit of 50 lobbies, due to the high number of lobbies some may not
appear. This is a
limit implemented by Steam themselves and nothing can be done about it!</p>
<p id="javascriptRequired">This site requires JavaScript to be enabled.</p>
<div id="searchOptions-outer">
<div id="searchOptions" class="collapsable">
<button class="textButton" data-toggle="collapse">
<h2 id="searchTitle">Options</h2>
</button>
<div>
<div class="checkbox-wrapper">
<input type="checkbox" id="autoRefresh" name="Auto Refresh" />
<label for="autoRefresh">Auto Refresh</label>
</div>
<div class="checkbox-wrapper">
<input type="checkbox" id="showFullLobbies" name="Show Full Lobbies" checked />
<label for="showFullLobbies">Show Full
Lobbies</label>
</div>
<div class="checkbox-wrapper">
<input type="checkbox" id="showOnePlayerLobbies" name="Show 1 Player Lobbies" checked />
<label for="showFullLobbies">Show 1 Player Lobbies</label>
</div>
<div class="checkbox-wrapper">
<input type="checkbox" id="showRPLobbies" name="Show Roleplay Lobbies" checked />
<label for="showFullLobbies">Show Roleplay Lobbies</label>
</div>
<div class="checkbox-wrapper">
<input type="checkbox" id="showRussianLobbies" name="Show Russian Lobbies" checked />
<label for="showFullLobbies">Show Russian Lobbies</label>
</div>
<div class="checkbox-wrapper">
<input type="checkbox" id="filterProfanities" name="Filter Profanities" checked />
<label for="filterProfanities">Filter Profanities</label>
</div>
<div class="checkbox-wrapper">
<input type="checkbox" id="showNSFW" name="Show NSFW" />
<label for="showNSFW">Show NSFW</label>
</div>
<label id="sortOrderLabel" for="sortOrder">Sort Order</label>
<select name="sortOrder" id="sortOrder">
<option value="descending">Descending (most -> least players)</option>
<option value="ascending">Ascending (least -> most players)</option>
</select>
</div>
</div>
</div>
<p class="error hidden">Test error</p>
<h2 id="notFound" class="hidden">No lobbies were found :(</h2>
<div id="lobbies" role="main"></div>
</body>
</html>