-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.js
49 lines (42 loc) · 957 Bytes
/
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
const path = require('path');
function buildModule(functionName, pathname, filename)
{
return `
const React = require('react');
const ${functionName} = (props) =>
{
return React.createElement('svg', {
...props,
'data-jest-file-name': '${pathname}',
'data-jest-svg-name': '${filename}',
'data-testid': '${filename}'
});
}
module.exports.default = ${functionName};
module.exports.ReactComponent = ${functionName};
`;
}
function createFunctionName(base)
{
const words = base.split(/\W+/);
return words.reduce(
(identifer, word) => {
return identifer +
word.substr(0, 1).toUpperCase() +
word.substr(1);
}, '');
}
function processSvg(contents, filename)
{
const parts = path.parse(filename);
if (parts.ext.toLowerCase() === '.svg')
{
const functionName = createFunctionName(parts.name);
return buildModule(functionName, parts.base, parts.name);
}
return contents;
}
module.exports =
{
process: processSvg
}