-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
151 lines (137 loc) · 4.14 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
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
'use strict';
const Funnel = require('broccoli-funnel');
const merge = require('broccoli-merge-trees');
const SVGOptimizer = require('./lib/svgo-optimizer');
const path = require('path');
const SpriteConfigGenerator = require('./lib/sprite-config-generator');
const SpriteAssembler = require('./lib/sprite-assembler');
const dasherize = require('./lib/utils/dasherize');
const BroccoliDebug = require('broccoli-debug');
function templatePrecompiler(env) {
const b = env.syntax.builders;
return {
name: 'svg-component-rewrite',
visitor: {
ElementNode(node) {
if (node.tag.startsWith('Icon::')) {
const parts = node.tag.split('::');
parts.shift();
const fullName = parts.map(dasherize).join('/');
node.tag = 'SVGIcon';
const attr = b.attr('@name', b.text(fullName));
node.attributes.push(attr);
}
},
},
};
}
module.exports = {
name: require('./package').name,
parentIsAddon() {
return this.parent !== this.project;
},
pathForMainFilesRoot() {
const projectPath =
this.parent.root || require.resolve(this.parent.options.name);
return path.join(projectPath, this.parentIsAddon() ? 'addon' : 'app');
},
preprocessTree(type, tree) {
const parentName =
typeof this.parent.name === 'string'
? this.parent.name
: this.parent.name();
if (type === 'js') {
// prevent the glimmer precompile from including js files for these
return new Funnel(tree, {
exclude: [`${parentName}/components/icon/**/*.js`],
});
}
if (type === 'template') {
return new BroccoliDebug(
new Funnel(tree, {
exclude: [`${parentName}/components/icon/**/*.hbs`],
}),
'html-next:hbs-sans-svg'
);
}
return tree;
},
treeForPublic(tree) {
const treeForIcons = new Funnel(
path.join(this.pathForMainFilesRoot(), './components/icon'),
{
destDir: 'assets/component-icons',
getDestinationPath(relativePath) {
return relativePath.replace('.hbs', '.svg');
},
}
);
const treeForTemplates = new Funnel(this.pathForMainFilesRoot(), {
include: ['**/*.hbs'],
exclude: ['components/icon/**/*.hbs'],
getDestinationPath(relativePath) {
return relativePath.replace('.hbs', '.svg');
},
});
const config = this.getConfig();
console.log({ config });
const configTree = new BroccoliDebug(
new SpriteConfigGenerator(treeForTemplates, config),
'html-next:sprite-config'
);
const TrulyRemoveComments = {
name: 'Remove Comments Starting With !',
type: 'visitor',
fn: () => {
return {
comment: {
enter: (node, parentNode) => {
if (node.value.charAt(0) === '!') {
parentNode.children = parentNode.children.filter(
(child) => child !== node
);
}
},
},
};
},
};
const compiled = new SVGOptimizer(treeForIcons, {
persist: false,
svgoConfig: {
multipass: true,
plugins: ['preset-default', TrulyRemoveComments],
},
});
const spriteTree = new SpriteAssembler([configTree, compiled]);
return tree
? merge([tree, spriteTree, compiled], { overwrite: true })
: merge([spriteTree, compiled], { overwrite: true });
},
getConfig() {
if (this.parentIsAddon()) {
let options = this.parent.options || {};
return options.svgIconOptimizer || {};
} else {
const app = this._findHost();
let options = (app.options = app.options || {});
options.svgIconOptimizer = options.svgIconOptimizer || {};
return options.svgIconOptimizer;
}
},
setupPreprocessorRegistry(type, registry) {
if (type === 'parent') {
registry.add('htmlbars-ast-plugin', {
name: 'svg-component-rewrite',
ext: 'hbs',
plugin: templatePrecompiler,
cacheKey: () => {
return `${Date.now()}`; // use this to deactivate when deving
},
baseDir() {
return __dirname;
},
});
}
},
};