-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathJSXElement.ts
257 lines (241 loc) · 7 KB
/
JSXElement.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
import type MagicString from 'magic-string';
import type { NormalizedJsxOptions } from '../../rollup/types';
import type { RenderOptions } from '../../utils/renderHelpers';
import type { InclusionContext } from '../ExecutionContext';
import JSXAttribute from './JSXAttribute';
import type JSXClosingElement from './JSXClosingElement';
import type JSXOpeningElement from './JSXOpeningElement';
import JSXSpreadAttribute from './JSXSpreadAttribute';
import type * as NodeType from './NodeType';
import JSXElementBase from './shared/JSXElementBase';
import type { JSXChild, JsxMode } from './shared/jsxHelpers';
import type { IncludeChildren } from './shared/Node';
export default class JSXElement extends JSXElementBase {
type!: NodeType.tJSXElement;
openingElement!: JSXOpeningElement;
closingElement!: JSXClosingElement | null;
children!: JSXChild[];
include(context: InclusionContext, includeChildrenRecursively: IncludeChildren) {
super.include(context, includeChildrenRecursively);
this.openingElement.include(context, includeChildrenRecursively);
this.closingElement?.include(context, includeChildrenRecursively);
}
render(code: MagicString, options: RenderOptions): void {
switch (this.jsxMode.mode) {
case 'classic': {
this.renderClassicMode(code, options);
break;
}
case 'automatic': {
this.renderAutomaticMode(code, options);
break;
}
default: {
super.render(code, options);
}
}
}
protected getRenderingMode(): JsxMode {
const jsx = this.scope.context.options.jsx as NormalizedJsxOptions;
const { mode, factory, importSource } = jsx;
if (mode === 'automatic') {
// In the case there is a key after a spread attribute, we fall back to
// classic mode, see https://github.com/facebook/react/issues/20031#issuecomment-710346866
// for reasoning.
let hasSpread = false;
for (const attribute of this.openingElement.attributes) {
if (attribute instanceof JSXSpreadAttribute) {
hasSpread = true;
} else if (hasSpread && attribute.name.name === 'key') {
return { factory, importSource, mode: 'classic' };
}
}
}
return super.getRenderingMode();
}
private renderClassicMode(code: MagicString, options: RenderOptions) {
const {
snippets: { getPropertyAccess },
useOriginalName
} = options;
const {
closingElement,
end,
factory,
factoryVariable,
openingElement: { end: openingEnd, selfClosing }
} = this;
const [, ...nestedName] = factory!.split('.');
const { firstAttribute, hasAttributes, hasSpread, inObject, previousEnd } =
this.renderAttributes(
code,
options,
[factoryVariable!.getName(getPropertyAccess, useOriginalName), ...nestedName].join('.'),
false
);
this.wrapAttributes(
code,
inObject,
hasAttributes,
hasSpread,
firstAttribute,
'null',
previousEnd
);
this.renderChildren(code, options, openingEnd);
if (selfClosing) {
code.appendLeft(end, ')');
} else {
closingElement!.render(code, options);
}
}
private renderAutomaticMode(code: MagicString, options: RenderOptions) {
const {
snippets: { getPropertyAccess },
useOriginalName
} = options;
const {
closingElement,
end,
factoryVariable,
openingElement: { end: openindEnd, selfClosing }
} = this;
let { firstAttribute, hasAttributes, hasSpread, inObject, keyAttribute, previousEnd } =
this.renderAttributes(
code,
options,
factoryVariable!.getName(getPropertyAccess, useOriginalName),
true
);
const { firstChild, hasMultipleChildren, childrenEnd } = this.renderChildren(
code,
options,
openindEnd
);
if (firstChild) {
code.prependRight(firstChild.start, `children: ${hasMultipleChildren ? '[' : ''}`);
if (!inObject) {
code.prependRight(firstChild.start, '{ ');
inObject = true;
}
previousEnd = closingElement!.start;
if (hasMultipleChildren) {
code.appendLeft(previousEnd, ']');
}
}
this.wrapAttributes(
code,
inObject,
hasAttributes || !!firstChild,
hasSpread,
firstAttribute || firstChild,
'{}',
childrenEnd
);
if (keyAttribute) {
const { value } = keyAttribute;
// This will appear to the left of the moved code...
code.appendLeft(childrenEnd, ', ');
if (value) {
code.move(value.start, value.end, childrenEnd);
} else {
code.appendLeft(childrenEnd, 'true');
}
}
if (selfClosing) {
// Moving the key attribute will also move the parenthesis to the right position
code.appendLeft(keyAttribute?.value?.end || end, ')');
} else {
closingElement!.render(code, options);
}
}
private renderAttributes(
code: MagicString,
options: RenderOptions,
factoryName: string,
extractKeyAttribute: boolean
): {
firstAttribute: JSXAttribute | JSXSpreadAttribute | JSXChild | null;
hasAttributes: boolean;
hasSpread: boolean;
inObject: boolean;
keyAttribute: JSXAttribute | null;
previousEnd: number;
} {
const {
jsxMode: { mode },
openingElement
} = this;
const {
attributes,
end: openingEnd,
start: openingStart,
name: { start: nameStart, end: nameEnd }
} = openingElement;
code.update(openingStart, nameStart, `/*#__PURE__*/${factoryName}(`);
openingElement.render(code, options, { jsxMode: mode });
let keyAttribute: JSXAttribute | null = null;
let hasSpread = false;
let inObject = false;
let previousEnd = nameEnd;
let hasAttributes = false;
let firstAttribute: JSXAttribute | JSXSpreadAttribute | null = null;
for (const attribute of attributes) {
if (attribute instanceof JSXAttribute) {
if (extractKeyAttribute && attribute.name.name === 'key') {
keyAttribute = attribute;
code.remove(previousEnd, attribute.value?.start || attribute.end);
continue;
}
code.appendLeft(previousEnd, ',');
if (!inObject) {
code.prependRight(attribute.start, '{ ');
inObject = true;
}
hasAttributes = true;
} else {
if (inObject) {
if (hasAttributes) {
code.appendLeft(previousEnd, ' ');
}
code.appendLeft(previousEnd, '},');
inObject = false;
} else {
code.appendLeft(previousEnd, ',');
}
hasSpread = true;
}
previousEnd = attribute.end;
if (!firstAttribute) {
firstAttribute = attribute;
}
}
code.remove(attributes.at(-1)?.end || previousEnd, openingEnd);
return { firstAttribute, hasAttributes, hasSpread, inObject, keyAttribute, previousEnd };
}
private wrapAttributes(
code: MagicString,
inObject: boolean,
hasAttributes: boolean,
hasSpread: boolean,
firstAttribute: JSXAttribute | JSXSpreadAttribute | JSXChild | null,
missingAttributesFallback: string,
attributesEnd: number
) {
if (inObject) {
code.appendLeft(attributesEnd, ' }');
}
if (hasSpread) {
if (hasAttributes) {
const { start } = firstAttribute!;
if (firstAttribute instanceof JSXSpreadAttribute) {
code.prependRight(start, '{}, ');
}
code.prependRight(start, 'Object.assign(');
code.appendLeft(attributesEnd, ')');
}
} else if (!hasAttributes) {
code.appendLeft(attributesEnd, `, ${missingAttributesFallback}`);
}
}
}