-
Notifications
You must be signed in to change notification settings - Fork 4
/
jsx.ts
273 lines (238 loc) · 6.64 KB
/
jsx.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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
/**
MIT License
Copyright (c) 2021 - present, Yusuke Wada and Hono contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
type Child = string | number | JSXNode | Child[];
type Props = {
// deno-lint-ignore no-explicit-any
[key: string]: any;
class?: string;
style?: string;
dangerouslySetInnerHTML?: { __html: string };
onclick?: string;
};
declare global {
namespace JSX {
type Element =
| JSXFunctionNode
| JSXNode
| JSXFragmentNode;
interface IntrinsicElements {
[tagName: string]: Props;
}
}
}
const emptyTags = [
"area",
"base",
"br",
"col",
"embed",
"hr",
"img",
"input",
"keygen",
"link",
"meta",
"param",
"source",
"track",
"wbr",
];
const booleanAttributes = [
"allowfullscreen",
"async",
"autofocus",
"autoplay",
"checked",
"controls",
"default",
"defer",
"disabled",
"formnovalidate",
"hidden",
"inert",
"ismap",
"itemscope",
"loop",
"multiple",
"muted",
"nomodule",
"novalidate",
"open",
"playsinline",
"readonly",
"required",
"reversed",
"selected",
];
const escapeRegexp = /[&<>"]/;
// The `escapeToBuffer` implementation is based on code from the MIT licensed `react-dom` package.
// https://github.com/facebook/react/blob/main/packages/react-dom/src/server/escapeTextForBrowser.js
const escapeToBuffer = (str: string, buffer: string[]): void => {
const match = str.search(escapeRegexp);
if (match === -1) {
buffer[0] += str;
return;
}
let escape;
let index;
let lastIndex = 0;
for (index = match; index < str.length; index++) {
switch (str.charCodeAt(index)) {
case 34: // "
escape = """;
break;
case 38: // &
escape = "&";
break;
case 60: // <
escape = "<";
break;
case 62: // >
escape = ">";
break;
default:
continue;
}
buffer[0] += str.substring(lastIndex, index) + escape;
lastIndex = index + 1;
}
buffer[0] += str.substring(lastIndex, index);
};
const childrenToStringToBuffer = (
children: Child[],
buffer: string[],
): void => {
for (let i = 0, len = children.length; i < len; i++) {
const child = children[i];
if (typeof child === "string") {
escapeToBuffer(child, buffer);
} else if (
typeof child === "boolean" || child === null || child === undefined
) {
continue;
} else if (child instanceof JSXNode) {
child.toStringToBuffer(buffer);
} else if (
typeof child === "number" ||
(child as unknown as { isEscaped: boolean }).isEscaped
) {
buffer[0] += child;
} else {
// `child` type is `Child[]`, so stringify recursively
childrenToStringToBuffer(child, buffer);
}
}
};
export type FC<T = Props> = (props: T) => JSX.Element | null;
export class JSXNode {
tag: string | CallableFunction;
props: Props;
children: Child[];
isEscaped: true = true;
constructor(tag: string | CallableFunction, props: Props, children: Child[]) {
this.tag = tag;
this.props = props;
this.children = children;
}
toString(): string {
const buffer: string[] = [""];
this.toStringToBuffer(buffer);
return buffer[0];
}
toStringToBuffer(buffer: string[]): void {
const tag = this.tag as string;
const props = this.props;
let { children } = this;
buffer[0] += `<${tag}`;
const propsKeys = Object.keys(props || {});
for (let i = 0, len = propsKeys.length; i < len; i++) {
const v = props[propsKeys[i]];
if (typeof v === "string") {
buffer[0] += ` ${propsKeys[i]}="`;
escapeToBuffer(v, buffer);
buffer[0] += '"';
} else if (typeof v === "number") {
buffer[0] += ` ${propsKeys[i]}="${v}"`;
} else if (v === null || v === undefined) {
// Do nothing
} else if (
typeof v === "boolean" && booleanAttributes.includes(propsKeys[i])
) {
if (v) {
buffer[0] += ` ${propsKeys[i]}=""`;
}
} else if (propsKeys[i] === "dangerouslySetInnerHTML") {
if (children.length > 0) {
throw "Can only set one of `children` or `props.dangerouslySetInnerHTML`.";
}
// deno-lint-ignore no-explicit-any
const escapedString = new String(v.__html) as any;
escapedString.isEscaped = true;
children = [escapedString];
} else {
buffer[0] += ` ${propsKeys[i]}="`;
escapeToBuffer(v.toString(), buffer);
buffer[0] += '"';
}
}
buffer[0] += ">";
if (emptyTags.includes(tag as string)) {
return;
}
childrenToStringToBuffer(children, buffer);
buffer[0] += `</${tag}>`;
}
}
class JSXFunctionNode extends JSXNode {
toStringToBuffer(buffer: string[]): void {
const { children } = this;
// deno-lint-ignore ban-types
const res = (this.tag as Function).call(null, {
...this.props,
children: children.length <= 1 ? children[0] : children,
});
if (res instanceof JSXNode) {
res.toStringToBuffer(buffer);
} else if (typeof res === "number" || res.isEscaped) {
buffer[0] += res;
} else {
escapeToBuffer(res, buffer);
}
}
}
class JSXFragmentNode extends JSXNode {
toStringToBuffer(buffer: string[]): void {
childrenToStringToBuffer(this.children, buffer);
}
}
export const h = (
tag: string | CallableFunction,
props: Props,
...children: Child[]
): JSX.Element => {
if (typeof tag === "function") {
return new JSXFunctionNode(tag, props, children);
} else {
return new JSXNode(tag, props, children);
}
};
export const Fragment = (
props: { key?: string; children?: Child[] },
): JSX.Element => new JSXFragmentNode("", {}, props.children || []);