-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathJSXOpeningFragment.ts
61 lines (57 loc) · 1.8 KB
/
JSXOpeningFragment.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import type MagicString from 'magic-string';
import type { NormalizedJsxOptions } from '../../rollup/types';
import type { RenderOptions } from '../../utils/renderHelpers';
import type { InclusionContext } from '../ExecutionContext';
import type Variable from '../variables/Variable';
import type * as NodeType from './NodeType';
import { getAndIncludeFactoryVariable } from './shared/jsxHelpers';
import { NodeBase } from './shared/Node';
export default class JSXOpeningFragment extends NodeBase {
type!: NodeType.tJSXOpeningElement;
attributes!: never[];
selfClosing!: false;
private fragment: string | null = null;
private fragmentVariable: Variable | null = null;
includeNode(context: InclusionContext) {
this.included = true;
if (!this.deoptimized) this.applyDeoptimizations();
const jsx = this.scope.context.options.jsx as NormalizedJsxOptions;
if (jsx.mode === 'automatic') {
this.fragment = 'Fragment';
this.fragmentVariable = getAndIncludeFactoryVariable(
'Fragment',
false,
jsx.jsxImportSource,
this,
context
);
} else {
const { fragment, importSource, mode } = jsx;
if (fragment != null) {
this.fragment = fragment;
this.fragmentVariable = getAndIncludeFactoryVariable(
fragment,
mode === 'preserve',
importSource,
this,
context
);
}
}
}
render(code: MagicString, options: RenderOptions): void {
const { mode } = this.scope.context.options.jsx as NormalizedJsxOptions;
if (mode !== 'preserve') {
const {
snippets: { getPropertyAccess },
useOriginalName
} = options;
const [, ...nestedFragment] = this.fragment!.split('.');
const fragment = [
this.fragmentVariable!.getName(getPropertyAccess, useOriginalName),
...nestedFragment
].join('.');
code.update(this.start, this.end, fragment);
}
}
}