-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.htm
631 lines (594 loc) · 22.9 KB
/
index.htm
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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Matrix calculator and random number generator tool"
/>
<title>Matrix Calculator</title>
<!-- Tailwind CDN CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<script>
// Add dark mode configuration for Tailwind
tailwind.config = {
darkMode: "class",
};
// Check for saved dark mode preference
if (
localStorage.getItem("dark-mode") === "true" ||
(!localStorage.getItem("dark-mode") &&
window.matchMedia("(prefers-color-scheme: dark)").matches)
) {
document.documentElement.classList.add("dark");
}
</script>
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<script
src="https://code.jquery.com/jquery-3.7.0.js"
integrity="sha256-JlqSTELeR4TLqP0OG9dxM7yDPqX1ox/HfgiSLBj8+kM="
crossorigin="anonymous"
></script>
</head>
<body class="bg-gray-50 dark:bg-gray-900 transition-colors duration-200">
<!-- Navbar -->
<nav class="bg-white dark:bg-gray-800 shadow-sm mb-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex">
<a
href="#"
class="flex items-center text-xl font-semibold text-gray-800 dark:text-white"
>
<i class="fas fa-calculator mr-2"></i> Matrix Calculator
</a>
</div>
<div class="flex items-center">
<div class="hidden sm:ml-6 sm:flex sm:space-x-8">
<button
class="tab-btn text-gray-500 dark:text-gray-400 hover:text-gray-900 dark:hover:text-white px-3 py-2 rounded-md text-sm font-medium"
data-tab="matrix"
>
Matrix Determinant
</button>
<button
class="tab-btn text-gray-500 dark:text-gray-400 hover:text-gray-900 dark:hover:text-white px-3 py-2 rounded-md text-sm font-medium"
data-tab="random"
>
Random Generator
</button>
</div>
<!-- Theme Toggle -->
<button
id="theme-toggle"
class="ml-4 p-2 rounded-full hover:bg-gray-100 dark:hover:bg-gray-700"
>
<i class="fas fa-sun dark:hidden text-yellow-500"></i>
<i class="fas fa-moon hidden dark:block text-blue-400"></i>
</button>
<!-- github -->
<a
href="https://github.com/hamer1818/socket-numpy" target="_blank" rel="noopener noreferrer" class="ml-4 p-2 rounded-full hover:bg-gray-100 dark:hover:bg-gray-700" title="Github">
<i class="fab fa-github dark:text-white"></i>
</a>
</div>
</div>
</div>
</nav>
<!-- Matris Calculators -->
<div
id="matrix-tab"
class="tab-content max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"
>
<div class="grid md:grid-cols-2 gap-8">
<!-- 2x2 Matrix -->
<div class="bg-white dark:bg-gray-800 rounded-lg shadow-md p-6">
<h2 class="text-xl font-semibold text-gray-800 dark:text-white mb-6">
2x2 Matrix
</h2>
<div class="grid grid-cols-2 gap-4 mb-6">
<input
id="2x2matrix1"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Element 1"
/>
<input
id="2x2matrix2"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Element 2"
/>
<input
id="2x2matrix3"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Element 3"
/>
<input
id="2x2matrix4"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Element 4"
/>
</div>
<button
id="2x2determinantBtn"
class="w-full bg-blue-500 hover:bg-blue-600 text-white font-medium py-2 px-4 rounded-md transition duration-200"
>
Calculate Determinant
</button>
<p class="mt-4 text-gray-600 dark:text-gray-400">
Result:
<span id="2x2det" class="font-bold text-gray-800 dark:text-white"
>0</span
>
</p>
</div>
<!-- 3x3 Matrix -->
<div class="bg-white dark:bg-gray-800 rounded-lg shadow-md p-6">
<h2 class="text-xl font-semibold text-gray-800 dark:text-white mb-6">
3x3 Matrix
</h2>
<div class="grid grid-cols-3 gap-4 mb-6">
<!-- 9 inputs for 3x3 matrix -->
<input
id="3x3matrix1"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Element 1"
/>
<input
id="3x3matrix2"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Element 2"
/>
<input
id="3x3matrix3"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Element 3"
/>
<input
id="3x3matrix4"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Element 4"
/>
<input
id="3x3matrix5"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Element 5"
/>
<input
id="3x3matrix6"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Element 6"
/>
<input
id="3x3matrix7"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Element 7"
/>
<input
id="3x3matrix8"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Element 8"
/>
<input
id="3x3matrix9"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Element 9"
/>
</div>
<button
id="3x3determinantBtn"
class="w-full bg-blue-500 hover:bg-blue-600 text-white font-medium py-2 px-4 rounded-md transition duration-200"
>
Calculate Determinant
</button>
<p class="mt-4 text-gray-600 dark:text-gray-400">
Result:
<span id="3x3det" class="font-bold text-gray-800 dark:text-white"
>0</span
>
</p>
</div>
<!-- 4x4 Matrix -->
<div class="bg-white dark:bg-gray-800 rounded-lg shadow-md p-6">
<h2 class="text-xl font-semibold text-gray-800 dark:text-white mb-6">
4x4 Matrix
</h2>
<div class="grid grid-cols-4 gap-4 mb-6">
<!-- 16 inputs for 4x4 matrix -->
<input
id="4x4matrix1"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Element 1"
/>
<input
id="4x4matrix2"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Element 2"
/>
<input
id="4x4matrix3"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Element 3"
/>
<input
id="4x4matrix4"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Element 4"
/>
<input
id="4x4matrix5"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Element 5"
/>
<input
id="4x4matrix6"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Element 6"
/>
<input
id="4x4matrix7"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Element 7"
/>
<input
id="4x4matrix8"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Element 8"
/>
<input
id="4x4matrix9"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Element 9"
/>
<input
id="4x4matrix10"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Element 10"
/>
<input
id="4x4matrix11"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Element 11"
/>
<input
id="4x4matrix12"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Element 12"
/>
<input
id="4x4matrix13"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Element 13"
/>
<input
id="4x4matrix14"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Element 14"
/>
<input
id="4x4matrix15"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Element 15"
/>
<input
id="4x4matrix16"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Element 16"
/>
</div>
<button
id="4x4determinantBtn"
class="w-full bg-blue-500 hover:bg-blue-600 text-white font-medium py-2 px-4 rounded-md transition duration-200"
>
Calculate Determinant
</button>
<p class="mt-4 text-gray-600 dark:text-gray-400">
Result:
<span id="4x4det" class="font-bold text-gray-800 dark:text-white"
>0</span
>
</p>
</div>
</div>
</div>
<!-- Matris Calculators End -->
<!-- Random Number Generator Section -->
<div
id="random-tab"
class="hidden tab-content max-w-xl mx-auto px-4 sm:px-6 lg:px-8 mt-8"
>
<div class="bg-white dark:bg-gray-800 rounded-lg shadow-md p-6">
<h2 class="text-xl font-semibold text-gray-800 dark:text-white mb-6">
Random Number Generator
</h2>
<div class="space-y-4">
<div>
<label
class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2"
>
Enter Maximum Number
</label>
<input
id="randomText"
type="number"
class="w-full px-4 py-2 rounded-md border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white"
placeholder="Enter a number greater than 1"
/>
</div>
<button
id="randomBtn"
class="w-full bg-green-500 hover:bg-green-600 text-white font-medium py-2 px-4 rounded-md transition duration-200"
>
Generate Number
</button>
<div class="mt-4">
<p class="text-sm text-gray-600 dark:text-gray-400 mb-2">Result:</p>
<div
id="randomSonuc"
class="w-full h-12 flex items-center justify-center border border-gray-300 dark:border-gray-600 rounded-md bg-gray-50 dark:bg-gray-700 text-gray-800 dark:text-white font-medium"
>
0
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-white dark:bg-gray-800 shadow-sm mt-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-4">
<p class="text-sm text-gray-600 dark:text-gray-400 text-center">
© 2021 Matrix Calculator. All rights reserved. Developed by
<a
href="https://github.com/hamer1818"
class="text-blue-500 hover:underline"
>Hamza ORTATEPE</a
>
</p>
</div>
</footer>
<!-- Bootstrap CDN JS -->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz"
crossorigin="anonymous"
></script>
</body>
<script
src="https://cdn.socket.io/3.1.3/socket.io.min.js"
integrity="sha384-cPwlPLvBTa3sKAgddT6krw0cJat7egBga3DJepJyrLl4Q9/5WLra3rrnMcyTyOnh"
crossorigin="anonymous"
></script>
<script>
$(document).ready(function () {
console.log("ready!");
const socket = io("http://localhost:8081", {
transports: ["websocket", "polling", "flashsocket"],
path: "/ws/socket.io",
});
// Socket bağlantı durumunu kontrol et
// Socket bağlantı durumunu kontrol et
socket.on("connect", () => {
console.log("Socket.io connected!");
});
socket.on("connect_error", (error) => {
console.error("Socket.io connection error:", error);
});
// Event listeners
socket.on("2x2determinant", (data) => {
console.log("2x2 determinant result:", data);
$("#2x2det").text(data);
});
socket.on("3x3determinant", (data) => {
console.log("3x3 determinant result:", data);
$("#3x3det").text(data);
});
socket.on("4x4determinant", (data) => {
console.log("4x4 determinant result:", data);
$("#4x4det").text(data);
});
socket.on("random", (data) => {
console.log("Random number generated:", data);
$("#randomSonuc").text(data);
});
// Click handlers
$("#2x2determinantBtn").on("click", function (e) {
e.preventDefault();
const matrix = [
[
Number($("#2x2matrix1").val()) || 0,
Number($("#2x2matrix2").val()) || 0,
],
[
Number($("#2x2matrix3").val()) || 0,
Number($("#2x2matrix4").val()) || 0,
],
];
console.log("Sending 2x2 matrix:", matrix);
socket.emit("2x2determinant", matrix);
});
$("#3x3determinantBtn").on("click", function (e) {
e.preventDefault();
const matrix2 = [
[
Number($("#3x3matrix1").val()) || 0,
Number($("#3x3matrix2").val()) || 0,
Number($("#3x3matrix3").val()) || 0,
],
[
Number($("#3x3matrix4").val()) || 0,
Number($("#3x3matrix5").val()) || 0,
Number($("#3x3matrix6").val()) || 0,
],
[
Number($("#3x3matrix7").val()) || 0,
Number($("#3x3matrix8").val()) || 0,
Number($("#3x3matrix9").val()) || 0,
],
];
console.log("Sending 3x3 matrix:", matrix2);
socket.emit("3x3determinant", matrix2);
});
$("#4x4determinantBtn").on("click", function (e) {
e.preventDefault();
const matrix3 = [
[
Number($("#4x4matrix1").val()) || 0,
Number($("#4x4matrix2").val()) || 0,
Number($("#4x4matrix3").val()) || 0,
Number($("#4x4matrix4").val()) || 0,
],
[
Number($("#4x4matrix5").val()) || 0,
Number($("#4x4matrix6").val()) || 0,
Number($("#4x4matrix7").val()) || 0,
Number($("#4x4matrix8").val()) || 0,
],
[
Number($("#4x4matrix9").val()) || 0,
Number($("#4x4matrix10").val()) || 0,
Number($("#4x4matrix11").val()) || 0,
Number($("#4x4matrix12").val()) || 0,
],
[
Number($("#4x4matrix13").val()) || 0,
Number($("#4x4matrix14").val()) || 0,
Number($("#4x4matrix15").val()) || 0,
Number($("#4x4matrix16").val()) || 0,
],
];
console.log("Sending 4x4 matrix:", matrix3);
socket.emit("4x4determinant", matrix3);
});
$("#randomBtn").on("click", function () {
const max = Number($("#randomText").val()) || 0;
console.log("Generating random number with max:", max);
socket.emit("random", max);
});
});
</script>
<!-- Dark & Light Theme -->
<script>
// Theme toggle functionality
const themeToggle = document.getElementById("theme-toggle");
const html = document.documentElement;
// Function to update theme and save preference
function updateTheme(isDark) {
if (isDark) {
html.classList.add("dark");
localStorage.setItem("dark-mode", "true");
} else {
html.classList.remove("dark");
localStorage.setItem("dark-mode", "false");
}
}
// Theme toggle event listener
themeToggle.addEventListener("click", () => {
const isDark = !html.classList.contains("dark");
updateTheme(isDark);
});
// Initialize theme based on saved preference or system setting
const savedTheme = localStorage.getItem("dark-mode");
if (
savedTheme === "true" ||
(!savedTheme && window.matchMedia("(prefers-color-scheme: dark)").matches)
) {
updateTheme(true);
} else {
updateTheme(false);
}
// Tab switching functionality
const tabBtns = document.querySelectorAll(".tab-btn");
const tabContents = document.querySelectorAll(".tab-content");
// Function to handle tab switching
function switchTab(tabName) {
// Remove active state from all tabs
tabBtns.forEach((btn) => {
btn.classList.remove("text-gray-900", "dark:text-white");
btn.classList.add("text-gray-500", "dark:text-gray-400");
});
// Hide all tab contents
tabContents.forEach((content) => {
content.classList.add("hidden");
});
// Activate selected tab
const activeBtn = document.querySelector(`[data-tab="${tabName}"]`);
activeBtn.classList.remove("text-gray-500", "dark:text-gray-400");
activeBtn.classList.add("text-gray-900", "dark:text-white");
// Show selected tab content
document.getElementById(`${tabName}-tab`).classList.remove("hidden");
// Save active tab to localStorage
localStorage.setItem("active-tab", tabName);
}
// Add click handlers to tabs
tabBtns.forEach((btn) => {
btn.addEventListener("click", () => {
switchTab(btn.dataset.tab);
});
});
// Initialize active tab from localStorage or default to first tab
const savedTab =
localStorage.getItem("active-tab") || tabBtns[0]?.dataset.tab;
if (savedTab) {
switchTab(savedTab);
}
</script>
<!-- Bootstrap Form Validation -->
<script>
// Example starter JavaScript for disabling form submissions if there are invalid fields
(() => {
"use strict";
// Fetch all the forms we want to apply custom Bootstrap validation styles to
const forms = document.querySelectorAll(".needs-validation");
// Loop over them and prevent submission
Array.from(forms).forEach((form) => {
form.addEventListener(
"click",
(event) => {
if (!form.checkValidity()) {
event.preventDefault();
event.stopPropagation();
}
form.classList.add("was-validated");
},
false
);
});
})();
</script>
</html>