-
Notifications
You must be signed in to change notification settings - Fork 0
/
createIcons.js
265 lines (239 loc) · 9.59 KB
/
createIcons.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
const path = require('path');
const fs = require('fs');
const fsPromise = require('fs').promises;
const { optimize } = require('svgo');
/**
* Args:
* input: string; (directory with svg icons)
* output: string; (directory where icon components will be placed)
* relativePathToIconBase: string; (path from place of icon output to base icon e.g output `/specialDir/icons/`, component placement `/components/`, then relativePathToIconBase would be `../../components/`)
* absolutePathToIconBase: string; (absolute path to file with BaseIcon component `@storefront-ui/react`)
* optimize: boolean; (optimize svgs wth svgo)
* */
const getArgValue = (argName) => {
const argNameLength = argName.length;
const outputArg = Object.values(process.argv).find(param => param.substring(0, argNameLength) === argName);
return outputArg ? outputArg.substring(argNameLength + 1, outputArg.length) : undefined;
}
const inputDirectoryPath = path.join(__dirname, getArgValue('input') ?? './assets');
const outputDirectoryPath = path.join(__dirname, getArgValue('output') ?? './');
const relativePathToIconBasePath = getArgValue('relativePathToIconBase') ?? '../';
const absolutePathToIconBase = getArgValue('absolutePathToIconBase');
const framework = getArgValue('framework') ?? 'vue'; //vue, react
// https://github.com/preactjs/preact-compat/issues/222
const attributesMap = {
'accent-height': 'accentHeight',
'alignment-baseline': 'alignmentBaseline',
'arabic-form': 'arabicForm',
'baseline-shift': 'baselineShift',
'cap-height': 'capHeight',
'clip-path': 'clipPath',
'clip-rule': 'clipRule',
'color-interpolation': 'colorInterpolation',
'color-interpolation-filters': 'colorInterpolationFilters',
'color-profile': 'colorProfile',
'color-rendering': 'colorRendering',
'fill-opacity': 'fillOpacity',
'fill-rule': 'fillRule',
'flood-color': 'floodColor',
'flood-opacity': 'floodOpacity',
'font-family': 'fontFamily',
'font-size': 'fontSize',
'font-size-adjust': 'fontSizeAdjust',
'font-stretch': 'fontStretch',
'font-style': 'fontStyle',
'font-variant': 'fontVariant',
'font-weight': 'fontWeight',
'glyph-name': 'glyphName',
'glyph-orientation-horizontal': 'glyphOrientationHorizontal',
'glyph-orientation-vertical': 'glyphOrientationVertical',
'horiz-adv-x': 'horizAdvX',
'horiz-origin-x': 'horizOriginX',
'marker-end': 'markerEnd',
'marker-mid': 'markerMid',
'marker-start': 'markerStart',
'overline-position': 'overlinePosition',
'overline-thickness': 'overlineThickness',
'panose-1': 'panose1',
'paint-order': 'paintOrder',
'stop-color': 'stopColor',
'stop-opacity': 'stopOpacity',
'strikethrough-position': 'strikethroughPosition',
'strikethrough-thickness': 'strikethroughThickness',
'stroke-dasharray': 'strokeDasharray',
'stroke-dashoffset': 'strokeDashoffset',
'stroke-linecap': 'strokeLinecap',
'stroke-linejoin': 'strokeLinejoin',
'stroke-miterlimit': 'strokeMiterlimit',
'stroke-opacity': 'strokeOpacity',
'stroke-width': 'strokeWidth',
'text-anchor': 'textAnchor',
'text-decoration': 'textDecoration',
'text-rendering': 'textRendering',
'underline-position': 'underlinePosition',
'underline-thickness': 'underlineThickness',
'unicode-bidi': 'unicodeBidi',
'unicode-range': 'unicodeRange',
'units-per-em': 'unitsPerEm',
'v-ideographic': 'vIdeographic',
'v-alphabetic': 'vAlphabetic',
'v-hanging': 'vHanging',
'v-mathematical': 'vMathematical',
'vert-adv-y': 'vertAdvY',
'vert-origin-x': 'vertOriginX',
'vert-origin-y': 'vertOriginY',
'word-spacing': 'wordSpacing',
'writing-mode': 'writingMode',
'x-height': 'xHeight'
}
const vueIcon = (name, content, attributes) => `
<template>
<SfIconBase :size="size" viewBox="${attributes.viewBox}" ${attributes.dataTestId && `data-testid="${attributes.dataTestId}"`}>${content}</SfIconBase>
</template>
<script lang="ts" setup>
import type { PropType } from 'vue';
import { SfIconBase, SfIconSize } from '${absolutePathToIconBase || (relativePathToIconBasePath && `${relativePathToIconBasePath}SfIconBase`)}';
defineProps({
size: {
type: String as PropType<\`\${SfIconSize}\`>,
default: SfIconSize.base
}
});
</script>`;
const reactIcon = (name, camelCaseName, content, attributes) => `
import type { SfIconProps } from '${absolutePathToIconBase || (relativePathToIconBasePath && `${relativePathToIconBasePath}SfIcons/types`)}';
import { SfIconBase, SfIconSize } from '${absolutePathToIconBase || (relativePathToIconBasePath && `${relativePathToIconBasePath}SfIconBase`)}';
export default function SfIcon${camelCaseName}({
size = SfIconSize.base,
viewBox = '${attributes.viewBox}',
...attributes
}: SfIconProps) {
return <SfIconBase size={size} viewBox={viewBox} ${attributes.dataTestId && `data-testid="${attributes.dataTestId}"`} {...attributes}>${content}</SfIconBase>;
}`;
const vueExports = [];
const reactExports = [];
const camelize = s => s.replace(/-./g, x => x[1].toUpperCase());
const capitalize = s => s && s[0].toUpperCase() + s.slice(1);
const getSvg = async (svgName, doOptimiziation) => {
const svgPath = path.join(inputDirectoryPath, svgName);
const fileContent = await fsPromise.readFile(svgPath, 'utf8').catch(() => ({}));
let optimizedFileContent = fileContent;
if (doOptimiziation) {
try {
optimizedFileContent = optimize(optimizedFileContent, {
multipass: true,
svg2js: {
pretty: true
},
plugins: [{
name: 'preset-default',
params: {
overrides: {
removeUselessStrokeAndFill: false,
},
},
},]
}).data;
} catch (error) {
console.error('Please install svgo for node in order to do optimization, ' + e);
}
}
const fileName = svgName.split('.')[0];
return {
fileName: camelize(fileName),
name: fileName,
content: optimizedFileContent.substring(optimizedFileContent.indexOf('>') + 1, optimizedFileContent.lastIndexOf('<')).replace(/"/g, "'"),
attrs: {
viewBox: /viewBox="([^"]+)"/.exec(fileContent)?.[1]
},
}
};
const counterTags = (content) => {
const regex = /<([a-z]+)(?=[\s>])(?:[^>=]|='[^']|="[^"]|=[^'"\s])*\s?\/?>/gi;
let resultMatch;
let count = 0;
do {
resultMatch = regex.exec(content);
if (resultMatch) count++;
} while (resultMatch);
return count;
}
const createExports = async (file, doOptimiziation) => {
const splitFileName = file.split('.');
if (splitFileName[splitFileName.length - 1] === 'svg') {
const {
fileName,
name,
content,
attrs
} = await getSvg(file, doOptimiziation);
const capitializedCamelCaseName = capitalize(camelize(fileName));
const attributes = { viewBox: attrs.viewBox ?? '0 0 24 24' };
if(process.env.PROD !== "true") {
attributes['dataTestId'] = name;
}
const componentName = `SfIcon${capitializedCamelCaseName}`;
if (framework === 'vue') {
await fsPromise.writeFile(
`${outputDirectoryPath}${componentName}.vue`,
vueIcon(name, content, attributes)
);
vueExports.push(componentName);
} else if (framework === 'react') {
let parsedContent = content;
for (let attr in attributesMap) {
parsedContent = parsedContent.replaceAll(attr, attributesMap[attr]);
}
parsedContent = counterTags(parsedContent) <= 1 ? parsedContent : `<>${parsedContent}</>`
await fsPromise.writeFile(
`${outputDirectoryPath}${componentName}.tsx`,
reactIcon(name, capitializedCamelCaseName, parsedContent, attributes)
);
reactExports.push(componentName);
}
}
}
const sortVueExports = (fileName) => {
let vueExportsString = "export * from './types';\n"
vueExports.sort();
vueExports.forEach(component => {
vueExportsString += `export { default as ${component} } from './${component}.vue';\n`;
});
fsPromise.writeFile(`${outputDirectoryPath}${fileName}.ts`, vueExportsString);
}
const sortReactExports = (fileName) => {
let reactExportsString = "export * from './types';\n"
reactExports.sort();
reactExports.forEach(component => {
reactExportsString += `export { default as ${component} } from './${component}';\n`;
});
fsPromise.writeFile(`${outputDirectoryPath}${fileName}.ts`, reactExportsString);
}
const createIndexFiles = (frameworkName, fileName = 'index') => {
if (frameworkName === 'vue') {
sortVueExports(fileName);
} else {
sortReactExports(fileName);
}
}
const generateIconFiles = async (err, files) => {
if (err) {
return console.log('Unable to get icons directory: ' + err);
}
const doOptimiziation = (getArgValue('optimize') ?? 'true') === 'true';
console.log(`Creating ${framework} icons 🎉 ...`);
if (!fs.existsSync(outputDirectoryPath)) {
fs.mkdirSync(outputDirectoryPath);
}
for await (const file of files) {
await createExports(file, doOptimiziation);
};
if (vueExports.length) {
createIndexFiles('vue');
}
if (reactExports.length) {
createIndexFiles('react')
}
console.log(`Creating icons has finished!`);
}
fs.readdir(inputDirectoryPath, generateIconFiles);