From 21d969d73f25fb37438dd034152118cee70d774c Mon Sep 17 00:00:00 2001 From: Edward Faulkner Date: Mon, 25 Nov 2024 15:12:45 -0500 Subject: [PATCH] this-property-fallback is not a possibility on ember >=4 --- packages/compat/src/resolver-transform.ts | 29 ++++++++++++++++------- 1 file changed, 20 insertions(+), 9 deletions(-) diff --git a/packages/compat/src/resolver-transform.ts b/packages/compat/src/resolver-transform.ts index 4cf4fad1a..9e0d3343b 100644 --- a/packages/compat/src/resolver-transform.ts +++ b/packages/compat/src/resolver-transform.ts @@ -124,6 +124,10 @@ function builtInKeywords(emberVersion: string): Record, + private supportsThisFallback: boolean, private externalNameHint?: ExternalNameHint ) { this.moduleResolver = new Resolver(config); @@ -549,17 +554,17 @@ class TemplateResolver implements ASTPlugin { 2. Have a mustache statement like: `{{something}}`, where `something` is: - a. Not a variable in scope (for example, there's no preceeding line + a. Not a variable in scope (for example, there's no preceeding line like ``) b. Does not start with `@` because that must be an argument from outside this template. - c. Does not contain a dot, like `some.thing` (because that case is classically + c. Does not contain a dot, like `some.thing` (because that case is classically never a global component resolution that we would need to handle) - d. Does not start with `this` (this rule is mostly redundant with the previous rule, + d. Does not start with `this` (this rule is mostly redundant with the previous rule, but even a standalone `this` is never a component invocation). - e. Does not have any arguments. If there are argument like `{{something a=b}}`, - there is still ambiguity between helper vs component, but there is no longer + e. Does not have any arguments. If there are argument like `{{something a=b}}`, + there is still ambiguity between helper vs component, but there is no longer the possibility that this was just rendering some data. - f. Does not take a block, like `{{#something}}{{/something}}` (because that is + f. Does not take a block, like `{{#something}}{{/something}}` (because that is always a component, no ambiguity.) We can't tell if this problematic case is really: @@ -573,7 +578,7 @@ class TemplateResolver implements ASTPlugin { 2. A component invocation, which you could have written `` instead. Angle-bracket invocation has been available and easy-to-adopt - for a very long time. + for a very long time. 3. Property-this-fallback for `{{this.something}}`. Property-this-fallback is eliminated at Ember 4.0, so people have been heavily pushed to get @@ -626,7 +631,7 @@ class TemplateResolver implements ASTPlugin { } } - if (!hasArgs && !path.includes('/') && !path.includes('@')) { + if (!hasArgs && !path.includes('/') && !path.includes('@') && this.supportsThisFallback) { // this is the case that could also be property-this-fallback. We're going // to force people to disambiguate, because letting a potential component // or helper invocation lurk inside every bit of data you render is not @@ -986,7 +991,13 @@ export default function makeResolverTransform({ appRoot, emberVersion, externalN visitor: {}, }; } - return new TemplateResolver(env, config, builtInKeywords(emberVersion), externalNameHint); + return new TemplateResolver( + env, + config, + builtInKeywords(emberVersion), + supportsThisFallback(emberVersion), + externalNameHint + ); }; (resolverTransform as any).parallelBabel = { requireFile: __filename,