-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
script.js
1430 lines (1261 loc) · 41.6 KB
/
script.js
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
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* @module
* @license MIT
* @author Sébastien Règne
*/
import "../polyfill/browser.js";
// eslint-disable-next-line import/no-unassigned-import
import "../core/css.js";
import { cast } from "../core/index.js";
import { kodi } from "../core/jsonrpc/kodi.js";
import { locate } from "../core/l10n.js";
import { complete } from "../core/labelers.js";
import { checkHosts } from "../core/permission.js";
import { notify } from "../core/tools/notify.js";
import { ping } from "../core/tools/ping.js";
// Insérer les textes dans la bonne langue.
locate(document, "popup");
/**
* Le statut du lecteur vidéo.
*
* @type {boolean}
*/
let active = false;
/**
* La position de l'élément courant dans la liste de lecture ; ou `-1`.
*
* @type {number}
*/
let position = -1;
/**
* La vitesse de lecture.
*
* @type {number}
*/
let speed = 0;
/**
* L'identifiant de l'intervalle faisant avancer la barre de progression.
*
* @type {ReturnType<typeof setInterval>|undefined}
*/
let interval;
/**
* L'élément de la liste de lecture en cours de déplacement.
*
* @type {HTMLLIElement|undefined}
*/
let dragItem;
const openError = function (err) {
const dialog = document.querySelector("#dialogerror");
if (!dialog.open) {
// Cacher l'indicateur de chargement (pour éviter de le voir bouger en
// arrière-plan).
document.querySelector("#loading").style.display = "none";
if ("PebkacError" === err.name) {
dialog.querySelector("h1").textContent = err.title;
} else {
dialog.querySelector("h1").textContent = browser.i18n.getMessage(
"notifications_unknown_title",
);
}
dialog.querySelector("p").textContent = err.message;
dialog.showModal();
}
};
const closeDialog = function (event) {
// Fermer la boite de dialogue si l'utilisateur clique en dehors de la
// boite.
if ("DIALOG" === event.target.nodeName) {
const rect = event.target.getBoundingClientRect();
if (
rect.top > event.clientY ||
rect.bottom < event.clientY ||
rect.left > event.clientX ||
rect.right < event.clientX
) {
event.target.close();
}
}
};
const mux = async function () {
if (document.querySelector("#paste input").checked) {
return document.querySelector("textarea").value;
}
// La récupération de l'URL de l'onglet courant nécessite la permission
// "activeTab".
const queryInfo = { active: true, currentWindow: true };
const tabs = await browser.tabs.query(queryInfo);
return tabs[0].url;
};
const send = async function () {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé.
if (document.querySelector("#send").disabled) {
return;
}
const url = await mux();
try {
await cast("send", [url]);
close();
} catch (err) {
await notify(err);
}
};
const insert = async function () {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé.
if (document.querySelector("#insert").disabled) {
return;
}
const url = await mux();
try {
await cast("insert", [url]);
close();
} catch (err) {
await notify(err);
}
};
const add = async function () {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé.
if (document.querySelector("#add").disabled) {
return;
}
const url = await mux();
try {
await cast("add", [url]);
close();
} catch (err) {
await notify(err);
}
};
const paste = async function (event) {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé.
if (document.querySelector("#paste input").disabled) {
return;
}
const input = document.querySelector("#paste input");
// Inverser l'état si l'origine du changement vient d'un raccourci clavier.
if (undefined === event) {
input.checked = !input.checked;
}
if (input.checked) {
for (const section of document.querySelectorAll("section:not(#cast)")) {
section.style.visibility = "hidden";
}
const textarea = document.querySelector("textarea");
// Préremplir le champ (avec la valeur du presse-papier) seulement si
// le champ est vide.
if ("" === textarea.value) {
const config = await browser.storage.local.get(["popup-clipboard"]);
if (config["popup-clipboard"]) {
textarea.value = await navigator.clipboard.readText();
}
}
textarea.focus();
} else {
for (const section of document.querySelectorAll("section:not(#cast)")) {
section.style.visibility = "visible";
}
}
};
const change = async function (event) {
await browser.storage.local.set({
"server-active": event.target.selectedIndex,
});
document.location.reload();
};
const previous = async function () {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé.
if (document.querySelector("#previous").disabled) {
return;
}
try {
await kodi.player.goTo("previous");
} catch (err) {
openError(err);
}
};
const rewind = async function () {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé.
if (document.querySelector("#rewind").disabled) {
return;
}
try {
await kodi.player.setSpeed("decrement");
} catch (err) {
openError(err);
}
};
const stop = async function () {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé.
if (document.querySelector("#stop").disabled) {
return;
}
try {
await kodi.player.stop();
} catch (err) {
openError(err);
}
};
const playPause = async function () {
const play = document.querySelector("#play");
if ("open" === play.dataset.action) {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé (car la connexion à Kodi a échoué).
if (play.disabled) {
return;
}
try {
await kodi.player.open();
} catch (err) {
openError(err);
}
} else {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé.
if (document.querySelector("#pause").disabled) {
return;
}
try {
await kodi.player.playPause();
} catch (err) {
openError(err);
}
}
};
const forward = async function () {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé.
if (document.querySelector("#forward").disabled) {
return;
}
try {
await kodi.player.setSpeed("increment");
} catch (err) {
openError(err);
}
};
const next = async function () {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé.
if (document.querySelector("#next").disabled) {
return;
}
try {
await kodi.player.goTo("next");
} catch (err) {
openError(err);
}
};
const setMute = async function () {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé.
if (document.querySelector("#mute input").disabled) {
return;
}
try {
await kodi.application.setMute();
} catch (err) {
openError(err);
}
};
const setVolume = async function (diff) {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé.
if (document.querySelector("#volume").disabled) {
return;
}
try {
if ("increment" === diff || "decrement" === diff) {
await kodi.application.setVolume(diff);
} else {
const input = document.querySelector("#volume");
await kodi.application.setVolume(input.valueAsNumber);
}
} catch (err) {
openError(err);
}
};
const contextMenu = async function () {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé.
if (document.querySelector("#contextmenu").disabled) {
return;
}
try {
await kodi.input.contextMenu();
} catch (err) {
openError(err);
}
};
const up = async function () {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé.
if (document.querySelector("#up").disabled) {
return;
}
try {
await kodi.input.up();
} catch (err) {
openError(err);
}
};
const info = async function () {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé.
if (document.querySelector("#info").disabled) {
return;
}
try {
await kodi.input.info();
} catch (err) {
openError(err);
}
};
const left = async function () {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé.
if (document.querySelector("#left").disabled) {
return;
}
try {
await kodi.input.left();
} catch (err) {
openError(err);
}
};
const select = async function () {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé.
if (document.querySelector("#select").disabled) {
return;
}
try {
await kodi.input.select();
} catch (err) {
openError(err);
}
};
const right = async function () {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé.
if (document.querySelector("#right").disabled) {
return;
}
try {
await kodi.input.right();
} catch (err) {
openError(err);
}
};
const back = async function () {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé.
if (document.querySelector("#back").disabled) {
return;
}
try {
await kodi.input.back();
} catch (err) {
openError(err);
}
};
const down = async function () {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé.
if (document.querySelector("#down").disabled) {
return;
}
try {
await kodi.input.down();
} catch (err) {
openError(err);
}
};
const showOSD = async function () {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé.
if (document.querySelector("#osd").disabled) {
return;
}
try {
await kodi.input.showOSD();
} catch (err) {
openError(err);
}
};
const home = async function () {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé.
if (document.querySelector("#home").disabled) {
return;
}
try {
await kodi.input.home();
} catch (err) {
openError(err);
}
};
const setFullscreen = async function () {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé.
if (document.querySelector("#fullscreen").disabled) {
return;
}
try {
await kodi.gui.setFullscreen();
} catch (err) {
openError(err);
}
};
const openSendText = function () {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé.
if (document.querySelector("#opensendtext").disabled) {
return;
}
const dialog = document.querySelector("#dialogsendtext");
if (!dialog.open) {
const text = dialog.querySelector('input[name="text"]');
text.type = "text";
text.value = "";
dialog.showModal();
}
};
const sendText = async function (event) {
const dialog = event.target;
if ("sendtext" === dialog.returnValue) {
const text = dialog.querySelector('input[name="text"]');
const done = dialog.querySelector('input[name="done"]');
try {
await kodi.input.sendText(text.value, done.checked);
} catch (err) {
openError(err);
}
}
};
const openSubtitle = function () {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé.
if (document.querySelector("#opensubtitle").disabled) {
return;
}
const dialog = document.querySelector("#dialogsubtitle");
if (!dialog.open) {
const subtitle = dialog.querySelector('textarea[name="subtitle"]');
subtitle.value = "";
dialog.showModal();
}
};
const addSubtitle = async function (event) {
const dialog = event.target;
if ("addsubtitle" === dialog.returnValue) {
const subtitle = dialog.querySelector('textarea[name="subtitle"]');
try {
await kodi.player.addSubtitle(subtitle.value);
} catch (err) {
openError(err);
}
}
};
const showPlayerProcessInfo = async function () {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé.
if (document.querySelector("#playerprocessinfo").disabled) {
return;
}
try {
await kodi.input.showPlayerProcessInfo();
} catch (err) {
openError(err);
}
};
const openQuit = function () {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé.
if (document.querySelector("#openquit").disabled) {
return;
}
const dialog = document.querySelector("#dialogquit");
if (!dialog.open) {
dialog.showModal();
}
};
const quit = async function (event) {
const dialog = event.target;
try {
switch (dialog.returnValue) {
case "shutdown":
await kodi.system.shutdown();
close();
break;
case "suspend":
await kodi.system.suspend();
close();
break;
case "hibernate":
await kodi.system.hibernate();
close();
break;
case "reboot":
await kodi.system.reboot();
close();
break;
default:
// Ne rien faire avec le bouton Annuler.
}
} catch (err) {
openError(err);
}
};
const repeat = async function () {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé.
if (document.querySelector('[name="repeat"]').disabled) {
return;
}
try {
await kodi.player.setRepeat();
} catch (err) {
openError(err);
}
};
const shuffle = async function () {
// Annuler l'action (venant d'un raccourci clavier) si le bouton est
// désactivé.
if (document.querySelector("#shuffle input").disabled) {
return;
}
try {
await kodi.player.setShuffle();
} catch (err) {
openError(err);
}
};
const clear = async function () {
try {
await kodi.playlist.clear();
} catch (err) {
openError(err);
}
};
const play = async function (event) {
const li = event.target.closest("li");
// Annuler l'action (venant du double-clic) si le bouton est désactivé.
if (li.querySelector(".play").disabled) {
return;
}
const index = Array.from(li.parentNode.children).indexOf(li);
try {
await kodi.player.open(index);
} catch (err) {
openError(err);
}
};
const remove = async function (event) {
const li = event.target.closest("li");
const index = Array.from(li.parentNode.children).indexOf(li);
try {
await kodi.playlist.remove(index);
} catch (err) {
openError(err);
}
};
const web = async function () {
const url = document.querySelector("#web").dataset.url;
await browser.tabs.create({ url });
close();
};
const openFeedback = function () {
const dialog = document.querySelector("#dialogfeedback");
if (!dialog.open) {
dialog.showModal();
}
};
const openDonate = function () {
const dialog = document.querySelector("#dialogdonate");
if (!dialog.open) {
dialog.showModal();
}
};
const rate = async function () {
let url;
const { name } = await browser.runtime.getBrowserInfo();
switch (name) {
case "Chromium":
url =
"https://chromewebstore.google.com/detail/cast-kodi" +
"/gojlijimdlgjlliggedhakpefimkedmb/reviews";
break;
case "Firefox":
url = "https://addons.mozilla.org/addon/castkodi/";
break;
default:
throw new Error("unknown browser");
}
await browser.tabs.create({ url });
close();
};
const preferences = async function () {
await browser.runtime.openOptionsPage();
close();
};
/**
* Gère le début d'un glissement d'un élément.
*
* @param {DragEvent} event L'évènement du glissement.
* @this {HTMLLIElement}
*/
const handleDragStart = function (event) {
// eslint-disable-next-line no-param-reassign
event.dataTransfer.effectAllowed = "move";
this.classList.add("drag");
// eslint-disable-next-line consistent-this, unicorn/no-this-assignment
dragItem = this;
};
/**
* Gère le déplacement d'un glissement sur un élement déposable.
*
* @param {DragEvent} event L'évènement du glissement.
* @this {HTMLLIElement}
*/
const handleDragOver = function (event) {
event.preventDefault();
const section = this.closest("section");
const center = this.offsetTop - section.scrollTop + this.offsetHeight / 2;
if (event.clientY < center) {
this.classList.remove("drop-after");
this.classList.add("drop-before");
} else {
this.classList.remove("drop-before");
this.classList.add("drop-after");
}
// eslint-disable-next-line no-param-reassign
event.dataTransfer.dropEffect = "move";
return false;
};
/**
* Gère la sortie d'un élement déposable d'un glissement.
*
* @this {HTMLLIElement}
*/
const handleDragLeave = function () {
this.classList.remove("drop-before", "drop-after");
};
/**
* Gère le dépôt d'un élément de glissement.
*
* @param {DragEvent} event L'évènement du glissement.
* @this {HTMLLIElement}
*/
const handleDrop = async function (event) {
event.stopPropagation();
if (dragItem !== this) {
const items = Array.from(dragItem.parentElement.children);
const source = items.indexOf(dragItem);
let destination = items.indexOf(this);
dragItem.remove();
if (this.classList.contains("drop-before")) {
this.before(dragItem);
} else {
++destination;
this.after(dragItem);
}
dragItem.scrollIntoView();
try {
await kodi.playlist.move(source, destination);
} catch (err) {
openError(err);
}
}
this.classList.remove("drop-before", "drop-after");
return false;
};
/**
* Gère la fin du glissement.
*
* @this {HTMLLIElement}
*/
const handleDragEnd = function () {
this.classList.remove("drag");
};
const handleAdd = function (item) {
const template = document.querySelector("template");
const clone = document.importNode(template.content, true);
clone.querySelector("span").textContent = item.label;
clone.querySelector("span").title = item.label;
clone.querySelector("span").addEventListener("dblclick", play);
clone.querySelector(".play").addEventListener("click", play);
clone.querySelector(".remove").addEventListener("click", remove);
if (position === item.position) {
clone.querySelector("span").classList.add("active");
for (const button of clone.querySelectorAll("button")) {
button.disabled = true;
}
}
const li = document.createElement("li");
li.dataset.file = item.file;
li.addEventListener("dragstart", handleDragStart, false);
li.addEventListener("dragover", handleDragOver, false);
li.addEventListener("dragleave", handleDragLeave, false);
li.addEventListener("drop", handleDrop, false);
li.addEventListener("dragend", handleDragEnd, false);
li.draggable = true;
li.append(clone);
const ol = document.querySelector("#playlist-items ol");
ol.insertBefore(li, ol.children[item.position]);
};
const handleClear = function () {
const ol = document.querySelector("#playlist-items ol");
ol.textContent = "";
};
const handleRemove = function (value) {
document
.querySelector(`#playlist-items li:nth-child(${value + 1})`)
.remove();
};
const handleInputRequested = function ({ type, value }) {
const dialog = document.querySelector("#dialogsendtext");
if (!dialog.open) {
const text = dialog.querySelector('input[name="text"]');
switch (type) {
case "date":
text.type = "date";
break;
case "password":
case "numericpassword":
text.type = "password";
break;
case "number":
text.type = "number";
break;
default:
text.type = "text";
}
text.value = value;
dialog.showModal();
}
};
const handleShuffledChanged = async function (value, only = false) {
document.querySelector("#shuffle input").checked = value;
if (only) {
return;
}
const items = await kodi.playlist.getItems();
const ol = document.querySelector("#playlist-items ol");
if (0 === ol.children.length) {
for await (const item of items.map(complete)) {
handleAdd(item);
}
document.querySelector("#playlist-items").classList.remove("waiting");
} else {
for (const item of items) {
const li = Array.from(ol.children).find(
(l) => item.file === l.dataset.file,
);
if (li.querySelector("span").classList.contains("active")) {
position = item.position;
}
li.remove();
ol.append(li);
}
}
};
const handleRepeatChanged = function (value) {
document.querySelector(`[name="repeat"][value="${value}"]`).checked = true;
document.querySelector("#repeat-off").classList.remove("checked");
document.querySelector("#repeat-all").classList.remove("checked");
document.querySelector("#repeat-one").classList.remove("checked");
document.querySelector(`#repeat-${value}`).classList.add("checked");
};
const handleTimeChanged = function (value) {
const time = document.querySelector("#time");
const max = Number(time.max);
time.valueAsNumber = Math.min(value, max);
time.previousElementSibling.textContent =
3600 < max
? Math.trunc(time.valueAsNumber / 3600) +
":" +
(Math.trunc(time.valueAsNumber / 60) % 60)
.toString()
.padStart(2, "0") +
":" +
(time.valueAsNumber % 60).toString().padStart(2, "0")
: Math.trunc(time.valueAsNumber / 60) +
":" +
(time.valueAsNumber % 60).toString().padStart(2, "0");
// Utiliser la taille du temps total pour que l'élément ait toujours la
// même taille (même durant le passage à la dizaine).
time.previousElementSibling.style.width =
time.nextElementSibling.offsetWidth.toString() + "px";
};
const handleTotaltimeChanged = function (value) {
document.querySelector("#time").max = value.toString();
document.querySelector("#play").disabled = false;
if (0 === value) {
const time = document.querySelector("#time");
time.disabled = true;
time.previousElementSibling.style.visibility = "hidden";
time.nextElementSibling.style.visibility = "hidden";
document.querySelector("#rewind").disabled = true;
document.querySelector("#pause").disabled = true;
document.querySelector("#forward").disabled = true;
time.nextElementSibling.textContent = "0:00";
} else {
const time = document.querySelector("#time");
time.disabled = false;
time.previousElementSibling.style.visibility = "visible";
time.nextElementSibling.style.visibility = "visible";
document.querySelector("#rewind").disabled = false;
document.querySelector("#pause").disabled = false;
document.querySelector("#forward").disabled = false;
time.nextElementSibling.textContent =
3600 < value
? Math.trunc(value / 3600) +
":" +
(Math.trunc(value / 60) % 60).toString().padStart(2, "0") +
":" +
(value % 60).toString().padStart(2, "0")
: Math.trunc(value / 60) +
":" +
(value % 60).toString().padStart(2, "0");
}
};
const handleSpeedChanged = function (value) {
speed = value;
if (1 === speed) {
document.querySelector("#play").style.display = "none";
document.querySelector("#pause").style.display = "flex";
} else {
document.querySelector("#pause").style.display = "none";
document.querySelector("#play").style.display = "flex";
}
};
const handlePositionChanged = function (value) {
position = value;
for (const li of document.querySelectorAll("#playlist-items li")) {
li.querySelector("span").classList.remove("active");
for (const button of li.querySelectorAll("button")) {
button.disabled = false;
}
}
const li = document.querySelector(
`#playlist-items li:nth-child(${value + 1})`,
);
if (null !== li) {
li.querySelector("span").classList.add("active");
for (const button of li.querySelectorAll("button")) {
button.disabled = true;
}
}
};
const handleActiveChanged = async function (value) {
active = value;
if (active) {
document.querySelector("#time").disabled = false;
document.querySelector("#previous").disabled = false;
document.querySelector("#rewind").disabled = false;
document.querySelector("#stop").disabled = false;
document.querySelector("#play").dataset.action = "resume";
document.querySelector("#forward").disabled = false;
document.querySelector("#next").disabled = false;
document.querySelector("#opensubtitle").disabled = false;
for (const input of document.querySelectorAll("#repeat input")) {
input.disabled = false;
}
document.querySelector("#shuffle input").disabled = false;
} else {
document.querySelector("#time").disabled = true;
document.querySelector("#previous").disabled = true;
document.querySelector("#rewind").disabled = true;
document.querySelector("#stop").disabled = true;
document.querySelector("#play").dataset.action = "open";
document.querySelector("#forward").disabled = true;
document.querySelector("#next").disabled = true;
document.querySelector("#opensubtitle").disabled = true;
// Ne pas activer les boutons pour répéter et mélanger la liste de