-
Notifications
You must be signed in to change notification settings - Fork 0
/
graph1.html
813 lines (737 loc) · 30.7 KB
/
graph1.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
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SDK Toucan Toco</title>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/5.3.0/css/bootstrap.min.css">
<style>
body {
padding-left: 270px !important;
background: linear-gradient(135deg, #3B625B, #57857D);
font-family: 'Montserrat', sans-serif;
margin: 0;
padding: 0;
height: auto;
display: flex;
justify-content: flex-start;
align-items: stretch;
}
.sidebar {
position: fixed !important;
top: 0;
left: 0;
height: 100%;
z-index: 1;
width: 250px;
background-color: #ffffff;
color: #3B625B;
transition: width 0.3s;
padding-top: 20px;
border-radius: 0 20px 20px 0;
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
position: relative; /* Important for absolute positioning inside */
}
.sidebar.collapsed {
width: 80px;
}
.sidebar .logo {
display: flex;
align-items: center;
padding: 20px;
border-bottom: 2px solid #3B625B;
}
.sidebar .logo img {
width: 50px;
height: 50px;
border-radius: 50%;
}
.sidebar ul {
list-style-type: none;
padding-left: 0;
margin: 0;
}
.sidebar .nav-link {
color: #3B625B;
padding: 15px 20px;
font-weight: 700;
display: flex;
align-items: center;
text-transform: uppercase;
text-decoration: none;
cursor: pointer;
}
.sidebar .nav-link:hover {
background-color: #f1f1f1;
border-radius: 10px;
}
.sidebar .bi {
font-size: 1.5rem;
margin-right: 10px;
}
.sidebar.collapsed .nav-link-text {
display: none;
}
.content {
width: 100%;
padding: 30px;
}
.toggle-btn {
position: absolute;
top: 10px;
left: 250px;
z-index: 1000;
font-size: 1.5rem;
cursor: pointer;
color: #ffffff;
}
.sidebar.collapsed + .toggle-btn {
left: 80px;
}
h1 {
color: #ffffff;
font-weight: 700;
}
p {
color: #ffffff;
font-size: 18px;
text-align: center;
max-width: 600px;
}
</style>
</head>
<body>
<div class="sidebar" id="sidebar">
<div class="logo">
<img src="https://media.licdn.com/dms/image/C560BAQFVqjc_gOCOKg/company-logo_200_200/0/1643133883287/toucan_toco_logo?e=2147483647&v=beta&t=mIhJ7esEBVO6JW4eZNpDam8m54TB6WRFt-JY4PKuFvA" alt="Logo Toucan Toco">
</div>
<ul class="nav flex-column">
<li class="nav-item">
<a class="nav-link" href="index.html">
<i class="bi bi-house-door"></i>
<span class="nav-link-text">Accueil</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="graph1.html">
<i class="bi bi-person"></i>
<span class="nav-link-text">Extra Variables</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="graph2.html">
<i class="bi bi-gear"></i>
<span class="nav-link-text">Send PDF report</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="graph3.html">
<i class="bi bi-info-circle"></i>
<span class="nav-link-text">Event Emitter System</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="graph4.html">
<i class="bi bi-info-circle"></i>
<span class="nav-link-text">W.I.P</span>
</a>
</li>
</ul>
</div>
<i class="bi bi-list toggle-btn" id="toggle-btn"></i>
<div class="content">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/flatpickr/dist/flatpickr.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/select2.min.css">
<style type="text/css">
/* Importing the Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
/* Background with gradient */
.export_pdf_report {
font-family: 'Montserrat', sans-serif; /* Police Montserrat */
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
/* Container for content */
.export_pdf_report .container {
width: 100%;
padding: 30px;
background-color: #ffffff; /* Couleur de fond du conteneur */
border-radius: 20px; /* Coins arrondis du conteneur */
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Ombre plus prononcée */
text-align: center; /* Centrer le texte */
position: relative; /* Pour positionner l'image */
}
/* Title */
.export_pdf_report .title {
font-size: 36px;
font-weight: 700; /* Bold */
color: #3B625B;
margin-bottom: 30px; /* Espacement sous le titre */
}
/* Grid for filters */
.export_pdf_report .filter-group {
display: flex;
justify-content: space-between; /* Espacement égal entre les filtres */
gap: 15px; /* Espacement entre les filtres */
}
/* Form Group */
.export_pdf_report .form-group {
flex: 1; /* Chaque filtre prend une largeur égale */
min-width: 0; /* Permet au filtre de s'adapter à l'espace disponible */
}
/* Custom select style with Select2 */
.export_pdf_report .select2-container--default .select2-selection--single {
border-radius: 10px; /* Coins arrondis pour le sélecteur */
background-color: #E9ECEF; /* Couleur de fond du sélecteur, plus claire */
border: 1px solid #3B625B; /* Bordure du sélecteur */
color: #3B625B; /* Texte du sélecteur */
height: 38px; /* Ajuster la hauteur pour correspondre au champ de sélection */
}
.export_pdf_report .select2-container--default .select2-selection--single .select2-selection__rendered {
color: #3B625B; /* Texte du sélecteur */
}
.export_pdf_report .select2-container--default .select2-selection--single .select2-selection__arrow {
height: 38px; /* Ajuster la hauteur pour correspondre au champ de sélection */
}
.export_pdf_report .select2-container--default .select2-selection--single .select2-selection__rendered:hover {
background-color: #81B1BD; /* Couleur de fond au survol */
color: #fff; /* Texte blanc au survol */
}
/* Flatpickr input style */
.export_pdf_report .flatpickr-input {
border-radius: 10px; /* Coins arrondis pour le champ de date */
background-color: #E9ECEF; /* Couleur de fond du champ de date */
border: 1px solid #3B625B; /* Bordure du champ de date */
color: #3B625B; /* Texte du champ de date */
height: 38px; /* Hauteur uniforme */
padding: 0 10px; /* Espacement interne */
box-sizing: border-box; /* Inclure les bordures et le padding dans la largeur totale */
}
/* Styling the tabs */
.export_pdf_report .nav-tabs {
margin-bottom: 20px;
border-bottom: none; /* Enlever la bordure en bas des onglets */
}
.export_pdf_report .nav-tabs .nav-link {
border: none; /* Enlever la bordure des onglets */
border-radius: 10px; /* Coins arrondis des onglets */
color: #3B625B; /* Couleur du texte des onglets */
background-color: #A7D2CD; /* Couleur de fond des onglets, plus claire */
margin-right: 10px; /* Espacement entre les onglets */
transition: background-color 0.3s, color 0.3s; /* Transitions douces */
}
.export_pdf_report .nav-tabs .nav-link.active {
background-color: #3B625B; /* Couleur de fond de l'onglet actif */
color: #fff; /* Couleur du texte de l'onglet actif */
border: none; /* Enlever la bordure de l'onglet actif */
}
.export_pdf_report .nav-tabs .nav-link:hover {
background-color: #81B1BD; /* Couleur de fond au survol des onglets */
color: #fff; /* Couleur du texte au survol */
}
/* Chart container style */
.export_pdf_report .chart-container {
max-width: 100%;
height: 500px;
margin-top: 20px;
border-radius: 15px; /* Arrondir les coins du conteneur */
overflow: hidden; /* Assurer que le contenu ne déborde pas des coins arrondis */
background: #A7D2CD; /* Couleur de fond plus claire pour le conteneur du graphique */
}
/* Custom label style */
.export_pdf_report .form-label {
font-weight: 600;
color: #3B625B;
margin-bottom: 10px;
display: block;
}
/* Logo */
.export_pdf_report .logo {
position: absolute;
top: 20px;
right: 20px;
border-radius: 50%;
width: 50px; /* Set desired width */
height: 50px; /* Set desired height */
}
</style>
<div class="export_pdf_report">
<div class="container">
<img src="https://media.licdn.com/dms/image/C560BAQFVqjc_gOCOKg/company-logo_200_200/0/1643133883287/toucan_toco_logo?e=2147483647&v=beta&t=mIhJ7esEBVO6JW4eZNpDam8m54TB6WRFt-JY4PKuFvA" alt="Logo Toucan Toco" class="logo">
<h1 class="title">Démonstration des Extra Variables</h1>
<ul class="nav nav-tabs" id="myTab" role="tablist">
<li class="nav-item">
<a class="nav-link active" id="tab1-tab" data-toggle="tab" href="#tab1" role="tab" aria-controls="tab1" aria-selected="true">Onglet 1</a>
</li>
<li class="nav-item">
<a class="nav-link" id="tab2-tab" data-toggle="tab" href="#tab2" role="tab" aria-controls="tab2" aria-selected="false">Onglet 2</a>
</li>
</ul>
<div class="filter-group">
<div class="form-group">
<label for="countrySelect" class="form-label">Filtre pays</label>
<select id="countrySelect" class="custom-select select2">
<option value=""></option> <!-- Option vide pour retirer le texte placeholder -->
<option value="France">France</option>
<option value="Belgium">Belgium</option>
<option value="Norway">Norway</option>
</select>
</div>
<div class="form-group">
<label for="dateRange" class="form-label">Filtre dates</label>
<input type="text" id="dateRange" class="form-control">
</div>
</div>
<div class="tab-content">
<div class="tab-pane fade show active" id="tab1" role="tabpanel" aria-labelledby="tab1-tab">
<div id="chartContainer1" class="chart-container"></div>
</div>
<div class="tab-pane fade" id="tab2" role="tabpanel" aria-labelledby="tab2-tab">
<div id="chartContainer2" class="chart-container"></div>
</div>
</div>
</div>
<script src="https://toucan-customer-trial.toucantoco.com/scripts/tctc-sdk.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/flatpickr"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/select2.min.js"></script>
<script>
let toucanInstances = {}; // Déclaration d'un objet global pour stocker les instances du SDK
let selectedCountry = ""; // Variable pour stocker le pays sélectionné
let startDealDate = ""; // Variable pour stocker la date de début
let endDealDate = ""; // Variable pour stocker la date de fin
// Fonction pour convertir une date en format ISO
function convertToISO(date) {
return date.toISOString();
}
// Fonction pour initialiser une instance du SDK et insérer l'embed chart
async function initializeToucan(tabId, containerId, embedId) {
if (!toucanInstances[tabId]) {
try {
console.log(`Initialisation de Toucan pour l'onglet ${tabId} avec l'ID d'embed ${embedId}`);
toucanInstances[tabId] = await TcTcEmbed.initialize();
await toucanInstances[tabId].insertEmbedById(
embedId, // ID de votre embed spécifique pour cet onglet
document.getElementById(containerId),
{
token: '_0XBPWQQ_1df71330-932c-42c0-b0c1-4c6e085dfd92', // Token valide
lang: 'en',
panel: false,
header: true
}
);
console.log(`Embed inséré dans l'onglet ${tabId}`);
updateEmbeds(); // Appliquer les filtres lors de l'initialisation
} catch (error) {
console.error(`Erreur lors de l'initialisation de l'onglet ${tabId}:`, error);
}
}
}
// Fonction pour mettre à jour les intégrations d'analyse embarquées
async function updateEmbeds() {
for (const instance in toucanInstances) {
try {
let filters = {};
if (selectedCountry) filters.country = selectedCountry;
if (startDealDate) filters.start_deal = startDealDate;
if (endDealDate) filters.end_deal = endDealDate;
await toucanInstances[instance].setExtraVariablesForAllEmbeds(filters);
console.log(`Filtres appliqués pour l'onglet ${instance}: `, filters);
} catch (error) {
console.error(`Erreur lors de l'application du filtre pour l'onglet ${instance}:`, error);
}
}
}
// Initialiser les instances du SDK pour chaque onglet
window.addEventListener('load', async () => {
await initializeToucan('tab1', 'chartContainer1', 'c4a40f6a-ff98-4c2c-81ed-ded72a0132b5');
await initializeToucan('tab2', 'chartContainer2', '7dbb34fc-fe36-4e9a-b935-943074f73c4b');
});
// Initialiser flatpickr pour le champ de plage de dates
flatpickr("#dateRange", {
mode: "range",
dateFormat: "Y-m-d",
onChange: function(selectedDates, dateStr, instance) {
if (selectedDates.length === 2) {
startDealDate = convertToISO(selectedDates[0]);
endDealDate = convertToISO(selectedDates[1]);
console.log(`Plage de dates sélectionnée: Début=${startDealDate}, Fin=${endDealDate}`);
updateEmbeds();
}
}
});
// Initialiser Select2 pour le filtre de pays
$(document).ready(function() {
$('#countrySelect').select2({
placeholder: "", /* Retirer le texte placeholder */
allowClear: true,
width: 'resolve'
});
});
// Ajout d'un écouteur d'événements pour détecter les changements dans la sélection de la liste déroulante
$('#countrySelect').on('change', function(e) {
selectedCountry = $(this).val();
console.log(`Pays sélectionné: ${selectedCountry}`);
updateEmbeds();
});
// Gestion du changement d'onglet pour s'assurer que la sélection de pays et la plage de dates persistent
$('#myTab a').on('shown.bs.tab', async function (e) {
const tabId = $(e.target).attr('id').replace('-tab', '');
const containerId = 'chartContainer' + tabId.charAt(tabId.length - 1);
await initializeToucan(tabId, containerId, 'd9239ba4-08fc-42f3-87b6-1cda42ead4db');
if (selectedCountry || startDealDate || endDealDate) {
try {
let filters = {};
if (selectedCountry) filters.country = selectedCountry;
if (startDealDate) filters.start_deal = startDealDate;
if (endDealDate) filters.end_deal = endDealDate;
await toucanInstances[tabId].setExtraVariablesForAllEmbeds(filters);
console.log(`Filtres appliqués pour l'onglet ${tabId}: `, filters);
} catch (error) {
console.error(`Erreur lors de l'application du filtre pour l'onglet ${tabId}:`, error);
}
}
});
</script>
</div>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/prism.min.css" rel="stylesheet">
<style>
/* Importing the Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
/* Background with gradient */
.timeline-blc {
margin-top: 40px !important;
font-family: 'Montserrat', sans-serif; /* Police Montserrat */
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
}
/* Container for content */
.timeline-blc .container {
width: 100%;
padding: 20px;
background-color: #ffffff; /* Couleur de fond du conteneur */
border-radius: 20px; /* Coins arrondis du conteneur */
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Ombre plus prononcée */
overflow-y: auto; /* Ajoute le défilement vertical */
}
/* Title */
.timeline-blc .title {
font-size: 36px;
font-weight: 700; /* Bold */
color: #3B625B;
margin-bottom: 20px; /* Espacement sous le titre */
text-align: center; /* Centrer le texte */
}
/* Timeline */
.timeline-blc .timeline {
position: relative;
padding: 0;
list-style: none;
}
.timeline-blc .timeline::before {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 50%;
width: 4px;
background: #3B625B; /* Couleur de la ligne de la timeline */
transform: translateX(-50%);
}
.timeline-blc .timeline-item {
position: relative;
width: 50%;
padding: 20px;
box-sizing: border-box;
transition: transform 0.3s;
cursor: pointer;
margin-bottom: 10px; /* Espacement entre les éléments */
}
.timeline-blc .timeline-item:nth-child(odd) {
left: 0;
text-align: right;
}
.timeline-blc .timeline-item:nth-child(even) {
left: 50%;
text-align: left;
}
.timeline-blc .timeline-item::before {
content: '';
position: absolute;
top: 20px;
right: -8px;
width: 16px;
height: 16px;
background: #3B625B; /* Couleur des points */
border: 2px solid #ffffff;
border-radius: 50%;
z-index: 1;
transition: background 0.3s, transform 0.3s;
}
.timeline-blc .timeline-item:nth-child(even)::before {
left: -8px;
right: auto;
}
.timeline-blc .timeline-item-content {
padding: 20px;
background: #A7D2CD; /* Couleur de fond des éléments */
border-radius: 10px; /* Coins arrondis des éléments */
position: relative;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1); /* Ombre douce */
transition: background 0.3s, box-shadow 0.3s;
display: none; /* Caché par défaut */
}
.timeline-blc .timeline-item.active .timeline-item-content {
display: block; /* Afficher lorsqu'actif */
}
.timeline-blc .timeline-item-content h2 {
font-size: 24px;
font-weight: 700; /* Bold */
color: #3B625B; /* Couleur du titre */
margin: 0 0 10px; /* Espacement sous le titre */
}
.timeline-blc .timeline-item-content p {
font-size: 16px;
font-weight: 400;
color: #3B625B; /* Couleur du texte */
margin: 0;
}
.timeline-blc .timeline-item-content code {
display: block;
background: #f4f4f4;
padding: 10px;
border-radius: 5px;
margin-top: 10px;
overflow-x: auto;
font-size: 14px;
}
.timeline-blc .timeline-item-content time {
display: block;
font-size: 14px;
color: #3B625B; /* Couleur de la date */
margin-top: 10px;
}
/* Hover effects */
.timeline-blc .timeline-item:hover {
transform: translateY(-10px);
}
.timeline-blc .timeline-item:hover::before {
background: #81B1BD; /* Couleur des points au survol */
transform: scale(1.2);
}
.timeline-blc .timeline-item:hover .timeline-item-content {
background: #81B1BD; /* Couleur de fond des éléments au survol */
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Ombre plus prononcée au survol */
}
.timeline-blc .timeline-item:hover .timeline-item-content h2,
.timeline-blc .timeline-item:hover .timeline-item-content p,
.timeline-blc .timeline-item:hover .timeline-item-content code,
.timeline-blc .timeline-item:hover .timeline-item-content time {
color: #141414; /* Couleur du texte au survol */
}
/* Copy button styling */
.timeline-blc .copy-btn {
background-color: #3B625B; /* Couleur de fond du bouton */
color: #ffffff; /* Couleur du texte */
border: none;
border-radius: 5px;
padding: 5px 10px;
cursor: pointer;
font-size: 14px;
margin-top: 10px;
}
.timeline-blc .copy-btn:hover {
background-color: #2a4a47; /* Couleur de fond du bouton au survol */
}
</style>
<div class="timeline-blc">
<div class="container">
<h1 class="title">Mise en Place du Graphique Interactif</h1>
<ul class="timeline">
<li class="timeline-item">
<div class="timeline-item-header" onclick="toggleContent(this)">
<h2>Configurer les Filtres</h2>
</div>
<div class="timeline-item-content">
<p>Définissez les filtres permettant aux utilisateurs de personnaliser les données affichées. Utilisez des menus déroulants pour les pays et des sélecteurs de dates pour affiner les résultats.</p>
<pre><code class="language-javascript" id="code1">
$(document).ready(function() {
$('#countrySelect').select2({
placeholder: "Sélectionnez un pays",
allowClear: true,
width: 'resolve'
});
});
flatpickr("#dateRange", {
mode: "range",
dateFormat: "Y-m-d",
onChange: function(selectedDates) {
if (selectedDates.length === 2) {
startDealDate = convertToISO(selectedDates[0]);
endDealDate = convertToISO(selectedDates[1]);
updateEmbeds();
}
}
});
</code></pre>
<button class="copy-btn" data-clipboard-target="#code1">Copier</button>
</div>
</li>
<li class="timeline-item">
<div class="timeline-item-header" onclick="toggleContent(this)">
<h2>Gérer les Onglets</h2>
</div>
<div class="timeline-item-content">
<p>Assurez-vous que les filtres sont maintenus lorsque les utilisateurs naviguent entre les onglets. Chaque onglet doit afficher les graphiques correspondants tout en conservant les filtres appliqués.</p>
<pre><code class="language-javascript" id="code2">
$('#myTab a').on('shown.bs.tab', async function (e) {
const tabId = $(e.target).attr('id').replace('-tab', '');
const containerId = 'chartContainer' + tabId.charAt(tabId.length - 1);
await initializeToucan(tabId, containerId, 'VOTRE_EMBED_ID');
if (selectedCountry || startDealDate || endDealDate) {
let filters = {};
if (selectedCountry) filters.country = selectedCountry;
if (startDealDate) filters.start_deal = startDealDate;
if (endDealDate) filters.end_deal = endDealDate;
await toucanInstances[tabId].setExtraVariablesForAllEmbeds(filters);
}
});
</code></pre>
<button class="copy-btn" data-clipboard-target="#code2">Copier</button>
</div>
</li>
<li class="timeline-item">
<div class="timeline-item-header" onclick="toggleContent(this)">
<h2>Initialiser le SDK Toucan Toco</h2>
</div>
<div class="timeline-item-content">
<p>Créez et configurez les instances du SDK pour chaque graphique. Insérez les graphiques dans les conteneurs spécifiés et assurez-vous qu'ils sont prêts à afficher les données filtrées.</p>
<pre><code class="language-javascript" id="code3">
async function initializeToucan(tabId, containerId, embedId) {
if (!toucanInstances[tabId]) {
try {
toucanInstances[tabId] = await TcTcEmbed.initialize();
await toucanInstances[tabId].insertEmbedById(
embedId,
document.getElementById(containerId),
{
token: 'VOTRE_TOKEN',
lang: 'en',
panel: false,
header: true
}
);
updateEmbeds();
} catch (error) {
console.error(`Erreur lors de l'initialisation de l'onglet ${tabId}:`, error);
}
}
}
</code></pre>
<button class="copy-btn" data-clipboard-target="#code3">Copier</button>
</div>
</li>
<li class="timeline-item">
<div class="timeline-item-header" onclick="toggleContent(this)">
<h2>Appliquer les Filtres</h2>
</div>
<div class="timeline-item-content">
<p>Pour obtenir plus d'informations, vous consultez : </p>
<pre><code class="language-javascript" id="code4">
async function updateEmbeds() {
for (const instance in toucanInstances) {
try {
let filters = {};
if (selectedCountry) filters.country = selectedCountry;
if (startDealDate) filters.start_deal = startDealDate;
if (endDealDate) filters.end_deal = endDealDate;
await toucanInstances[instance].setExtraVariablesForAllEmbeds(filters);
} catch (error) {
console.error(`Erreur lors de l'application du filtre pour l'onglet ${instance}:`, error);
}
}
}
</code></pre>
<button class="copy-btn" data-clipboard-target="#code4">Copier</button>
</div>
</li>
<li class="timeline-item">
<div class="timeline-item-header" onclick="toggleContent(this)">
<h2>Gestion des Changements de Sélection</h2>
</div>
<div class="timeline-item-content">
<p>Assurez-vous que les changements effectués dans les filtres se reflètent immédiatement dans les graphiques, même lors de la navigation entre les onglets. Les événements de sélection doivent déclencher une mise à jour des graphiques.</p>
<pre><code class="language-javascript" id="code5">
$('#countrySelect').on('change', function() {
selectedCountry = $(this).val();
updateEmbeds();
});
$('#dateRange').on('change', function() {
startDealDate = convertToISO(new Date($('#dateRange').data('startDate')));
endDealDate = convertToISO(new Date($('#dateRange').data('endDate')));
updateEmbeds();
});
</code></pre>
<button class="copy-btn" data-clipboard-target="#code5">Copier</button>
</div>
</li>
<li class="timeline-item">
<div class="timeline-item-header" onclick="toggleContent(this)">
<h2>Pour en savoir plus 💡</h2>
</div>
<div class="timeline-item-content">
<p>Consultez le <a href="https://codepen.io/Jaouad-Ahraoui-the-bold/pen/XWLMZMY" target="_blank">CodePen </a> pour accéder à l'entièreté de la démonstration.
Vous pouvez également la documentation Toucan traitant des <a href="https://docs-v3.toucantoco.com/visualizations-and-layouts/embedding/embed-sdk#setextravariablesforallembeds" target="_blank">ExtraVariables </a> </p>
</div>
</li>
</ul>
</div>
<!-- PrismJS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/prism.min.js"></script>
<!-- Clipboard.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.10/clipboard.min.js"></script>
<script>
// Initialize Clipboard.js
var clipboard = new ClipboardJS('.copy-btn');
clipboard.on('success', function(e) {
alert('Code copié !');
e.clearSelection();
});
clipboard.on('error', function(e) {
alert('Échec de la copie.');
});
function toggleContent(element) {
const content = element.nextElementSibling;
const isActive = content.style.display === 'block';
// Hide all other content
document.querySelectorAll('.timeline-item-content').forEach(function(item) {
item.style.display = 'none';
});
// Toggle the clicked content
content.style.display = isActive ? 'none' : 'block';
// Add or remove active class
document.querySelectorAll('.timeline-item').forEach(function(item) {
item.classList.remove('active');
});
if (!isActive) {
element.parentElement.classList.add('active');
}
}
</script>
</div>
</div>
</body>
</html>