mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 02:07:20 -04:00
336 lines
35 KiB
JavaScript
336 lines
35 KiB
JavaScript
|
'use strict';
|
||
|
|
||
|
exports.__esModule = true;
|
||
|
|
||
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
||
|
|
||
|
var defaultRaw = {
|
||
|
colon: ': ',
|
||
|
indent: ' ',
|
||
|
beforeDecl: '\n',
|
||
|
beforeRule: '\n',
|
||
|
beforeOpen: ' ',
|
||
|
beforeClose: '\n',
|
||
|
beforeComment: '\n',
|
||
|
after: '\n',
|
||
|
emptyBody: '',
|
||
|
commentLeft: ' ',
|
||
|
commentRight: ' '
|
||
|
};
|
||
|
|
||
|
function capitalize(str) {
|
||
|
return str[0].toUpperCase() + str.slice(1);
|
||
|
}
|
||
|
|
||
|
var Stringifier = function () {
|
||
|
function Stringifier(builder) {
|
||
|
_classCallCheck(this, Stringifier);
|
||
|
|
||
|
this.builder = builder;
|
||
|
}
|
||
|
|
||
|
Stringifier.prototype.stringify = function stringify(node, semicolon) {
|
||
|
this[node.type](node, semicolon);
|
||
|
};
|
||
|
|
||
|
Stringifier.prototype.root = function root(node) {
|
||
|
this.body(node);
|
||
|
if (node.raws.after) this.builder(node.raws.after);
|
||
|
};
|
||
|
|
||
|
Stringifier.prototype.comment = function comment(node) {
|
||
|
var left = this.raw(node, 'left', 'commentLeft');
|
||
|
var right = this.raw(node, 'right', 'commentRight');
|
||
|
this.builder('/*' + left + node.text + right + '*/', node);
|
||
|
};
|
||
|
|
||
|
Stringifier.prototype.decl = function decl(node, semicolon) {
|
||
|
var between = this.raw(node, 'between', 'colon');
|
||
|
var string = node.prop + between + this.rawValue(node, 'value');
|
||
|
|
||
|
if (node.important) {
|
||
|
string += node.raws.important || ' !important';
|
||
|
}
|
||
|
|
||
|
if (semicolon) string += ';';
|
||
|
this.builder(string, node);
|
||
|
};
|
||
|
|
||
|
Stringifier.prototype.rule = function rule(node) {
|
||
|
this.block(node, this.rawValue(node, 'selector'));
|
||
|
};
|
||
|
|
||
|
Stringifier.prototype.atrule = function atrule(node, semicolon) {
|
||
|
var name = '@' + node.name;
|
||
|
var params = node.params ? this.rawValue(node, 'params') : '';
|
||
|
|
||
|
if (typeof node.raws.afterName !== 'undefined') {
|
||
|
name += node.raws.afterName;
|
||
|
} else if (params) {
|
||
|
name += ' ';
|
||
|
}
|
||
|
|
||
|
if (node.nodes) {
|
||
|
this.block(node, name + params);
|
||
|
} else {
|
||
|
var end = (node.raws.between || '') + (semicolon ? ';' : '');
|
||
|
this.builder(name + params + end, node);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
Stringifier.prototype.body = function body(node) {
|
||
|
var last = node.nodes.length - 1;
|
||
|
while (last > 0) {
|
||
|
if (node.nodes[last].type !== 'comment') break;
|
||
|
last -= 1;
|
||
|
}
|
||
|
|
||
|
var semicolon = this.raw(node, 'semicolon');
|
||
|
for (var i = 0; i < node.nodes.length; i++) {
|
||
|
var child = node.nodes[i];
|
||
|
var before = this.raw(child, 'before');
|
||
|
if (before) this.builder(before);
|
||
|
this.stringify(child, last !== i || semicolon);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
Stringifier.prototype.block = function block(node, start) {
|
||
|
var between = this.raw(node, 'between', 'beforeOpen');
|
||
|
this.builder(start + between + '{', node, 'start');
|
||
|
|
||
|
var after = void 0;
|
||
|
if (node.nodes && node.nodes.length) {
|
||
|
this.body(node);
|
||
|
after = this.raw(node, 'after');
|
||
|
} else {
|
||
|
after = this.raw(node, 'after', 'emptyBody');
|
||
|
}
|
||
|
|
||
|
if (after) this.builder(after);
|
||
|
this.builder('}', node, 'end');
|
||
|
};
|
||
|
|
||
|
Stringifier.prototype.raw = function raw(node, own, detect) {
|
||
|
var value = void 0;
|
||
|
if (!detect) detect = own;
|
||
|
|
||
|
// Already had
|
||
|
if (own) {
|
||
|
value = node.raws[own];
|
||
|
if (typeof value !== 'undefined') return value;
|
||
|
}
|
||
|
|
||
|
var parent = node.parent;
|
||
|
|
||
|
// Hack for first rule in CSS
|
||
|
if (detect === 'before') {
|
||
|
if (!parent || parent.type === 'root' && parent.first === node) {
|
||
|
return '';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Floating child without parent
|
||
|
if (!parent) return defaultRaw[detect];
|
||
|
|
||
|
// Detect style by other nodes
|
||
|
var root = node.root();
|
||
|
if (!root.rawCache) root.rawCache = {};
|
||
|
if (typeof root.rawCache[detect] !== 'undefined') {
|
||
|
return root.rawCache[detect];
|
||
|
}
|
||
|
|
||
|
if (detect === 'before' || detect === 'after') {
|
||
|
return this.beforeAfter(node, detect);
|
||
|
} else {
|
||
|
var method = 'raw' + capitalize(detect);
|
||
|
if (this[method]) {
|
||
|
value = this[method](root, node);
|
||
|
} else {
|
||
|
root.walk(function (i) {
|
||
|
value = i.raws[own];
|
||
|
if (typeof value !== 'undefined') return false;
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (typeof value === 'undefined') value = defaultRaw[detect];
|
||
|
|
||
|
root.rawCache[detect] = value;
|
||
|
return value;
|
||
|
};
|
||
|
|
||
|
Stringifier.prototype.rawSemicolon = function rawSemicolon(root) {
|
||
|
var value = void 0;
|
||
|
root.walk(function (i) {
|
||
|
if (i.nodes && i.nodes.length && i.last.type === 'decl') {
|
||
|
value = i.raws.semicolon;
|
||
|
if (typeof value !== 'undefined') return false;
|
||
|
}
|
||
|
});
|
||
|
return value;
|
||
|
};
|
||
|
|
||
|
Stringifier.prototype.rawEmptyBody = function rawEmptyBody(root) {
|
||
|
var value = void 0;
|
||
|
root.walk(function (i) {
|
||
|
if (i.nodes && i.nodes.length === 0) {
|
||
|
value = i.raws.after;
|
||
|
if (typeof value !== 'undefined') return false;
|
||
|
}
|
||
|
});
|
||
|
return value;
|
||
|
};
|
||
|
|
||
|
Stringifier.prototype.rawIndent = function rawIndent(root) {
|
||
|
if (root.raws.indent) return root.raws.indent;
|
||
|
var value = void 0;
|
||
|
root.walk(function (i) {
|
||
|
var p = i.parent;
|
||
|
if (p && p !== root && p.parent && p.parent === root) {
|
||
|
if (typeof i.raws.before !== 'undefined') {
|
||
|
var parts = i.raws.before.split('\n');
|
||
|
value = parts[parts.length - 1];
|
||
|
value = value.replace(/[^\s]/g, '');
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
return value;
|
||
|
};
|
||
|
|
||
|
Stringifier.prototype.rawBeforeComment = function rawBeforeComment(root, node) {
|
||
|
var value = void 0;
|
||
|
root.walkComments(function (i) {
|
||
|
if (typeof i.raws.before !== 'undefined') {
|
||
|
value = i.raws.before;
|
||
|
if (value.indexOf('\n') !== -1) {
|
||
|
value = value.replace(/[^\n]+$/, '');
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
});
|
||
|
if (typeof value === 'undefined') {
|
||
|
value = this.raw(node, null, 'beforeDecl');
|
||
|
}
|
||
|
return value;
|
||
|
};
|
||
|
|
||
|
Stringifier.prototype.rawBeforeDecl = function rawBeforeDecl(root, node) {
|
||
|
var value = void 0;
|
||
|
root.walkDecls(function (i) {
|
||
|
if (typeof i.raws.before !== 'undefined') {
|
||
|
value = i.raws.before;
|
||
|
if (value.indexOf('\n') !== -1) {
|
||
|
value = value.replace(/[^\n]+$/, '');
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
});
|
||
|
if (typeof value === 'undefined') {
|
||
|
value = this.raw(node, null, 'beforeRule');
|
||
|
}
|
||
|
return value;
|
||
|
};
|
||
|
|
||
|
Stringifier.prototype.rawBeforeRule = function rawBeforeRule(root) {
|
||
|
var value = void 0;
|
||
|
root.walk(function (i) {
|
||
|
if (i.nodes && (i.parent !== root || root.first !== i)) {
|
||
|
if (typeof i.raws.before !== 'undefined') {
|
||
|
value = i.raws.before;
|
||
|
if (value.indexOf('\n') !== -1) {
|
||
|
value = value.replace(/[^\n]+$/, '');
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
return value;
|
||
|
};
|
||
|
|
||
|
Stringifier.prototype.rawBeforeClose = function rawBeforeClose(root) {
|
||
|
var value = void 0;
|
||
|
root.walk(function (i) {
|
||
|
if (i.nodes && i.nodes.length > 0) {
|
||
|
if (typeof i.raws.after !== 'undefined') {
|
||
|
value = i.raws.after;
|
||
|
if (value.indexOf('\n') !== -1) {
|
||
|
value = value.replace(/[^\n]+$/, '');
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
return value;
|
||
|
};
|
||
|
|
||
|
Stringifier.prototype.rawBeforeOpen = function rawBeforeOpen(root) {
|
||
|
var value = void 0;
|
||
|
root.walk(function (i) {
|
||
|
if (i.type !== 'decl') {
|
||
|
value = i.raws.between;
|
||
|
if (typeof value !== 'undefined') return false;
|
||
|
}
|
||
|
});
|
||
|
return value;
|
||
|
};
|
||
|
|
||
|
Stringifier.prototype.rawColon = function rawColon(root) {
|
||
|
var value = void 0;
|
||
|
root.walkDecls(function (i) {
|
||
|
if (typeof i.raws.between !== 'undefined') {
|
||
|
value = i.raws.between.replace(/[^\s:]/g, '');
|
||
|
return false;
|
||
|
}
|
||
|
});
|
||
|
return value;
|
||
|
};
|
||
|
|
||
|
Stringifier.prototype.beforeAfter = function beforeAfter(node, detect) {
|
||
|
var value = void 0;
|
||
|
if (node.type === 'decl') {
|
||
|
value = this.raw(node, null, 'beforeDecl');
|
||
|
} else if (node.type === 'comment') {
|
||
|
value = this.raw(node, null, 'beforeComment');
|
||
|
} else if (detect === 'before') {
|
||
|
value = this.raw(node, null, 'beforeRule');
|
||
|
} else {
|
||
|
value = this.raw(node, null, 'beforeClose');
|
||
|
}
|
||
|
|
||
|
var buf = node.parent;
|
||
|
var depth = 0;
|
||
|
while (buf && buf.type !== 'root') {
|
||
|
depth += 1;
|
||
|
buf = buf.parent;
|
||
|
}
|
||
|
|
||
|
if (value.indexOf('\n') !== -1) {
|
||
|
var indent = this.raw(node, null, 'indent');
|
||
|
if (indent.length) {
|
||
|
for (var step = 0; step < depth; step++) {
|
||
|
value += indent;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return value;
|
||
|
};
|
||
|
|
||
|
Stringifier.prototype.rawValue = function rawValue(node, prop) {
|
||
|
var value = node[prop];
|
||
|
var raw = node.raws[prop];
|
||
|
if (raw && raw.value === value) {
|
||
|
return raw.raw;
|
||
|
} else {
|
||
|
return value;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
return Stringifier;
|
||
|
}();
|
||
|
|
||
|
exports.default = Stringifier;
|
||
|
module.exports = exports['default'];
|
||
|
//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInN0cmluZ2lmaWVyLmVzNiJdLCJuYW1lcyI6WyJkZWZhdWx0UmF3IiwiY29sb24iLCJpbmRlbnQiLCJiZWZvcmVEZWNsIiwiYmVmb3JlUnVsZSIsImJlZm9yZU9wZW4iLCJiZWZvcmVDbG9zZSIsImJlZm9yZUNvbW1lbnQiLCJhZnRlciIsImVtcHR5Qm9keSIsImNvbW1lbnRMZWZ0IiwiY29tbWVudFJpZ2h0IiwiY2FwaXRhbGl6ZSIsInN0ciIsInRvVXBwZXJDYXNlIiwic2xpY2UiLCJTdHJpbmdpZmllciIsImJ1aWxkZXIiLCJzdHJpbmdpZnkiLCJub2RlIiwic2VtaWNvbG9uIiwidHlwZSIsInJvb3QiLCJib2R5IiwicmF3cyIsImNvbW1lbnQiLCJsZWZ0IiwicmF3IiwicmlnaHQiLCJ0ZXh0IiwiZGVjbCIsImJldHdlZW4iLCJzdHJpbmciLCJwcm9wIiwicmF3VmFsdWUiLCJpbXBvcnRhbnQiLCJydWxlIiwiYmxvY2siLCJhdHJ1bGUiLCJuYW1lIiwicGFyYW1zIiwiYWZ0ZXJOYW1lIiwibm9kZXMiLCJlbmQiLCJsYXN0IiwibGVuZ3RoIiwiaSIsImNoaWxkIiwiYmVmb3JlIiwic3RhcnQiLCJvd24iLCJkZXRlY3QiLCJ2YWx1ZSIsInBhcmVudCIsImZpcnN0IiwicmF3Q2FjaGUiLCJiZWZvcmVBZnRlciIsIm1ldGhvZCIsIndhbGsiLCJyYXdTZW1pY29sb24iLCJyYXdFbXB0eUJvZHkiLCJyYXdJbmRlbnQiLCJwIiwicGFydHMiLCJzcGxpdCIsInJlcGxhY2UiLCJyYXdCZWZvcmVDb21tZW50Iiwid2Fsa0NvbW1lbnRzIiwiaW5kZXhPZiIsInJhd0JlZm9yZURlY2wiLCJ3YWxrRGVjbHMiLCJyYXdCZWZvcmVSdWxlIiwicmF3QmVmb3JlQ2xvc2UiLCJyYXdCZWZvcmVPcGVuIiwicmF3Q29sb24iLCJidWYiLCJkZXB0aCIsInN0ZXAiXSwibWFwcGluZ3MiOiI7Ozs7OztBQUFBLElBQU1BLGFBQWE7QUFDZkMsV0FBZSxJQURBO0FBRWZDLFlBQWUsTUFG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
|