Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
2.1 KiB
74 lines
2.1 KiB
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
|
|
var _icssReplaceSymbols = require("icss-replace-symbols");
|
|
|
|
var _icssReplaceSymbols2 = _interopRequireDefault(_icssReplaceSymbols);
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
// Copied from https://github.com/css-modules/css-modules-loader-core
|
|
|
|
const importRegexp = /^:import\((.+)\)$/;
|
|
class Parser {
|
|
constructor(pathFetcher, trace) {
|
|
this.pathFetcher = pathFetcher;
|
|
this.plugin = this.plugin.bind(this);
|
|
this.exportTokens = {};
|
|
this.translations = {};
|
|
this.trace = trace;
|
|
}
|
|
|
|
plugin(css) {
|
|
return Promise.all(this.fetchAllImports(css)).then(() => this.linkImportedSymbols(css)).then(() => this.extractExports(css));
|
|
}
|
|
|
|
fetchAllImports(css) {
|
|
let imports = [];
|
|
css.each(node => {
|
|
if (node.type == "rule" && node.selector.match(importRegexp)) {
|
|
imports.push(this.fetchImport(node, css.source.input.from, imports.length));
|
|
}
|
|
});
|
|
return imports;
|
|
}
|
|
|
|
linkImportedSymbols(css) {
|
|
(0, _icssReplaceSymbols2.default)(css, this.translations);
|
|
}
|
|
|
|
extractExports(css) {
|
|
css.each(node => {
|
|
if (node.type == "rule" && node.selector == ":export") this.handleExport(node);
|
|
});
|
|
}
|
|
|
|
handleExport(exportNode) {
|
|
exportNode.each(decl => {
|
|
if (decl.type == "decl") {
|
|
Object.keys(this.translations).forEach(translation => {
|
|
decl.value = decl.value.replace(translation, this.translations[translation]);
|
|
});
|
|
this.exportTokens[decl.prop] = decl.value;
|
|
}
|
|
});
|
|
exportNode.remove();
|
|
}
|
|
|
|
fetchImport(importNode, relativeTo, depNr) {
|
|
let file = importNode.selector.match(importRegexp)[1],
|
|
depTrace = this.trace + String.fromCharCode(depNr);
|
|
return this.pathFetcher(file, relativeTo, depTrace).then(exports => {
|
|
importNode.each(decl => {
|
|
if (decl.type == "decl") {
|
|
this.translations[decl.prop] = exports[decl.value];
|
|
}
|
|
});
|
|
importNode.remove();
|
|
}, err => console.log(err));
|
|
}
|
|
}
|
|
exports.default = Parser; |