-
Notifications
You must be signed in to change notification settings - Fork 207
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ZK-4928: expose widget private functions and variables as public ones
- Loading branch information
1 parent
5f13b9b
commit f132534
Showing
5 changed files
with
93 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
defaults | ||
ie >= 11 | ||
not dead |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
// eslint-disable-next-line no-undef | ||
module.exports = function ({types: t}) { | ||
|
||
function createNestedMemberExpression(identifiers) { | ||
if (identifiers.length === 1) { | ||
return t.identifier(identifiers[0]); | ||
} else { | ||
const [head, ...tail] = identifiers; | ||
return t.memberExpression( | ||
createNestedMemberExpression(tail), | ||
t.identifier(head) | ||
); | ||
} | ||
} | ||
|
||
return { | ||
visitor: { | ||
Program: { | ||
exit(path) { | ||
let dir = this.file.opts.filename.replace(/-/g, '_').split('/'); | ||
const jsLoc = dir.findIndex(x => x === 'js'), | ||
file = dir[dir.length - 1], | ||
exports = {}; | ||
|
||
// pass if [not in js folder] or [not ts file] or [is global.d.ts] or [is index.ts] | ||
if (jsLoc === -1 || !file.endsWith('ts') || file === 'global.d.ts' || file === 'index.ts') return; | ||
|
||
// simplify whole dir | ||
dir = dir.slice(jsLoc + 1); | ||
dir[dir.length - 1] = file.replace('.ts', ''); | ||
|
||
// sort order for follow-up | ||
dir.unshift('window'); | ||
dir.push('_'); | ||
dir.reverse(); | ||
|
||
// visit all nodes | ||
path.node.body.forEach((node, index) => { | ||
if (t.isVariableDeclaration(node)) { | ||
node.declarations.forEach((declaration) => { | ||
if (t.isIdentifier(declaration.id)) { | ||
exports[declaration.id.name] = declaration.id.name; | ||
} | ||
}); | ||
} else if (t.isFunctionDeclaration(node) && t.isIdentifier(node.id)) { | ||
exports[node.id.name] = node.id.name; | ||
} | ||
}); | ||
|
||
// add check-exist if statements | ||
for (let i = dir.length - 2; i > 0; i--) { | ||
const nestedExpression = createNestedMemberExpression(dir.slice(i)); | ||
path.pushContainer('body', | ||
t.ifStatement( | ||
t.unaryExpression('!', nestedExpression), | ||
t.expressionStatement( | ||
t.assignmentExpression( | ||
'=', | ||
nestedExpression, | ||
t.objectExpression([]) | ||
) | ||
) | ||
) | ||
); | ||
} | ||
|
||
// export all global variables and functions | ||
path.pushContainer('body', | ||
// window.x.x.x._ = {...} | ||
t.expressionStatement( | ||
t.assignmentExpression( | ||
'=', | ||
createNestedMemberExpression(dir), | ||
t.objectExpression( | ||
Object.entries(exports).map(([k, v]) => { | ||
return t.objectProperty(t.identifier(k), t.identifier(v)); | ||
}) | ||
) | ||
) | ||
) | ||
); | ||
|
||
} | ||
} | ||
} | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters