-
Notifications
You must be signed in to change notification settings - Fork 0
/
jsx-preact-global.js
42 lines (39 loc) · 986 Bytes
/
jsx-preact-global.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
/**
* Custom import modifier that adds {h} and {Fragment} to the top of files
* that need them
*/
module.exports = function jsxGlobal(babel) {
var
t = babel.types,
visitor = {};
function createImport(_toImport) {
return t.importDeclaration(
[t.importSpecifier(
t.identifier(_toImport),
t.identifier(_toImport)
)],
t.stringLiteral('preact')
);
}
visitor = {
Program: {
exit: function (path, state) {
if (state.get('jsxDetected') || state.get('jsxFragmentDetected')) {
path.unshiftContainer('body', createImport('h'));
}
if (state.get('jsxFragmentDetected')) {
path.unshiftContainer('body', createImport('Fragment'));
}
},
},
JSXElement: function (path, state) {
state.set('jsxDetected', true);
},
JSXFragment: function (path, state) {
state.set('jsxFragmentDetected', true);
},
};
return {
visitor: visitor,
};
};