-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
213 lines (165 loc) · 6.75 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
$( document ).ready(function() {
// Récupération des différents tags déclarés, et création des éléments du menu Tags
let tags = getDeclaredTags('.apps');
tags.sort(function(a,b) {
return sansAccent(a) < sansAccent(b) ? -1 : 1;
});
let tagElements = '';
tags.forEach(function(item) {
tagElements += '<li data-tag="'+ item + '"><a href="#">'+ item + '</a></li>';
});
$('.filters.tags ul').append(tagElements);
/* Filtre CATEGORIES et TAGS */
$('.filters h3 > a').on('click', function(e) {
e.preventDefault();
$(this).closest('.filters').toggleClass('opened');
});
const applyFilterCategories = function() {
$('.app.categories-filter-off').removeClass('categories-filter-off filter-off');
let selectedElements = $('.filters.categories li.selected a');
if (selectedElements.length > 0) {
let selectedCategories = [];
selectedElements.each(function(index, item) {
selectedCategories.push( item.attributes.class.value );
});
$('.app')
.filter(function(index) {
return selectedCategories.indexOf( $(this).data('category') ) === -1;
})
.addClass('categories-filter-off filter-off')
.find('.app-details').removeClass('opened');
}
};
const applyFilterTags = function() {
$('.app.tags-filter-off').removeClass('tags-filter-off filter-off');
let selectedElements = $('.filters.tags li.selected a');
if (selectedElements.length > 0) {
let selectedTags = [];
selectedElements.each(function(index, item) {
selectedTags.push( item.innerText );
});
$('.app')
.filter(function(index) {
let tags = getDeclaredTags($(this));
return arraysIntersection(selectedTags, tags).length === 0;
})
.addClass('tags-filter-off filter-off')
.find('.app-details').removeClass('opened');
}
};
const updateAppCount = function() {
$('.apps').attr('apps-count', $('.app').not('.filter-off').length);
};
const applyFilters = function() {
// Categories
applyFilterCategories();
// Tags
applyFilterTags();
// Sert à contrecarrer l'affichage de Chrome lorsqu'il n'y a que deux applications
updateAppCount();
};
updateAppCount();
$('.filters li a').on('click', function(e) {
e.preventDefault();
if ($(this).hasClass('tout')) {
// Cas particulier : Filtre "tout voir"
$('.filters.categories li').removeClass('selected all-selected');
$(this).closest('li').toggleClass('all-selected');
} else if ($(this).closest('.filters').hasClass('categories')) {
$('.filters.categories li a.tout').closest('li').removeClass('all-selected');
// Cas particulier des catégories : sélection exclusive
if (! $(this).closest('li').hasClass('selected')) {
// Si on ne déselectionne pas la catégorie cliquée, on déselectionne toutes les autres
$('.filters.categories li').removeClass('selected');
}
$(this).closest('li').toggleClass('selected');
if ($('.filters.categories li.selected').length === 0) {
$('.filters.categories li a.tout').closest('li').attr('class', 'all-selected');
}
} else {
// Cas général (tags)
$(this).closest('li').toggleClass('selected');
}
applyFilters();
});
$('.app-details-toggle').on('click', function(e) {
e.preventDefault();
$(this).closest('.app-content').find('.app-details').toggleClass('opened');
});
$('.app-details-close').on('click', function(e) {
e.preventDefault();
$(this).closest('.app-content').find('.app-details').removeClass('opened');
});
/* TITRES des applications --> liens (si aucun n'a été créé manuellement) */
$('.app-header h2').each(function(index, item) {
const hasAlreareadyALinkChild = $('a', $(this)).length > 0;
const appLinks = $(this).closest('.app').find('.app-content > .app-links a');
if (!hasAlreareadyALinkChild && (appLinks.length > 0)) {
const linkHref = $(appLinks[0]).attr('href');
var link = $('<a/>');
link.attr('target', "_blank")
link.attr('href', linkHref);
$(this).contents().wrap(link);
}
});
/* TAGs cliquables */
$('.app-tags li').each(function(index, item) {
var link = $('<a href="#" />');
$(this).contents().wrap(link);
});
$('.app-tags li > a').on('click', function(event) {
event.preventDefault();
$('.filters.tags').removeClass('opened').addClass('opened');
$('.filters.tags li').removeClass('selected');
$('.filters.tags li[data-tag='+ $(this).text() +']').addClass('selected');
applyFilters();
});
});
function getDeclaredTags(selector) {
let tags = [];
$('.app-tags li', selector).each(function(index, item) {
const tag = item.innerText;
if (tags.indexOf(tag) === -1) {
tags.push(tag);
}
});
return tags;
}
function arraysIntersection(array1, array2) {
return array1.filter(function(n) {
return array2.indexOf(n) !== -1;
});
}
function sansAccent(text) {
var i, n = text.length-1;
var result = "";
var c, lower, isLower;
for (i=0; i<=n; i++) {
c = text.charAt(i);
lower = c.toLowerCase();
isLower = c === lower;
if (String("àáâãäå").indexOf(lower)>=0) {
c = "a";
} else if (String("èéêë").indexOf(lower)>=0) {
c = "e";
} else if (String("ìíïî").indexOf(lower)>=0) {
c = "i";
} else if (String("ðòóôõö").indexOf(lower)>=0) {
c = "o";
} else if (String("ùúüû").indexOf(lower)>=0) {
c = "u";
} else if (String("ýÿ").indexOf(lower)>=0) {
c = "y";
} else if (String("ñ").indexOf(lower)>=0) {
c = "n";
} else if (String("ç").indexOf(lower)>=0) {
c = "c";
} else if (String("ž").indexOf(lower)>=0) {
c = "z";
} else if (String("š").indexOf(lower)>=0) {
c = "s";
}
result += isLower ? c : c.toUpperCase();
}
return result;
}