-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathJSXOpeningElement.ts
32 lines (29 loc) · 1.16 KB
/
JSXOpeningElement.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
import type MagicString from 'magic-string';
import type { NormalizedJsxOptions } from '../../rollup/types';
import type { NodeRenderOptions, RenderOptions } from '../../utils/renderHelpers';
import type JSXAttribute from './JSXAttribute';
import type JSXIdentifier from './JSXIdentifier';
import type JSXMemberExpression from './JSXMemberExpression';
import type JSXNamespacedName from './JSXNamespacedName';
import type JSXSpreadAttribute from './JSXSpreadAttribute';
import type * as NodeType from './NodeType';
import { NodeBase, onlyIncludeSelf } from './shared/Node';
export default class JSXOpeningElement extends NodeBase {
type!: NodeType.tJSXOpeningElement;
name!: JSXIdentifier | JSXMemberExpression | JSXNamespacedName;
attributes!: (JSXAttribute | JSXSpreadAttribute)[];
selfClosing!: boolean;
render(
code: MagicString,
options: RenderOptions,
{
jsxMode = (this.scope.context.options.jsx as NormalizedJsxOptions).mode
}: NodeRenderOptions = {}
): void {
this.name.render(code, options);
for (const attribute of this.attributes) {
attribute.render(code, options, { jsxMode });
}
}
}
JSXOpeningElement.prototype.includeNode = onlyIncludeSelf;