forked from jonkemp/mediaquery-text
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
58 lines (47 loc) · 1.63 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
'use strict';
var cssom = require('cssom'),
os = require('os');
/**
* Returns Media Query text for a CSS source.
*
* @param {String} css source
* @api public
*/
module.exports = function (css) {
var rules = cssom.parse(css).cssRules || [],
queries = [],
queryString,
style,
property,
value,
important,
result;
rules.forEach(function (query) {
/* CSS types
STYLE: 1,
IMPORT: 3,
MEDIA: 4,
FONT_FACE: 5,
*/
if (query.type === cssom.CSSMediaRule.prototype.type) {
queryString = [];
queryString.push(os.EOL + '@media ' + query.media[0] + ' {');
query.cssRules.forEach(function (rule) {
if (rule.type === cssom.CSSStyleRule.prototype.type || rule.type === cssom.CSSFontFaceRule.prototype.type) {
queryString.push(' ' + (rule.type === cssom.CSSStyleRule.prototype.type ? rule.selectorText : '@font-face') + ' {');
for (style = 0; style < rule.style.length; style++) {
property = rule.style[style];
value = rule.style[property];
important = rule.style._importants[property] ? ' !important' : '';
queryString.push(' ' + property + ': ' + value + important + ';');
}
queryString.push(' }');
}
});
queryString.push('}');
result = queryString.length ? queryString.join(os.EOL) + os.EOL : '';
queries.push(result);
}
});
return queries.join(os.EOL);
};