File size: 9,427 Bytes
6f6d8a6
feb8590
6f6d8a6
 
feb8590
6f6d8a6
 
 
feb8590
 
e3d1af9
6f6d8a6
feb8590
 
 
e3d1af9
6f6d8a6
 
e3d1af9
feb8590
 
 
 
 
 
 
 
 
e3d1af9
6f6d8a6
 
 
 
 
 
 
 
 
 
 
e3d1af9
 
 
 
 
 
 
 
 
 
 
 
6f6d8a6
 
 
 
 
feb8590
 
 
 
 
e3d1af9
 
 
 
 
 
 
 
feb8590
 
 
 
e3d1af9
 
 
feb8590
 
6f6d8a6
e3d1af9
6f6d8a6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e3d1af9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6f6d8a6
 
 
 
 
 
 
e3d1af9
 
6f6d8a6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e3d1af9
6f6d8a6
 
e3d1af9
 
6f6d8a6
 
 
 
 
feb8590
 
6f6d8a6
 
 
 
 
e3d1af9
6f6d8a6
 
 
 
 
 
feb8590
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6f6d8a6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
285
286
287
288
289
290
291
292
293
294
295
296
297
<script lang="ts">
	import { bandwidthTest, getClientInfo } from '$lib';
	import { Chart, registerables } from 'chart.js';
	import type { Action } from 'svelte/action';
	import { onMount } from 'svelte';

	Chart.register(...registerables);

	const MaxTestDurationSec = 20;

	let currentBandwidth = $state('0');
	let currentLatency = $state(0);
	let serverLocation = $state('-');
	let clientIp = $state('Detecting...');
	let clientLocation = $state('Detecting...');
	let progress = $state(0);
	let bandwidthMeasurements: number[] = $state([]);
	let timeMeasurements: string[] = $state([]);
	let testStatus = $state('Idle');

	// run ip info to get client IP and location
	onMount(async () => {
		let info = await getClientInfo();
		clientIp = info.clientIp;
		clientLocation = info.clientLocation;
	});

	// define callbacks
	let bandwidthCallback = (elapsedMs: number, loadedBytes: number, totalBytes: number, bw: number, done: boolean) => {
		let mbps = (bw / 1000000 * 8); // convert Bps to Mbps
		// update the bandwidth state
		currentBandwidth = mbps.toFixed(2);
		// update the bandwidth measurements array
		bandwidthMeasurements.push(mbps); // convert Bps to Mbps
		timeMeasurements.push((elapsedMs / 1000).toFixed(1)); // convert ms to seconds
		// only keep the last 20 measurements
		if (bandwidthMeasurements.length > 20) {
			bandwidthMeasurements.shift();
			timeMeasurements.shift();
		}
		// update the progress state
		progress = (loadedBytes / totalBytes) * 100;
		if (testStatus == 'Stopped') {
			return true;
		}
		if (done) {
			testStatus = 'Completed';
			progress = 100;
		} else {
			testStatus = 'Running';
		}
		return false;
	};
	let latencyCallback = (latency: number) => {
		// update the latency state
		currentLatency = latency;
	};
	let serverLocationCallback = (location: string) => {
		serverLocation = location;
	};

	let testTimeoutHandler = 0;

	const startTest = () => {
		testStatus = 'Running';
		progress = 0;
		bandwidthMeasurements = [];
		timeMeasurements = [];
		currentBandwidth = '0';
		currentLatency = 0;
		bandwidthTest(bandwidthCallback, latencyCallback, serverLocationCallback);
		testTimeoutHandler = setTimeout(() => {
			testStatus = 'Completed';
		}, MaxTestDurationSec * 1000);
	};
	const stopTest = () => {
		testStatus = 'Stopped';
		clearTimeout(testTimeoutHandler);
	};
	//counter(callback);
	//bandwidthTest(bandwidthCallback, latencyCallback);

	let canvas: HTMLCanvasElement;

	const chart: Action<
		HTMLCanvasElement
	> = (node) => {
		let speedChart: Chart;

		function dispatch<T>(name: string, detail: T) {
			node.dispatchEvent(new CustomEvent(name, { detail }));
		}

		$effect(() => {
			const ctx = canvas.getContext('2d');
			if (speedChart) {
				speedChart.destroy();
			}
			speedChart = new Chart(ctx, {
				type: 'line',
				data: {
					labels: $state.snapshot(timeMeasurements),
					datasets: [
						{
							label: 'Download Speed (Mbps)',
							data: $state.snapshot(bandwidthMeasurements),
							borderColor: '#4f46e5',
							backgroundColor: 'rgba(79, 70, 229, 0.1)',
							tension: 0.4,
							fill: true
						}
					]
				},
				options: {
					animation: false,
					responsive: true,
					maintainAspectRatio: false,
					scales: {
						y: {
							beginAtZero: true,
							title: {
								display: true,
								text: 'Speed (Mbps)'
							}
						},
						x: {
							title: {
								display: true,
								text: 'Time (seconds)'
							}
						}
					},
					plugins: {
						legend: {
							position: 'top'
						},
						tooltip: {
							mode: 'index',
							intersect: false
						}
					}
				}
			});
		});
		dispatch('updated', bandwidthMeasurements);
		return () => {
			speedChart.destroy();
		};
	};
	const getStatusClass = () => {
		switch (testStatus) {
			case 'Idle':
				return 'bg-gray-300';
			case 'Running':
				return 'bg-blue-500';
			case 'Completed':
				return 'bg-green-500';
			case 'Error':
				return 'bg-red-500';
			case 'Stopped':
				return 'bg-red-500';
			default:
				return 'bg-gray-300';
		}
	};
