-
Notifications
You must be signed in to change notification settings - Fork 38
/
test.jsx
255 lines (229 loc) · 4.94 KB
/
test.jsx
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
import React from 'react';
const a = <div>
{condition
? <div/>
: <span/>
}
</div>;
function test() {
const a = 1;
const b = 1 << c;
let foo;
foo = (<div key={1}>after parenthesis</div>);
foo = [<div key={1}>after bracket</div>, <div key={2}>after ,</div>];
foo = [
<div key={1}>after bracket</div>,
<div key={2}>after ,</div>
];
// corner case
foo = (
<div>
{
a > 0
? <div></div>
: <div></div>
}
{
a > 0 ?
<div></div> :
<div></div>
}
{<div>after open brace</div>}
<div>after close brace</div>
<div>
<div>test nested</div>
</div>
</div>
);
foo = a > 0 ? <div>after ?</div> : <div>after :</div>;
foo = <div>after =</div>;
foo = a + <div>after +</div>;
foo = a - <div>after -</div>;
foo = a * <div>after *</div>;
foo = a / <div>after /</div>;
foo = a && <div>after &&</div>;
foo = a || <div>after ||</div>;
foo = [].map(x => <div key={x}>after arrow function</div>);
foo = a > <div>after greater than</div>;
foo = a < <div>after less than</div>;
// return <div></div>
// corner case
if (a
< 0) {
a = b
}
// corner case
var a = a
< b / a ? b : a;
// correct
foo = <br />
// TODO corner case
if (a
< foo
) {
a = b
}
foo = <>fragment</>;
foo = <div>[<div>fragment</div>]</div>;
foo = <foo.bar>support membership element</foo.bar>;
foo = <xml:svg>support namespace element</xml:svg>;
async function testAwait() {
await <div>after await</div>;
}
function *testYield() {
yield <div>after yield</div>;
}
if (foo ||
<div></div>
) {
foo = <bar />
}
// should not match this
foo = 1 <a
foo = foo>a
foo = <div>hello, world</div>;
var c = a < foo
return <div>
plain text<br />plain text<br />
plain text<br /><div >plain text</div>some text <br />
plain text<div>after plain text</div>
{foo ? <div>after question mark</div> : <div>after colon</div>}plain text<div>after plain text</div>
<div><div>after element</div></div>
</div>;
}
function test2() {
return (
<>
<div foo="foo, bar">
<div className="aaa, aaaa, aaaaaa">text</div>
<div>{[1, 2].map(x => <span>{ x / 2 }</span>)}</div>
{global.name} text
</div>
<div foo>
{(hoge => {
if (hoge) {
return <div foo-bar foo/>;
}
})()}
</div>
</>
);
}
function tagFollowsPlainText() {
return (
<div>
plain text<br />
<Input type="checkbox" /> Option 1 <br />
<Input type="checkbox" /> Option 2 <br />
<Input type="checkbox" /> Option 3 <br />
<Input type="checkbox" /> Option 4 <br />
</div>
);
}
function testComment() {
return <div>
<div
/* hello */
// hoge
foo:bar="hello"
hoge="\\"
hoge={foo > 0 ? 'foo' : 'bar'} // inline comment
hoge={aaa} /* multiline comment */
hoge=<div>valid</div> // according to the jsx spec, this is equal to {<div></div>}
hoge=<br /> // this is equal to {<br />}
{...this.props}
>
{...testComment()}
</div>
<div
hoge={aaa}
hoge={aaa}
/>
{foo && <div>foo</div>}
{(function () {
return <div>nested</div>
})()}
</div>;
}
function testComponentName() {
// shouldn't get a jsxComponentName on just Line here
let x = <flatLine />;
return (
<FlatList // inline comment
style={{display: 'none', fontSize: 100}}
data={[{ key: "test", icon: <Icon style={APPICON} icon="test" /> }]}
numColumns={4}
horizontal={false}
renderItem={({ item }) => (
<View>
<View.Icon>
{item.icon}
</View.Icon>
</View>
)}
/>
)
}
function testLitSyntax({ logs = [], ...props }, { show }) {
return html`
<div class="logs" ...${props}>
<button onClick=${() => this.toggle()}>Down</button>
<!-- If expanded, render all logs: -->
${show && jsx`
<section class="logs" ...${props}>
<!-- maps and values work just like JSX -->
${logs.map(log => html`
<${Log} class="log" ...${log} />
`)}
<!--
multiline
comment
-->
<${Footer} class="footer">
footer content
<//>
</section>
`}
</div>
`;
}
// #79
const Foobar = () => {
return <div>
{(() => {
const foo="foo";
return <input className={"foo"}
value="bar"/>; // indent decreased!
})()}
</div>;
};
const Foobar = () => {
return <div>
{(() => {
return <input className="foo"
value="bar"/>;
})()}
</div>;
};
function testIndent() {
const a = <div>
</div>;
return <div>
</div>;
}
module.exports = <div>
<div>
{
<div>
</div>
}
</div>
</div>;
export default <cx>
<MyComponent
attr={1}
/>
<OtherComponent
attr={2}
/>
</cx>