-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraph4.html
839 lines (740 loc) · 29.6 KB
/
graph4.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
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interface d'Embed avec Fonctionnalités</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;
}
</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">Listener</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">Interface d'Embed</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">
<style>
/* Background with gradient */
.export_pdf_report {
font-family: 'Montserrat', sans-serif;
margin: 0;
padding: 0;
display: block;
justify-content: center;
align-items: center;
text-align: center;
}
.export_pdf_report h1 {
font-size: 36px;
font-weight: 700;
color: #ffffff;
margin: 20px 0;
text-align: center;
}
.export_pdf_report .container {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
background-color: #ffffff;
border-radius: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
padding: 20px;
box-sizing: border-box;
margin-bottom: 20px;
}
.export_pdf_report .embed-container {
width: 100%;
background-color: #ffffff;
border-radius: 10px;
overflow: hidden;
margin-bottom: 20px;
position: relative;
}
.export_pdf_report .log-output {
background-color: transparent; /* Fond transparent */
border: none; /* Pas de bordure */
box-shadow: none; /* Pas d'ombre */
padding: 20px;
margin-top: 2px;
font-size: 14px;
color: #333;
width: 100%;
max-height: 50px; /* Limite la hauteur du journal d'activité */
overflow-y: auto; /* Ajoute un scroll vertical si nécessaire */
}
.export_pdf_report .embed {
border: 1px solid #ddd;
border-radius: 5px;
background-color: #f9f9f9;
height: 400px;
width: 100%;
box-sizing: border-box;
}
.export_pdf_report .actions-output {
display: flex;
width: 100%;
}
.export_pdf_report .actions {
flex: 1;
background-color: rgba(248, 249, 250, 0.9);
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
color: #3B625B;
border-radius: 10px;
overflow-y: auto;
max-height: 400px;
}
.export_pdf_report .actions input, .actions button, .actions select {
padding: 8px;
margin: 5px 0;
width: 100%;
box-sizing: border-box;
border-radius: 5px;
border: 1px solid #ddd;
}
.export_pdf_report .actions button {
background-color: #3B625B;
color: #ffffff;
border: none;
cursor: pointer;
}
.export_pdf_report .actions button:hover {
background-color: #2a4d46;
}
.export_pdf_report .event-output {
flex: 2;
background-color: #ffffff;
border-radius: 10px;
padding: 20px;
margin-left: 20px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
max-height: 400px;
overflow-y: auto;
font-size: 14px;
}
.export_pdf_report .event-output pre {
margin: 0;
overflow-x: auto;
white-space: pre-wrap;
font-size: 14px;
}
.export_pdf_report .string {
color: #e94e77;
}
.export_pdf_report .number {
color: #f39c12;
}
.export_pdf_report .boolean {
color: #1abc9c;
}
.export_pdf_report .key {
color: #3498db;
}
.export_pdf_report .log-output h2 {
margin-top: 0;
font-size: 24px;
font-weight: 700;
color: #333;
}
.export_pdf_report .log-message {
padding: 10px;
margin-bottom: 10px;
border-radius: 5px;
display: flex;
align-items: center;
}
.export_pdf_report .log-message.success {
background-color: #e9f7ef;
color: #2d6a4f;
}.export_pdf_report
.export_pdf_report .log-message.error {
background-color: #f8d7da;
color: #721c24;
}
.export_pdf_report .log-message.warning {
background-color: #fff3cd;
color: #856404;
}
.export_pdf_report .log-message.info {
background-color: #d1ecf1;
color: #0c5460;
}
.export_pdf_report .log-message span {
margin-right: 10px;
font-size: 20px;
}
.export_pdf_report .log-message.success span::before {
content: "✅";
}
.export_pdf_report .log-message.error span::before {
content: "❌";
}
.export_pdf_report .log-message.warning span::before {
content: "⚠️";
}
.export_pdf_report .log-message.info span::before {
content: "ℹ️";
}
</style>
</head>
<div class="export_pdf_report">
<h1>Interface d'Embed avec Fonctionnalités</h1>
<div class="container">
<div class="embed-container">
<div id="embed" class="embed"></div>
</div>
<!-- Déplacement de la section Journal d'Activité -->
<div id="log-output" class="log-output">
</div>
<div class="actions-output">
<div class="actions">
<!-- Section: Chargement de l'Embed -->
<div class="section" style="border: 1px solid #ddd; border-radius: 10px; padding: 15px; margin-bottom: 15px; background-color: #f8f9fa;">
<h3 style="margin-top: 0;">Chargement de l'Embed</h3>
<input type="text" id="embed-id" placeholder="ID de l'Embed" />
<button id="fetch-embed">Charger l'Embed</button>
<button id="refresh-data">Rafraîchir les Données</button>
</div>
<!-- Section: Filtres -->
<div class="section" style="border: 1px solid #ddd; border-radius: 10px; padding: 15px; margin-bottom: 15px; background-color: #f8f9fa;">
<h3 style="margin-top: 0;">Filtres</h3>
<input type="text" id="filter-id" placeholder="ID du Filtre">
<input type="text" id="column-name" placeholder="Nom de la Colonne">
<input type="text" id="column-value" placeholder="Valeur de la Colonne">
<button id="apply-filter">Appliquer le Filtre</button>
</div>
<!-- Section: Rapport PDF -->
<div class="section" style="border: 1px solid #ddd; border-radius: 10px; padding: 15px; margin-bottom: 15px; background-color: #f8f9fa;">
<h3 style="margin-top: 0;">Rapport PDF</h3>
<input type="text" id="app-id" placeholder="App ID">
<input type="text" id="auth-token" placeholder="Token Authentification">
<input type="text" id="report-id" placeholder="ID du Rapport">
<button id="send-report">Envoyer Rapport PDF</button>
</div>
<!-- Section: Événements -->
<div class="section" style="border: 1px solid #ddd; border-radius: 10px; padding: 15px; background-color: #f8f9fa;">
<h3 style="margin-top: 0;">Événements</h3>
<select id="event-type">
<option value="chart:selection">chart:selection</option>
<option value="chart:drill">chart:drill</option>
</select>
<button id="subscribe-event">Souscrire à l'Événement</button>
<button id="unsubscribe-event">Désabonner de l'Événement</button>
</div>
</div>
<div id="event-output" class="event-output">
<h2>Données d'Événements</h2>
<pre>Aucune donnée d'événement.</pre>
</div>
</div>
</div>
<script>
let embed;
let subscriptionActive = false;
function addLogMessage(message, type) {
const logOutput = document.getElementById('log-output');
const messageElement = document.createElement('div');
const timestamp = new Date().toLocaleTimeString(); // Ajoute l'horodatage
messageElement.className = `log-message ${type}`;
messageElement.innerHTML = `<span></span><strong>[${timestamp}]</strong> ${message}`; // Affiche l'horodatage et le message
logOutput.appendChild(messageElement);
logOutput.scrollTop = logOutput.scrollHeight; // Défilement automatique vers le bas
}
document.getElementById('fetch-embed').addEventListener('click', async function() {
try {
const SDK_TOKEN = '_0XBPWQQ_40e1ff4f-e62c-4e80-a115-100964fef03a';
const instance = await TcTcEmbed.initialize({ token: SDK_TOKEN });
const embedId = document.getElementById('embed-id').value;
if (!embedId) {
addLogMessage('Veuillez entrer un ID d\'embed.', 'warning');
return;
}
const embedDiv = document.getElementById('embed');
embedDiv.innerHTML = '';
await instance.insertEmbedById(
embedId,
embedDiv,
{
token: SDK_TOKEN,
lang: 'en',
filters: {},
panel: false,
header: true
}
);
embed = await instance.get(embedId);
addLogMessage('Embed chargé avec succès.', 'success');
} catch (error) {
addLogMessage('Erreur lors du chargement de l\'embed: ' + error.message, 'error');
}
});
document.getElementById('refresh-data').addEventListener('click', async function() {
try {
if (embed) {
await embed.refreshDataQueries();
addLogMessage('Données rafraîchies avec succès.', 'success');
} else {
addLogMessage('Aucun embed chargé pour rafraîchir les données.', 'warning');
}
} catch (error) {
addLogMessage('Erreur lors du rafraîchissement des données: ' + error.message, 'error');
}
});
document.getElementById('apply-filter').addEventListener('click', async function() {
try {
if (embed) {
const filterId = document.getElementById('filter-id').value;
const columnName = document.getElementById('column-name').value;
const columnValue = document.getElementById('column-value').value;
addLogMessage(`Application du filtre ${filterId} avec ${columnName}=${columnValue}`, 'info');
await embed.setFilterValue(filterId, { column: columnValue });
await embed.refreshDataQueries();
addLogMessage('Filtre appliqué et données rafraîchies avec succès.', 'success');
} else {
addLogMessage('Aucun embed pour appliquer le filtre.', 'warning');
}
} catch (error) {
addLogMessage('Erreur lors de l\'application du filtre: ' + error.message, 'error');
}
});
document.getElementById('send-report').addEventListener('click', async function() {
try {
const appId = document.getElementById('app-id').value;
const authToken = document.getElementById('auth-token').value;
const reportId = document.getElementById('report-id').value;
if (!appId || !authToken || !reportId) {
addLogMessage('Veuillez remplir tous les champs requis.', 'warning');
return;
}
addLogMessage('Envoi du rapport PDF...', 'info');
const instance = await TcTcEmbed.initialize(authToken);
await instance.sendPDFReport(
appId,
[{ token: authToken }],
reportId
);
addLogMessage('Rapport PDF envoyé avec succès.', 'success');
} catch (error) {
addLogMessage('Erreur lors de l\'envoi du rapport PDF: ' + error.message, 'error');
}
});
document.getElementById('subscribe-event').addEventListener('click', function() {
if (embed) {
const eventType = document.getElementById('event-type').value;
if (!subscriptionActive) {
embed.subscribe(eventType, function(event) {
const eventOutput = document.getElementById('event-output');
eventOutput.querySelector('pre').innerHTML += JSON.stringify(event, null, 2) + '\n';
});
subscriptionActive = true;
addLogMessage(`Souscription à l'événement ${eventType} activée.`, 'success');
}
} else {
addLogMessage('Aucun embed chargé pour souscrire à un événement.', 'warning');
}
});
document.getElementById('unsubscribe-event').addEventListener('click', function() {
if (embed && subscriptionActive) {
const eventType = document.getElementById('event-type').value;
embed.unsubscribe(eventType);
subscriptionActive = false;
addLogMessage(`Souscription à l'événement ${eventType} désactivée.`, 'success');
}
});
</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 SendPDFReport</h1>
<ul class="timeline">
<li class="timeline-item">
<div class="timeline-item-header" onclick="toggleContent(this)">
<h2>Ajouter le script du SDK</h2>
</div>
<div class="timeline-item-content">
<p>Incluez le script SDK dans votre page HTML pour permettre l'utilisation des fonctionnalités de Toucan Toco :</p>
<pre><code class="language-javascript" id="code1">
<script src="https://toucan-customer-trial.toucantoco.com/scripts/tctc-sdk.js"></script>
</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>Récupérer les informations nécessaires</h2>
</div>
<div class="timeline-item-content">
<p>La personne souhaitant utiliser la méthode <strong>sendPDFReport</strong> devra d'abord collecter les informations suivantes avant d'exécuter le script :</p>
<ul>
<li><strong>adminToken</strong>: récupérez ce token auprès de l'administrateur de l'application ou de l'environnement sécurisé qui le stocke.</li>
<li><strong>smallAppId</strong>: obtenez l'ID de l'application via le système de gestion de Toucan Toco ou depuis une base de données de configuration.</li>
<li><strong>userTokens</strong>: recueillez les tokens des utilisateurs, qui peuvent être stockés dans un fichier de configuration, une base de données, ou transmis par un autre service.</li>
<li><strong>reportIds</strong>: récupérez les IDs des rapports à envoyer depuis le référentiel de rapports ou une base de données associée.</li>
</ul>
</div>
</li>
<li class="timeline-item">
<div class="timeline-item-header" onclick="toggleContent(this)">
<h2>Initialiser le SDK </h2>
</div>
<div class="timeline-item-content">
<p>Utilisez l'adminToken pour initialiser l'instance du SDK. La méthode est asynchrone, alors assurez-vous de la placer dans une fonction async.</p>
<pre><code class="language-javascript" id="code3">
const instance = await TcTcEmbed.initialize(adminToken);
</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>Récuperer les tokens utilisateurs</h2>
</div>
<div class="timeline-item-content">
<p>Récupérez les <strong>userTokens</strong> et préparez un tableau d'utilisateurs pour l'envoi. Ici, nous supposons que ces tokens ont été récupérés et stockés dans un tableau.
</p>
<pre><code class="language-javascript" id="code4">
const my_users = userTokens.map(token => ({ token }));
</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>Envoyer les rapports PDF</h2>
</div>
<div class="timeline-item-content">
<p>Parcourez la liste des reportIds (préalablement récupérés) et appelez la méthode sendPDFReport pour chaque rapport.</p>
<pre><code class="language-javascript" id="code5">
for (const reportId of reportIds) {
try {
await instance.sendPDFReport(
smallAppId, // ID de l'application
my_users, // Tableau des utilisateurs
reportId // ID du rapport
);
console.log(`Rapport ${reportId} envoyé avec succès`);
} catch (error) {
console.error(`Échec de l'envoi du rapport ${reportId} :`, error);
}
}
</code></pre>
<button class="copy-btn" data-clipboard-target="#code5">Copier</button>
</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>