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.
48 lines
1.3 KiB
48 lines
1.3 KiB
1 year ago
|
"use strict";
|
||
|
|
||
|
var interpolateName = require("loader-utils").interpolateName;
|
||
|
var path = require("path");
|
||
|
|
||
|
/**
|
||
|
* @param {string} pattern
|
||
|
* @param {object} options
|
||
|
* @param {string} options.context
|
||
|
* @param {string} options.hashPrefix
|
||
|
* @return {function}
|
||
|
*/
|
||
|
module.exports = function createGenerator(pattern, options) {
|
||
|
options = options || {};
|
||
|
var context =
|
||
|
options && typeof options.context === "string"
|
||
|
? options.context
|
||
|
: process.cwd();
|
||
|
var hashPrefix =
|
||
|
options && typeof options.hashPrefix === "string" ? options.hashPrefix : "";
|
||
|
|
||
|
/**
|
||
|
* @param {string} localName Usually a class name
|
||
|
* @param {string} filepath Absolute path
|
||
|
* @return {string}
|
||
|
*/
|
||
|
return function generate(localName, filepath) {
|
||
|
var name = pattern.replace(/\[local\]/gi, localName);
|
||
|
var loaderContext = {
|
||
|
resourcePath: filepath
|
||
|
};
|
||
|
|
||
|
var loaderOptions = {
|
||
|
content:
|
||
|
hashPrefix +
|
||
|
path.relative(context, filepath).replace(/\\/g, "/") +
|
||
|
"+" +
|
||
|
localName,
|
||
|
context: context
|
||
|
};
|
||
|
|
||
|
var genericName = interpolateName(loaderContext, name, loaderOptions);
|
||
|
return genericName
|
||
|
.replace(new RegExp("[^a-zA-Z0-9\\-_\u00A0-\uFFFF]", "g"), "-")
|
||
|
.replace(/^((-?[0-9])|--)/, "_$1");
|
||
|
};
|
||
|
};
|