-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreact-jsx.ts
More file actions
243 lines (205 loc) · 6.32 KB
/
react-jsx.ts
File metadata and controls
243 lines (205 loc) · 6.32 KB
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
import { parseSync } from 'oxc-parser'
import type {
Expression,
JSXAttribute,
JSXChild,
JSXElement,
JSXFragment,
JSXSpreadAttribute,
} from '@oxc-project/types'
import {
buildTemplate,
evaluateExpression,
extractRootNode,
formatTaggedTemplateParserError,
getIdentifierName,
normalizeJsxTextSegments,
parserOptions,
type TemplateContext,
} from '../runtime/shared.js'
import {
Fragment,
createElement,
type ComponentType,
type DOMAttributes,
type EventHandler,
type JSX as ReactJSX,
type PropsWithChildren,
type ReactElement,
type ReactNode,
type Ref,
type SyntheticEvent,
} from 'react'
export type ReactJsxComponent<Props = Record<string, unknown>> = ComponentType<
PropsWithChildren<Props>
>
export type ReactJsxRenderable = ReactNode
export type ReactJsxChildren = ReactJsxRenderable | ReactJsxRenderable[]
export type ReactJsxRef<T> = Ref<T>
export type ReactJsxEventHandler<E extends SyntheticEvent> = EventHandler<E>
export type ReactJsxDomAttributes<T = unknown> = DOMAttributes<T>
export type ReactJsxIntrinsicElements = ReactJSX.IntrinsicElements
export type ReactJsxIntrinsicElement<Tag extends keyof ReactJsxIntrinsicElements> =
ReactJsxIntrinsicElements[Tag]
type ReactJsxContext = TemplateContext<ReactJsxComponent>
const isIterable = (value: unknown): value is Iterable<unknown> => {
if (!value || typeof value === 'string') {
return false
}
return typeof (value as Iterable<unknown>)[Symbol.iterator] === 'function'
}
const isPromiseLike = (value: unknown): value is PromiseLike<unknown> => {
if (!value || (typeof value !== 'object' && typeof value !== 'function')) {
return false
}
return typeof (value as { then?: unknown }).then === 'function'
}
const appendReactChild = (bucket: ReactNode[], value: unknown) => {
if (value === null || value === undefined) {
return
}
if (typeof value === 'boolean') {
return
}
if (isPromiseLike(value)) {
throw new Error('Async values are not supported inside reactJsx template results.')
}
if (Array.isArray(value)) {
value.forEach(entry => appendReactChild(bucket, entry))
return
}
if (isIterable(value)) {
for (const entry of value as Iterable<unknown>) {
appendReactChild(bucket, entry)
}
return
}
bucket.push(value as ReactNode)
}
const evaluateExpressionForReact = (
expression: Expression | JSXElement | JSXFragment,
ctx: ReactJsxContext,
) => evaluateExpression(expression, ctx, node => evaluateReactJsxNode(node, ctx))
const resolveAttributes = (
attributes: (JSXAttribute | JSXSpreadAttribute)[],
ctx: ReactJsxContext,
) => {
const props: Record<string, unknown> = {}
attributes.forEach(attribute => {
if (attribute.type === 'JSXSpreadAttribute') {
const spreadValue = evaluateExpressionForReact(attribute.argument, ctx)
if (spreadValue && typeof spreadValue === 'object' && !Array.isArray(spreadValue)) {
Object.assign(props, spreadValue)
}
return
}
const name = getIdentifierName(attribute.name)
if (!attribute.value) {
props[name] = true
return
}
if (attribute.value.type === 'Literal') {
props[name] = attribute.value.value
return
}
if (attribute.value.type === 'JSXExpressionContainer') {
if (attribute.value.expression.type === 'JSXEmptyExpression') {
return
}
props[name] = evaluateExpressionForReact(attribute.value.expression, ctx)
}
})
return props
}
const evaluateReactJsxChildren = (children: JSXChild[], ctx: ReactJsxContext) => {
const resolved: ReactNode[] = []
children.forEach(child => {
switch (child.type) {
case 'JSXText': {
const segments = normalizeJsxTextSegments(child.value, ctx.placeholders)
segments.forEach(segment => appendReactChild(resolved, segment))
break
}
case 'JSXExpressionContainer': {
if (child.expression.type === 'JSXEmptyExpression') {
break
}
appendReactChild(resolved, evaluateExpressionForReact(child.expression, ctx))
break
}
case 'JSXSpreadChild': {
const spreadValue = evaluateExpressionForReact(child.expression, ctx)
if (spreadValue !== undefined && spreadValue !== null) {
appendReactChild(resolved, spreadValue)
}
break
}
case 'JSXElement':
case 'JSXFragment': {
resolved.push(evaluateReactJsxNode(child, ctx))
break
}
}
})
return resolved
}
const createReactElement = (
type: string | ReactJsxComponent,
props: Record<string, unknown>,
children: ReactNode[],
) => {
return createElement(type as never, props, ...children)
}
const evaluateReactJsxElement = (
element: JSXElement,
ctx: ReactJsxContext,
): ReactElement => {
const opening = element.openingElement
const tagName = getIdentifierName(opening.name)
const component = ctx.components.get(tagName)
const props = resolveAttributes(opening.attributes, ctx)
const childValues = evaluateReactJsxChildren(element.children, ctx)
if (component) {
return createReactElement(component, props, childValues)
}
if (/[A-Z]/.test(tagName[0] ?? '')) {
throw new Error(
`Unknown component "${tagName}". Did you interpolate it with the template literal?`,
)
}
return createReactElement(tagName, props, childValues)
}
const evaluateReactJsxNode = (
node: JSXElement | JSXFragment,
ctx: ReactJsxContext,
): ReactElement => {
if (node.type === 'JSXFragment') {
const children = evaluateReactJsxChildren(node.children, ctx)
return createElement(Fragment, null, ...children)
}
return evaluateReactJsxElement(node, ctx)
}
export const reactJsx = (
templates: TemplateStringsArray,
...values: unknown[]
): ReactElement => {
const build = buildTemplate<ReactJsxComponent>(templates, values)
const result = parseSync('inline.jsx', build.source, parserOptions)
if (result.errors.length > 0) {
throw new Error(
formatTaggedTemplateParserError(
'reactJsx',
templates,
build.diagnostics,
result.errors[0]!,
),
)
}
const root = extractRootNode(result.program)
const ctx: ReactJsxContext = {
source: build.source,
placeholders: build.placeholders,
components: new Map(build.bindings.map(binding => [binding.name, binding.value])),
}
return evaluateReactJsxNode(root, ctx)
}