-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
80 lines (80 loc) · 2.64 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="styles/all.css">
</head>
<body>
<header>
<a href="#" class="js-toggler" data-toggler-id="menu" data-toggler-group="menu">open</a>
<div class="header-content js-item-toggler" data-toggler-itemid="menu" data-toggler-group="menu">content</div>
</header>
<section>
<p>
Ce module a été initialisé, il suffit de regarder la console pour le voir <br>
<span class="js-module" data-module="test test-no-load" data-module-test--lol1="très lol" data-module-test--lol2="mdr" data-module-test-no-load--yolo="yep">module test</span>
<span class="js-module" data-module="test" data-module-test--lol1="hyper lol" data-module-test--lol2="megamdr">module test</span>
</p>
<p>
Ce module permet de charger les titres les plus prêtés en bibliothèque à Paris via l'opendata <br>
Il utilise plusieurs dépendences :
</p>
<ul>
<li>get-services
<ul>
<li>ajax (jQuery)
<ul>
<li>ajax-load (pas obligatoire)</li>
</ul>
</li>
</ul>
</li>
<li>getTpl</li>
<li>Module</li>
<!--<li>Toggler (jQuery)</li>-->
</ul>
<p>
<span class="js-module" data-module="popular-books">load popular books</span>
</p>
<table class="table-pop" id="loadpopularbooks"></table>
</section>
<script
src="https://code.jquery.com/jquery-3.1.1.min.js"
integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous"></script>
<script>
var jsonendpoint = {
popular_books: {
url: 'https://opendata.paris.fr/api/records/1.0/search/?',
method: 'get',
params: {
dataset: 'titres-les-plus-pretes-bibliotheques-specialisees-en-2014',
facet: ['auteur', 'editeur', 'collection', 'categorie_documentaire']
}
}
};
</script>
<script type="text/template" id="tpl_popularbooks_th">
<tr>
<th>titre</th>
<th>annee edition</th>
<th>categorie documentaire</th>
<th>editeur</th>
<th>collection</th>
<th>nb prets 2014</th>
</tr>
</script>
<script type="text/template" id="tpl_popularbooks">
<tr>
<td>{{ titre }}</td>
<td>{{annee_edition }}</td>
<td>{{ categorie_documentaire }}</td>
<td>{{ editeur }}</td>
<td>{{ collection }}</td>
<td>{{ nb_prets_2014 }}</td>
</tr>
</script>
<script src="scripts/bundle.js"></script>
</body>
</html>