</script>
<!-- Main Card -->
<div class="bg-white rounded-xl shadow-lg overflow-hidden mb-8 transition-all duration-300 hover:shadow-xl">
	<div class="p-6 md:p-8">
		<div class="flex items-center justify-between mb-6">
			<h2 class="text-xl font-semibold text-gray-800">Connection Statistics</h2>
			<div id="connection-status" class="flex items-center">
				<span class="h-3 w-3 rounded-full {getStatusClass()} mr-2"></span>
				<span class="text-sm text-gray-500">{testStatus}</span>
			</div>
		</div>

		<!-- Speed Display -->
		<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-8">
			<div class="bg-gray-50 p-4 rounded-lg text-center">
				<div class="text-gray-500 mb-1 flex justify-center items-center">
					<i class="fas fa-download mr-2"></i>
					<span>Download Speed</span>
				</div>
				<div id="download-speed" class="text-2xl font-bold text-indigo-600">{currentBandwidth}</div>
				<div class="text-sm text-gray-400">Mbps</div>
			</div>
			<div class="bg-gray-50 p-4 rounded-lg text-center">
				<div class="text-gray-500 mb-1 flex justify-center items-center">
					<i class="fas fa-clock mr-2"></i>
					<span>Latency</span>
				</div>
				<div id="latency" class="text-2xl font-bold text-amber-500">{currentLatency}</div>
				<div class="text-sm text-gray-400">ms</div>
			</div>
		</div>
		<!-- Progress Bar -->
		<div class="mb-6">
			<div class="flex justify-between mb-2">
				<span class="text-sm font-medium text-gray-700">Test Progress</span>
				<span id="progress-percent" class="text-sm font-medium text-gray-700">{progress.toFixed(0)}%</span>
			</div>
			<div class="w-full bg-gray-200 rounded-full h-2.5">
				<div id="progress-bar" class="progress-bar h-2.5 rounded-full {progress<100 && progress >0? 'wave':''}"
						 style="width: {progress}%"></div>
			</div>
		</div>
		<!-- Test Controls -->
		<div class="flex flex-col sm:flex-row justify-center gap-4">
			<button id="start-test"
							class="{testStatus == 'Running'?'bg-indigo-100 hover:bg-indigo-100':'bg-indigo-600 hover:bg-indigo-700 glow'} text-white font-medium py-3 px-6 rounded-lg transition-all flex items-center justify-center"
							onclick={startTest} disabled={testStatus!=='Idle'}>
				<i class="fas fa-play mr-2"></i>
				Start Test
			</button>
			<button id="stop-test"
							class="bg-gray-200 hover:bg-gray-300 text-gray-800 font-medium py-3 px-6 rounded-lg transition-all flex items-center justify-center"
							disabled={testStatus!=='Running'} onclick={stopTest}>
				<i class="fas fa-stop mr-2"></i>
				Stop Test
			</button>
		</div>
	</div>
