@@ -8,6 +8,7 @@ const getPathOption = require('ember-cli-get-component-path-option');
8
8
const normalizeEntityName = require ( 'ember-cli-normalize-entity-name' ) ;
9
9
const { EOL } = require ( 'os' ) ;
10
10
const { has } = require ( '@ember/edition-utils' ) ;
11
+ const { generateComponentSignature } = require ( '../-utils' ) ;
11
12
12
13
const maybePolyfillTypeScriptBlueprints = require ( '../-maybe-polyfill-typescript-blueprints' ) ;
13
14
@@ -49,9 +50,17 @@ module.exports = {
49
50
} ,
50
51
] ,
51
52
53
+ /**
54
+ Flag to let us correctly handle the case where we are running against a
55
+ version of Ember CLI which does not support TS-based emit, and where we
56
+ therefore *must* not emit a `defaultExport` local which includes a type
57
+ parameter in the exported function call or class definition.
58
+ */
59
+ _isUsingTS : false ,
60
+
52
61
init ( ) {
53
62
this . _super && this . _super . init . apply ( this , arguments ) ;
54
- maybePolyfillTypeScriptBlueprints ( this ) ;
63
+ this . _isUsingTS = maybePolyfillTypeScriptBlueprints ( this ) ;
55
64
let isOctane = has ( 'octane' ) ;
56
65
57
66
this . availableOptions . forEach ( ( option ) => {
@@ -134,6 +143,7 @@ module.exports = {
134
143
let importComponent = '' ;
135
144
let importTemplate = '' ;
136
145
let defaultExport = '' ;
146
+ let componentSignature = '' ;
137
147
138
148
// if we're in an addon, build import statement
139
149
if ( options . project . isEmberCLIAddon ( ) || ( options . inRepoAddon && ! options . inDummy ) ) {
@@ -161,17 +171,28 @@ module.exports = {
161
171
break ;
162
172
case '@glimmer/component' :
163
173
importComponent = `import Component from '@glimmer/component';` ;
164
- defaultExport = `class ${ classifiedModuleName } Component extends Component {}` ;
174
+ if ( this . _isUsingTS ) {
175
+ componentSignature = generateComponentSignature ( classifiedModuleName ) ;
176
+ defaultExport = `class ${ classifiedModuleName } Component extends Component<${ classifiedModuleName } Signature> {}` ;
177
+ } else {
178
+ defaultExport = `class ${ classifiedModuleName } Component extends Component {}` ;
179
+ }
165
180
break ;
166
181
case '@ember/component/template-only' :
167
182
importComponent = `import templateOnly from '@ember/component/template-only';` ;
168
- defaultExport = `templateOnly();` ;
183
+ if ( this . _isUsingTS ) {
184
+ componentSignature = generateComponentSignature ( classifiedModuleName ) ;
185
+ defaultExport = `templateOnly<${ classifiedModuleName } Signature>();` ;
186
+ } else {
187
+ defaultExport = `templateOnly();` ;
188
+ }
169
189
break ;
170
190
}
171
191
172
192
return {
173
193
importTemplate,
174
194
importComponent,
195
+ componentSignature,
175
196
defaultExport,
176
197
path : getPathOption ( options ) ,
177
198
componentClass,
0 commit comments