Skip to content

Commit 5966714

Browse files
authoredNov 11, 2021
fix(template): make it possible to use type in template (#619)
Fix #556
1 parent 9ea5da4 commit 5966714

File tree

4 files changed

+55
-4
lines changed

4 files changed

+55
-4
lines changed
 

‎packages/babel-plugin-transform-svg-component/src/__snapshots__/index.test.ts.snap

+26
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,19 @@ export default MyComponent;"
6767
6868
exports[`plugin javascript custom templates supports template that does not return an array 1`] = `"<svg><g /></svg>;"`;
6969
70+
exports[`plugin javascript custom templates supports type annotation on component 1`] = `
71+
"import * as React from \\"react\\";
72+
interface Props {
73+
x?: string;
74+
}
75+
export const SvgComponent:React.FC<Props> = ({
76+
x
77+
}) => {
78+
return <svg><g /></svg>;
79+
};
80+
export default SvgComponent;"
81+
`;
82+
7083
exports[`plugin javascript transforms whole program 1`] = `
7184
"import * as React from \\"react\\";
7285
@@ -270,6 +283,19 @@ export default MyComponent;"
270283
271284
exports[`plugin typescript custom templates supports template that does not return an array 1`] = `"<svg><g /></svg>;"`;
272285
286+
exports[`plugin typescript custom templates supports type annotation on component 1`] = `
287+
"import * as React from \\"react\\";
288+
interface Props {
289+
x?: string;
290+
}
291+
export const SvgComponent:React.FC<Props> = ({
292+
x
293+
}) => {
294+
return <svg><g /></svg>;
295+
};
296+
export default SvgComponent;"
297+
`;
298+
273299
exports[`plugin typescript transforms whole program 1`] = `
274300
"import * as React from \\"react\\";
275301

‎packages/babel-plugin-transform-svg-component/src/index.test.ts

+19
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,25 @@ describe('plugin', () => {
227227
})
228228
expect(code).toMatchSnapshot()
229229
})
230+
231+
it('supports type annotation on component', () => {
232+
const { code } = testPlugin(language)('<svg><g /></svg>', {
233+
typescript: true,
234+
template: (
235+
{ jsx, imports, interfaces, componentName, exports },
236+
{ tpl },
237+
) => tpl`
238+
${imports}
239+
${interfaces}
240+
interface Props { x?: string }
241+
export const ${`${componentName}:React.FC<Props>`} = ({ x }) => {
242+
return (${jsx});
243+
}
244+
${exports}`,
245+
state: { componentName: 'SvgComponent' },
246+
})
247+
expect(code).toMatchSnapshot()
248+
})
230249
})
231250

232251
describe('#jsxRuntime', () => {

‎packages/babel-plugin-transform-svg-component/src/types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { types as t } from '@babel/core'
22
import type { TemplateBuilder } from '@babel/template'
33

44
export interface TemplateVariables {
5-
componentName: t.Identifier
5+
componentName: string
66
interfaces: t.TSInterfaceDeclaration[]
77
props: (t.ObjectPattern | t.Identifier)[]
88
imports: t.ImportDeclaration[]

‎packages/babel-plugin-transform-svg-component/src/variables.ts

+9-3
Original file line numberDiff line numberDiff line change
@@ -95,14 +95,13 @@ export const getVariables = ({
9595
opts: Options
9696
jsx: t.JSXElement
9797
}): TemplateVariables => {
98-
const componentName = t.identifier(opts.state.componentName)
9998
const interfaces: t.TSInterfaceDeclaration[] = []
10099
const props: (t.Identifier | t.ObjectPattern)[] = []
101100
const imports: t.ImportDeclaration[] = []
102101
const exports: (t.VariableDeclaration | t.ExportDeclaration)[] = []
103102
const ctx = {
104103
importSource: opts.importSource ?? defaultImportSource,
105-
exportIdentifier: componentName,
104+
exportIdentifier: t.identifier(opts.state.componentName),
106105
opts,
107106
interfaces,
108107
props,
@@ -238,5 +237,12 @@ export const getVariables = ({
238237
} else {
239238
exports.push(t.exportDefaultDeclaration(ctx.exportIdentifier))
240239
}
241-
return { componentName, props, interfaces, imports, exports, jsx }
240+
return {
241+
componentName: opts.state.componentName,
242+
props,
243+
interfaces,
244+
imports,
245+
exports,
246+
jsx,
247+
}
242248
}

1 commit comments

Comments
 (1)

vercel[bot] commented on Nov 11, 2021

@vercel[bot]
Please sign in to comment.