</div>
<!-- Connection Info Card -->
<div class="bg-white rounded-xl shadow-lg overflow-hidden mb-8 connection-info">
	<div class="p-6 md:p-8">
		<h2 class="text-xl font-semibold text-gray-800 mb-6">Connection Information</h2>
		<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
			<div>
				<h3 class="text-sm font-medium text-gray-500 mb-2">CLIENT INFORMATION</h3>
				<div class="flex items-center mb-3">
					<i class="fas fa-laptop text-indigo-500 mr-3"></i>
					<div>
						<div class="text-sm text-gray-500">IP Address</div>
						<div id="client-ip" class="text-lg font-medium text-gray-800">{clientIp}</div>
					</div>
				</div>
				<div class="flex items-center">
					<i class="fas fa-map-marker-alt text-indigo-500 mr-3"></i>
					<div>
						<div class="text-sm text-gray-500">Approximate Location</div>
						<div id="client-location" class="text-lg font-medium text-gray-800">{clientLocation}</div>
					</div>
				</div>
			</div>
			<div>
				<h3 class="text-sm font-medium text-gray-500 mb-2">SERVER INFORMATION</h3>
				<div class="flex items-center mb-3">
					<i class="fas fa-server text-emerald-500 mr-3"></i>
					<div>
						<div class="text-sm text-gray-500">Server Location</div>
						<div id="server-location" class="text-lg font-medium text-gray-800">{serverLocation}</div>
					</div>
				</div>
				<div class="flex items-center">
					<i class="fas fa-network-wired text-emerald-500 mr-3"></i>
					<div>
						<div class="text-sm text-gray-500">Test Server</div>
						<div class="text-lg font-medium text-gray-800">huggingface.co</div>
					</div>
				</div>
			</div>
		</div>
	</div>
</div>
<!-- Results Graph -->
<div class="bg-white rounded-xl shadow-lg overflow-hidden mb-8">
	<div class="p-6 md:p-8">
		<h2 class="text-xl font-semibold text-gray-800 mb-6">Speed Over Time</h2>
		<div class="h-64 relative">
			<canvas id="speed-chart" bind:this={canvas} use:chart></canvas>
		</div>
	</div>
</div>
<!-- Information Section -->
<div class="bg-white rounded-xl shadow-lg overflow-hidden">
	<div class="p-6 md:p-8">
		<h2 class="text-xl font-semibold text-gray-800 mb-4">About This Test</h2>
		<div class="prose prose-indigo max-w-none text-gray-600">
			<p>
				This bandwidth test measures your connection speed to Hugging Face's servers by downloading and uploading sample
				files.
				The test calculates:
			</p>
			<ul class="list-disc pl-5 mt-2 space-y-1">
				<li><strong>Download speed:</strong> How fast data can be transferred from Hugging Face to your device</li>
				<li><strong>Latency:</strong> The time it takes to establish connection to Hugging Face server</li>
			</ul>
			<p class="mt-4">
				For accurate results, close other bandwidth-intensive applications and ensure you're not on a VPN unless testing
				through it.
			</p>
		</div>
	</div>
</div>