-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.js
47 lines (42 loc) · 1.26 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
'use strict';
var interpolateName = require('loader-utils').interpolateName;
var path = require('path');
var util = require('util');
/**
* @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: util.format('%s%s+%s',
hashPrefix,
path.relative(context, filepath),
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");
};
};