-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
436 lines (349 loc) · 7.91 KB
/
index.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
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
//
// # class-manipulator
//
// A chainable wrapper API for manipulating a DOM Element's classes or class strings.
//
/* global module */
//
// ## Public API
//
//
// **list(element) / list(classString)**
//
// Creates a chainable API for manipulating an element's list of classes. No changes
// are made to the DOM Element unless `.apply()` is called.
//
// DOMElement|string -> object
//
function list (element) {
element = typeof element === "object" ? element : dummy(element);
var classes = parse(element), controls;
//
// **.apply()**
//
// Applies class list to the source element.
//
// void -> object
//
function apply () {
element.setAttribute("class", toString());
return controls;
}
//
// **.add(name)**
//
// Adds a class to the element's list of class names.
//
// string -> object
//
function add (name) {
if (hasSpaces(name)) {
return addMany(classStringToArray(name));
}
if (!has(name)) {
classes.push(name);
}
return controls;
}
//
// **.addMany(names)**
//
// Adds many classes to the list at once.
//
// [string] -> object
//
function addMany (newClasses) {
if (!Array.isArray(newClasses)) {
return add(newClasses);
}
newClasses.forEach(add);
return controls;
}
//
// **.has(name)**
//
// Checks whether a class is in the element's list of class names.
//
// string -> boolean
//
function has (name) {
if (hasSpaces(name)) {
return hasAll(name);
}
return classes.indexOf(name) >= 0;
}
//
// **.hasSome(names)**
//
// Checks whether the list contains at least one of the supplied classes.
//
// [string] -> boolean
//
function hasSome (names) {
return Array.isArray(names) ?
names.some(has) :
hasSome(classStringToArray(names));
}
//
// **.hasAll(names)**
//
// Checks whether the list contains all of the supplied classes.
//
// [string] -> boolean
//
function hasAll (names) {
return Array.isArray(names) ?
names.every(has) :
hasAll(classStringToArray(names));
}
//
// **.remove(name)**
//
// Removes a class from the element's list of class names.
//
// string -> object
//
function remove (name) {
if (hasSpaces(name)) {
return removeMany(classStringToArray(name));
}
if (has(name)) {
classes.splice(classes.indexOf(name), 1);
}
return controls;
}
//
// **.removeMany(names)**
//
// Removes many classes from the list at once.
//
// [string] -> object
//
function removeMany (toRemove) {
if (!Array.isArray(toRemove)) {
return remove(toRemove);
}
toRemove.forEach(remove);
return controls;
}
//
// **.toggle(name)**
//
// Removes a class from the class list when it's present or adds it to the list when it's not.
//
// string -> object
//
function toggle (name) {
if (hasSpaces(name)) {
return toggleMany(classStringToArray(name));
}
return (has(name) ? remove(name) : add(name));
}
//
// **.toggleMany(names)**
//
// Toggles many classes at once.
//
// [string] -> object
//
function toggleMany (names) {
if (Array.isArray(names)) {
names.forEach(toggle);
return controls;
}
return toggleMany(classStringToArray(names));
}
//
// **.toArray()**
//
// Creates an array containing all of the list's class names.
//
// void -> [string]
//
function toArray () {
return classes.slice();
}
//
// **.toString()**
//
// Returns a string containing all the classes in the list separated by a space character.
//
function toString () {
return classes.join(" ");
}
//
// **.copyTo(otherElement)**
//
// Creates a new empty list for another element and copies the source element's class list to it.
//
// DOM Element -> object
//
function copyTo (otherElement) {
return list(otherElement).clear().addMany(classes);
}
//
// **.clear()**
//
// Removes all classes from the list.
//
// void -> object
//
function clear () {
classes.length = 0;
return controls;
}
//
// **.filter(fn)**
//
// Removes those class names from the list that fail a predicate test function.
//
// (string -> number -> object -> boolean) -> object
//
function filter (fn) {
classes.forEach(function (name, i) {
if (!fn(name, i, controls)) {
remove(name);
}
});
return controls;
}
//
// **.sort([fn])**
//
// Sorts the names in place. A custom sort function can be applied optionally. It must have
// the same signature as JS Array.prototype.sort() callbacks.
//
// void|function -> object
//
function sort (fn) {
classes.sort(fn);
return controls;
}
//
// **.size()**
//
// Returns the number of classes in the list.
//
// void -> number
//
function size () {
return classes.length;
}
controls = {
add: add,
addMany: addMany,
has: has,
hasSome: hasSome,
hasAll: hasAll,
remove: remove,
removeMany: removeMany,
toggle: toggle,
toggleMany: toggleMany,
apply: apply,
clear: clear,
copyTo: copyTo,
toArray: toArray,
toString: toString,
filter: filter,
sort: sort,
size: size
};
return controls;
}
//
// **add(element, name)**
//
// Adds a class to a DOM Element.
//
// DOM Element -> string -> object
//
function add (element, name) {
return list(element).add(name).apply();
}
//
// **remove(element, name)**
//
// Removes a class from a DOM Element.
//
// DOM Element -> string -> object
//
function remove (element, name) {
return list(element).remove(name).apply();
}
//
// **toggle(element, name)**
//
// Removes a class from a DOM Element when it has the class or adds it when the element doesn't
// have it.
//
// DOMElement -> string -> object
//
function toggle (element, name) {
return list(element).toggle(name).apply();
}
//
// **has(element, name)**
//
// Checks whether a DOM Element has a class.
//
// DOMElement -> string -> boolean
//
function has (element, name) {
return list(element).has(name);
}
//
// ## Exported functions
//
module.exports = {
add: add,
remove: remove,
toggle: toggle,
has: has,
list: list
};
//
// ## Private functions
//
//
// Extracts the class names from a DOM Element and returns them in an array.
//
// DOMElement -> [string]
//
function parse (element) {
return classStringToArray(element.getAttribute("class") || "");
}
//
// string -> [string]
//
function classStringToArray (classString) {
return ("" + classString).replace(/\s+/, " ").trim().split(" ").filter(stringNotEmpty);
}
//
// string -> boolean
//
function stringNotEmpty (str) {
return str !== "";
}
//
// string -> boolean
//
function hasSpaces (str) {
return !!str.match(/\s/);
}
//
// Creates a dummy DOMElement for when we don't have an actual one for a list.
//
// string -> object
//
function dummy (classList) {
if (typeof classList !== "string") {
throw new Error("Function list() expects an object or string as its argument.");
}
var attributes = {
"class": "" + classStringToArray(classList).join(" ")
};
return {
setAttribute: function (name, value) { attributes[name] = value; },
getAttribute: function (name) { return attributes[name]; }
};
}