-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmarcssist.js
455 lines (376 loc) · 9.62 KB
/
marcssist.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
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
/**
* Turn a JavaScript object with CSS styles into a class in a stylesheet.
*
* @example
*
* var mx = window.marcssist;
* var buttonClass = mx.style({
* color: "yellow",
* padding: 10,
* ":hover" { color: "black" }
* });
* myDiv.classList.add(buttonClass);
* // .mx__0 { color: yellow; padding: 10px }
* // .mx__0:hover { color: black }
*/
;(function () {
"use strict";
/**
* Reuse the same style sheet for all instances.
* @type {CSSStyleSheet?}
*/
var sharedSheet = null;
/**
* Reuse the same detected vendor prefix for all instances.
* @type {string?}
*/
var currentPrefix = null;
/**
* Properties assumed to need a vendor prefix. Properties should only be added
* to these lists if there are at least two separate implementations in recent
* versions of major browsers, where at least one of them are prefixed.
*
* @type {object}
*/
var prefixedProps = {
animation: true,
animationDelay: true,
animationDirection: true,
animationDuration: true,
animationFillMode: true,
animationIterationCount: true,
animationName: true,
animationPlayState: true,
animationTimingFunction: true,
appearance: true,
backfaceVisibility: true,
columns: true,
columnCount: true,
columnFill: true,
columnGap: true,
columnRule: true,
columnRuleColor: true,
columnRuleStyle: true,
columnRuleWidth: true,
columnSpan: true,
columnWidth: true,
alignContent: true,
alignItems: true,
alignSelf: true,
filter: true,
flex: true,
flexBasis: true,
flexDirection: true,
flexGrow: true,
flexShrink: true,
flexWrap: true,
justifyContent: true,
justifySelf: true,
fontSmoothing: true,
hyphens: true,
lineBoxContain: true,
lineBreak: true,
lineClamp: true,
order: true,
perspective: true,
perspectiveOrigin: true,
transform: true,
transformOrigin: true,
transformStyle: true,
userFocus: true,
userInput: true,
userModify: true,
userSelect: true
};
/**
* Values assumed to need a vendor prefix, if used with any of the properties
* specified in the object.
* @type {object}
*/
var prefixedValues = {
flex: { display: true },
"inline-flex": { display: true }
};
/**
* Properties that accept a number but do not need a unit.
* @type {object}
*/
var unitlessProps = {
columnCount: true,
fillOpacity: true,
flex: true,
flexGrow: true,
flexShrink: true,
fontWeight: true,
lineClamp: true,
lineHeight: true,
opacity: true,
order: true,
orphans: true,
widows: true,
zIndex: true,
zoom: true
};
/**
* Global id to keep class names unique.
* @type {number}
*/
var classId = 0;
/**
* If vendor prefixing is enabled, the current vendor prefix is automatically
* detected, and then added to the properties and values specified in
* |prefixedProps| and |prefixedValues|.
*
* If auto units is enabled, any property value that is a number will be
* converted to a string with the specified unit appended.
*
* @constructor
*
* @param {object} options
* @param {object} options.prefix=true Add vendor prefixes
* @param {object} options.unit=px Unit to add to numeric values
*/
function Marcssist(options) {
// Don't require |new|
if (!(this instanceof Marcssist)) {
return new Marcssist(options);
}
options || (options = {});
options.prefix = !options.hasOwnProperty("prefix") ? true : !!options.prefix;
options.unit = options.hasOwnProperty("unit") ? options.unit : "px";
/**
* Also cached as |sharedSheet|.
* @type {CSSStyleSheet}
*/
this._sheet = null;
/**
* @type {string}
*/
this._prefix = null;
/**
* References the list of properties to prefix, for temporary patching of
* missing prefixes.
* @type {object}
*/
this._prefixedProps = prefixedProps;
/**
* References the list of values to prefix, for temporary patching of
* missing prefixes.
* @type {object}
*/
this._prefixedValues = prefixedValues;
/**
* Insert one or more style objects as a class in a style sheet.
*
* @param {array.object|object} style
* @param {string} selector= Optional parent selector
* @returns {string}
*/
this.style = function (styles, selector) {
if (styles == null) return "";
if (this._sheet == null) {
this._sheet = sharedSheet = (sharedSheet || createStyleSheet());
}
if (options.prefix && this._prefix == null) {
this._prefix = currentPrefix = (currentPrefix || getPrefix());
}
var className = "mx__"+(classId++);
selector = (selector ? selector+" ." : ".") + className;
var rules = rulesFromStyles(selector, styles);
if (options.prefix || options.unit !== "") {
rules.forEach(function(set) {
if (options.unit !== "") {
addUnit(set[1], options.unit);
}
if (options.prefix) {
addPrefix(set[1], currentPrefix);
}
});
}
insertRules(rules, this._sheet);
return className;
};
}
/**
* @returns {string}
*/
function getPrefix() {
var dummyStyle = getComputedStyle(document.documentElement);
for (var i = dummyStyle.length, prop; i > 0; i--) {
prop = dummyStyle[i];
if (prop[0] === "-") {
return prop.split("-")[1];
}
}
return "";
}
/**
* @returns {CSSStyleSheet}
*/
function createStyleSheet() {
if (document.head == null) {
throw new Error("Can't add style sheet before <head> is available");
}
var ss = document.createElement("style");
ss.id = "mx__styles";
document.head.appendChild(ss);
return ss.sheet;
}
/**
* Flattens any nested selector combinators, returning CSS rule sets
* as selector/style vectors.
*
* @param {string} selector Base CSS selector
* @param {object|array.object} styles CSS property/values declaration blocks
* @returns {array.array}
*/
function rulesFromStyles(selector, styles) {
if (!Array.isArray(styles)) styles = [styles];
var prop, value, style = {}, rules = [];
styles = flatten(styles);
styles.forEach(function(block) {
for (prop in block) {
value = block[prop];
// Found an object or array, recurse with property added to selector.
if (isPlainObject(value) || Array.isArray(value)) {
rules = rules.concat(
rulesFromStyles(combineSelectors(selector, prop), value)
);
} else {
if (prop === "content") value = "'"+value+"'";
style[prop] = value;
}
}
});
rules.push([ selector, style ]);
return rules;
}
/**
* Add rule sets to stylesheet.
*
* @param {array} rules
*/
function insertRules(rules, sheet) {
rules.forEach(function(rule) {
var pairs = [], prop;
for (prop in rule[1]) {
pairs.push(hyphenate(prop) + ":" + rule[1][prop]);
}
if (pairs.length > 0) {
sheet.insertRule(rule[0] + "{" + pairs.join(";") + "}", 0);
}
});
}
/**
* Pseudo classes/elements and attribute selectors should immediately
* follow the previous selector, others should be space separated.
*
* @param {string} parent
* @param {string} child
* @returns {string}
*/
function combineSelectors(parent, child) {
var pseudoRe = /^[:\[]/;
var parents = parent.split(","), children = child.split(",");
return parents.map(function(parent) {
return children.map(function(part) {
var separator = pseudoRe.test(part) ? "" : " ";
return parent + separator + part;
}).join(",");
}).join(",");
}
/**
* Add vendor prefixes to style block.
*
* @param {object} style
* @param {string} prefix
* @returns {object} same object as argument
*/
function addPrefix(style, prefix) {
var value, prop;
for (prop in style) {
value = style[prop];
if (prefixedProps[prop]) {
style[capitalize(prefix)+capitalize(prop)] = value;
}
if (prefixedValues[value] && prefixedValues[value][prop]) {
if (supports(prop, value)) {
// No change in object needed, and no check needed next time
prefixedValues[value][prop] = false;
} else {
style[prop] = "-"+prefix+"-"+value;
}
}
}
return style;
}
/**
* Add unit to numeric values not in |unitlessProps|.
*
* @param {object} style
* @param {string} unit
* @returns {object} same object as argument
*/
function addUnit(style, unit) {
var value, prop;
for (prop in style) {
value = style[prop] + "";
if (!isNaN(value) && !unitlessProps[prop]) {
value = value + unit;
}
style[prop] = value;
}
return style;
}
var style = document.createElement("div").style;
function supports(prop, value) {
style[prop] = "";
style[prop] = value;
return !!style[prop];
}
function hyphenate(str) {
return str.replace(/[A-Z]/g, function($0) { return '-'+$0.toLowerCase(); });
}
function capitalize(str) {
return str[0].toUpperCase() + str.slice(1);
}
/**
* Check if an object is an object, and has the original toString method.
* If toString is changed, the caller most likely wants the string value
* and not the object properties.
*
* @param {*} obj
* @returns {boolean}
*/
function isPlainObject(obj) {
return obj === Object(obj)
&& Object.prototype.toString === obj.toString;
}
/**
* Recursively flatten an array.
*
* @param {Array} xs
* @param {Array} acc=
*/
function flatten(xs, acc) {
acc || (acc = []);
for (var i = 0, len = xs.length, x; i < len; i++) {
x = xs[i];
if (Array.isArray(x)) flatten(x, acc);
else acc.push(x);
}
return acc;
}
// Expose constructor/factory.
var marcssist = Marcssist;
// For convenience, also expose the main method from an instance with the
// default options.
marcssist.style = marcssist().style;
if (typeof module !== "undefined" && typeof exports === "object") {
// Simplified CommonJS/Node
module.exports = marcssist;
} else {
// Global
window.marcssist = marcssist;
}
})();