-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathm-class-list-debug.esm.js
124 lines (101 loc) · 2.74 KB
/
m-class-list-debug.esm.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
/* ================================================
DON'T MANUALLY EDIT THIS FILE
================================================ */
/*
* mClassList
* https://github.com/anseki/m-class-list
*
* Copyright (c) 2021 anseki
* Licensed under the MIT license.
*/
function normalize(token) {
return (token + '').trim();
} // Not `||`
function applyList(list, element) {
element.setAttribute('class', list.join(' '));
}
function _add(list, element, tokens) {
if (tokens.filter(function (token) {
if (!(token = normalize(token)) || list.indexOf(token) !== -1) {
return false;
}
list.push(token);
return true;
}).length) {
applyList(list, element);
}
}
function _remove(list, element, tokens) {
if (tokens.filter(function (token) {
var i;
if (!(token = normalize(token)) || (i = list.indexOf(token)) === -1) {
return false;
}
list.splice(i, 1);
return true;
}).length) {
applyList(list, element);
}
}
function _toggle(list, element, token, force) {
var i = list.indexOf(token = normalize(token));
if (i !== -1) {
if (force) {
return true;
}
list.splice(i, 1);
applyList(list, element);
return false;
}
if (force === false) {
return false;
}
list.push(token);
applyList(list, element);
return true;
}
function _replace(list, element, token, newToken) {
var i;
if (!(token = normalize(token)) || !(newToken = normalize(newToken)) || token === newToken || (i = list.indexOf(token)) === -1) {
return;
}
list.splice(i, 1);
if (list.indexOf(newToken) === -1) {
list.push(newToken);
}
applyList(list, element);
}
function mClassList(element) {
return !mClassList.ignoreNative && element.classList || function () {
var list = (element.getAttribute('class') || '').trim().split(/\s+/).filter(function (token) {
return !!token;
}),
ins = {
length: list.length,
item: function item(i) {
return list[i];
},
contains: function contains(token) {
return list.indexOf(normalize(token)) !== -1;
},
add: function add() {
_add(list, element, Array.prototype.slice.call(arguments));
return mClassList.methodChain ? ins : void 0;
},
remove: function remove() {
_remove(list, element, Array.prototype.slice.call(arguments));
return mClassList.methodChain ? ins : void 0;
},
toggle: function toggle(token, force) {
return _toggle(list, element, token, force);
},
replace: function replace(token, newToken) {
_replace(list, element, token, newToken);
return mClassList.methodChain ? ins : void 0;
}
};
return ins;
}();
}
mClassList.methodChain = true;
export default mClassList;