-
Notifications
You must be signed in to change notification settings - Fork 0
/
graph2.html
631 lines (564 loc) · 21.1 KB
/
graph2.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
<!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">
<style>
/* Background with gradient */
..export_pdf_report {
font-family: 'Montserrat', sans-serif;
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;
border-radius: 20px;
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
position: relative; /* Added for positioning the image */
text-align: center;
}
/* Title */
.export_pdf_report .title {
font-size: 36px;
font-weight: 700;
color: #3B625B;
margin-bottom: 30px;
}
/* Form Group */
.export_pdf_report .form-group {
margin-bottom: 20px;
text-align: left;
}
.export_pdf_report .form-group label {
display: block;
font-weight: 700;
color: #3B625B;
margin-bottom: 5px;
}
.export_pdf_report .form-group input {
border-radius: 10px;
border: 1px solid #3B625B;
padding: 10px;
width: calc(100% - 22px);
text-align: left;
background-color: #E9ECEF;
color: #3B625B;
}
.export_pdf_report .form-group input:focus {
border-color: #3B625B;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.export_pdf_report .form-group button {
padding: 10px 20px;
background-color: #3B625B;
color: #fff;
border: none;
border-radius: 10px;
cursor: pointer;
font-size: 1rem;
display: block;
margin: 20px auto 0;
transition: background-color 0.3s;
}
.export_pdf_report .form-group button:hover {
background-color: #81B1BD;
}
/* 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>
</head>
<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 du SendPDFReport </h1>
<div class="form-group">
<label for="adminToken">Token ADMIN :</label>
<input type="text" id="adminToken" placeholder="Entrez le token ADMIN">
</div>
<div class="form-group">
<label for="smallAppId">ID de l'Application :</label>
<input type="text" id="smallAppId" placeholder="Entrez l'ID de l'application">
</div>
<div class="form-group">
<label for="userTokens">Tokens des Utilisateurs (séparés par des virgules) :</label>
<input type="text" id="userTokens" placeholder="Entrez les tokens des utilisateurs séparés par des virgules">
</div>
<div class="form-group">
<label for="reportIds">IDs des Rapports (séparés par des virgules) :</label>
<input type="text" id="reportIds" placeholder="Entrez les IDs des rapports séparés par des virgules">
</div>
<div class="form-group">
<button onclick="sendPDF()">Envoyer les Rapports PDF</button>
</div>
</div>
<script src="https://toucan-customer-trial.toucantoco.com/scripts/tctc-sdk.js"></script>
<script>
async function sendPDF() {
// Récupérer les valeurs des champs de saisie
const adminToken = document.getElementById('adminToken').value.trim();
const smallAppId = document.getElementById('smallAppId').value.trim();
const userTokens = document.getElementById('userTokens').value.trim().split(',').map(token => token.trim());
const reportIds = document.getElementById('reportIds').value.trim().split(',').map(id => id.trim());
if (!adminToken || !smallAppId || !userTokens.length || !reportIds.length) {
alert('Veuillez remplir tous les champs requis.');
return;
}
try {
// Initialiser l'instance TcTcEmbed avec le token ADMIN saisi
const instance = await TcTcEmbed.initialize(adminToken);
// Définir les utilisateurs avec leurs tokens
const my_users = userTokens.map(token => ({ token }));
// Envoyer chaque rapport PDF
for (const reportId of reportIds) {
try {
await instance.sendPDFReport(
smallAppId, // smallAppId
my_users,
reportId
);
console.log(`Rapport ${reportId} envoyé avec succès`);
} catch (error) {
console.error(`Échec de l'envoi du rapport ${reportId} :`, error);
}
}
alert('Les rapports ont été envoyés avec succès.');
} catch (error) {
console.error('Échec de l\'initialisation de TcTcEmbed :', error);
alert('Échec de l\'initialisation de TcTcEmbed.');
}
}
</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>
<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/OJeXage" target="_blank">CodePen </a> pour accéder à l'entièreté de la démonstration.
Vous pouvez également la documentation Toucan traitant du <a href="https://docs-v3.toucantoco.com/visualizations-and-layouts/embedding/embed-sdk#sendpdfreport" target="_blank">sendPDFReport </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>