@@ -996,14 +996,14 @@ describe('htmlbars-inline-precompile', function () {
996
996
expect ( transformed ) . toContain ( `window.define('my-app/components/thing', thing)` ) ;
997
997
} ) ;
998
998
999
- it ( 'can emit side-effectful import ' , function ( ) {
1000
- let compatTransform : ExtendedPluginBuilder = ( ) => {
999
+ it ( 'update scope correctly ' , function ( ) {
1000
+ let compatTransform : ExtendedPluginBuilder = ( env ) => {
1001
1001
return {
1002
1002
name : 'compat-transform' ,
1003
1003
visitor : {
1004
- ElementNode ( node ) {
1004
+ ElementNode ( node , path ) {
1005
1005
if ( node . tag === 'Thing' ) {
1006
- node . tag = ' NewThing';
1006
+ node . tag = env . meta . jsutils . bindExpression ( 'Thing' , path , { nameHint : ' NewThing' } ) ;
1007
1007
}
1008
1008
} ,
1009
1009
} ,
@@ -1014,15 +1014,14 @@ describe('htmlbars-inline-precompile', function () {
1014
1014
1015
1015
let transformed = transform ( stripIndent `
1016
1016
import { precompileTemplate } from '@ember/template-compilation';
1017
- let NewThing = '';
1018
1017
export default function() {
1019
1018
const template = precompileTemplate('<Thing />');
1020
1019
}
1021
1020
` ) ;
1022
1021
1023
1022
expect ( transformed ) . toEqualCode ( `
1024
1023
import { precompileTemplate } from '@ember/template-compilation';
1025
- let NewThing = '' ;
1024
+ let NewThing = Thing ;
1026
1025
export default function () {
1027
1026
const template = precompileTemplate("<NewThing />", {
1028
1027
scope: () => ({
@@ -1033,34 +1032,45 @@ describe('htmlbars-inline-precompile', function () {
1033
1032
} ) ;
1034
1033
1035
1034
it ( 'updates scope correctly when renamed' , function ( ) {
1036
- let renameTransform : ExtendedPluginBuilder = ( ) => {
1035
+
1036
+ let importTransform : ExtendedPluginBuilder = ( env ) => {
1037
1037
return {
1038
1038
name : 'compat-transform' ,
1039
1039
visitor : {
1040
- ElementNode ( node ) {
1040
+ ElementNode ( node , path ) {
1041
1041
if ( node . tag === 'Thing' ) {
1042
- node . tag = 'NewThing' ;
1042
+ env . meta . jsutils . bindImport ( 'the-thing' , 'Thing' , path ) ;
1043
1043
}
1044
1044
} ,
1045
1045
} ,
1046
1046
} ;
1047
1047
} ;
1048
1048
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 ] } ] ] ;
1050
1063
1051
1064
let transformed = transform ( stripIndent `
1052
1065
import { precompileTemplate } from '@ember/template-compilation';
1053
- let Thing = '';
1054
- let NewThing = '';
1055
1066
export default function() {
1056
1067
const template = precompileTemplate('<Thing />');
1057
1068
}
1058
1069
` ) ;
1059
1070
1060
1071
expect ( transformed ) . toEqualCode ( `
1061
1072
import { precompileTemplate } from '@ember/template-compilation';
1062
- let Thing = '';
1063
- let NewThing = '';
1073
+ import { Thing } from "the-thing";
1064
1074
export default function () {
1065
1075
const template = precompileTemplate("<Thing />", {
1066
1076
scope: () => ({
@@ -1075,8 +1085,8 @@ describe('htmlbars-inline-precompile', function () {
1075
1085
1076
1086
expect ( transformed ) . toEqualCode ( `
1077
1087
import { precompileTemplate } from '@ember/template-compilation';
1078
- let Thing = '' ;
1079
- let NewThing = '' ;
1088
+ import { Thing } from "the-thing" ;
1089
+ let NewThing = Thing ;
1080
1090
export default function () {
1081
1091
const template = precompileTemplate("<NewThing />", {
1082
1092
scope: () => ({
@@ -1086,7 +1096,7 @@ describe('htmlbars-inline-precompile', function () {
1086
1096
}` ) ;
1087
1097
} ) ;
1088
1098
1089
- it ( 'updates scope correctly when renamed ' , function ( ) {
1099
+ it ( 'can emit side-effectful import ' , function ( ) {
1090
1100
let compatTransform : ExtendedPluginBuilder = ( env ) => {
1091
1101
return {
1092
1102
name : 'compat-transform' ,
@@ -1218,7 +1228,6 @@ describe('htmlbars-inline-precompile', function () {
1218
1228
const template = precompileTemplate("<Message @text={{two}} />", {
1219
1229
moduleName: 'customModuleName',
1220
1230
scope: () => ({
1221
- Message,
1222
1231
two
1223
1232
})
1224
1233
});
0 commit comments