Skip to content

Commit e93b0aa

Browse files
committedApr 13, 2024
fix tests
1 parent 0ae952b commit e93b0aa

File tree

3 files changed

+30
-21
lines changed

3 files changed

+30
-21
lines changed
 

‎__tests__/tests.ts

+27-18
Original file line numberDiff line numberDiff line change
@@ -996,14 +996,14 @@ describe('htmlbars-inline-precompile', function () {
996996
expect(transformed).toContain(`window.define('my-app/components/thing', thing)`);
997997
});
998998

999-
it('can emit side-effectful import', function () {
1000-
let compatTransform: ExtendedPluginBuilder = () => {
999+
it('update scope correctly', function () {
1000+
let compatTransform: ExtendedPluginBuilder = (env) => {
10011001
return {
10021002
name: 'compat-transform',
10031003
visitor: {
1004-
ElementNode(node) {
1004+
ElementNode(node, path) {
10051005
if (node.tag === 'Thing') {
1006-
node.tag = 'NewThing';
1006+
node.tag = env.meta.jsutils.bindExpression('Thing', path, { nameHint: 'NewThing' });
10071007
}
10081008
},
10091009
},
@@ -1014,15 +1014,14 @@ describe('htmlbars-inline-precompile', function () {
10141014

10151015
let transformed = transform(stripIndent`
10161016
import { precompileTemplate } from '@ember/template-compilation';
1017-
let NewThing = '';
10181017
export default function() {
10191018
const template = precompileTemplate('<Thing />');
10201019
}
10211020
`);
10221021

10231022
expect(transformed).toEqualCode(`
10241023
import { precompileTemplate } from '@ember/template-compilation';
1025-
let NewThing = '';
1024+
let NewThing = Thing;
10261025
export default function () {
10271026
const template = precompileTemplate("<NewThing />", {
10281027
scope: () => ({
@@ -1033,34 +1032,45 @@ describe('htmlbars-inline-precompile', function () {
10331032
});
10341033

10351034
it('updates scope correctly when renamed', function () {
1036-
let renameTransform: ExtendedPluginBuilder = () => {
1035+
1036+
let importTransform: ExtendedPluginBuilder = (env) => {
10371037
return {
10381038
name: 'compat-transform',
10391039
visitor: {
1040-
ElementNode(node) {
1040+
ElementNode(node, path) {
10411041
if (node.tag === 'Thing') {
1042-
node.tag = 'NewThing';
1042+
env.meta.jsutils.bindImport('the-thing', 'Thing', path);
10431043
}
10441044
},
10451045
},
10461046
};
10471047
};
10481048

1049-
plugins = [[HTMLBarsInlinePrecompile, { targetFormat: 'hbs', transforms: [] }]];
1049+
let renameTransform: ExtendedPluginBuilder = (env) => {
1050+
return {
1051+
name: 'compat-transform',
1052+
visitor: {
1053+
ElementNode(node, path) {
1054+
if (node.tag === 'Thing') {
1055+
node.tag = env.meta.jsutils.bindExpression('Thing', path, { nameHint: 'NewThing' });
1056+
}
1057+
},
1058+
},
1059+
};
1060+
};
1061+
1062+
plugins = [[HTMLBarsInlinePrecompile, { targetFormat: 'hbs', transforms: [importTransform] }]];
10501063

10511064
let transformed = transform(stripIndent`
10521065
import { precompileTemplate } from '@ember/template-compilation';
1053-
let Thing = '';
1054-
let NewThing = '';
10551066
export default function() {
10561067
const template = precompileTemplate('<Thing />');
10571068
}
10581069
`);
10591070

10601071
expect(transformed).toEqualCode(`
10611072
import { precompileTemplate } from '@ember/template-compilation';
1062-
let Thing = '';
1063-
let NewThing = '';
1073+
import { Thing } from "the-thing";
10641074
export default function () {
10651075
const template = precompileTemplate("<Thing />", {
10661076
scope: () => ({
@@ -1075,8 +1085,8 @@ describe('htmlbars-inline-precompile', function () {
10751085

10761086
expect(transformed).toEqualCode(`
10771087
import { precompileTemplate } from '@ember/template-compilation';
1078-
let Thing = '';
1079-
let NewThing = '';
1088+
import { Thing } from "the-thing";
1089+
let NewThing = Thing;
10801090
export default function () {
10811091
const template = precompileTemplate("<NewThing />", {
10821092
scope: () => ({
@@ -1086,7 +1096,7 @@ describe('htmlbars-inline-precompile', function () {
10861096
}`);
10871097
});
10881098

1089-
it('updates scope correctly when renamed', function () {
1099+
it('can emit side-effectful import', function () {
10901100
let compatTransform: ExtendedPluginBuilder = (env) => {
10911101
return {
10921102
name: 'compat-transform',
@@ -1218,7 +1228,6 @@ describe('htmlbars-inline-precompile', function () {
12181228
const template = precompileTemplate("<Message @text={{two}} />", {
12191229
moduleName: 'customModuleName',
12201230
scope: () => ({
1221-
Message,
12221231
two
12231232
})
12241233
});

‎src/js-utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ export class JSUtils {
155155
t.variableDeclarator(t.identifier(identifier), importedIdentifier),
156156
])
157157
);
158-
declaration.scope.registerBinding('let', declaration.get('declarations.0') as NodePath
158+
declaration.scope.registerBinding('let', declaration.get('declarations.0') as NodePath);
159159
}
160160
this.#scopeLocals.add(identifier);
161161
return identifier;

‎src/scope-locals.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ import { ASTPluginEnvironment, NodeVisitor } from '@glimmer/syntax';
1313
import { astNodeHasBinding } from './hbs-utils';
1414

1515
export class ScopeLocals {
16-
constructor(jsPath: NodePath<t.Expression>, checkJsScope: Boolean = false) {
16+
constructor(jsPath: NodePath<t.Expression>, checkJsScope = false) {
1717
this.#jsPath = jsPath;
1818
this.#checkJsScope = checkJsScope;
1919
}
2020

2121
#mapping: Record<string, string> = {};
2222
#locals: string[] = [];
2323
#jsPath: NodePath<t.Expression>;
24-
#checkJsScope: Boolean;
24+
#checkJsScope: boolean;
2525

2626
get locals() {
2727
return this.#locals;

0 commit comments

Comments
 (0)