-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
tests.tsx
251 lines (229 loc) Β· 5.2 KB
/
tests.tsx
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
/** @jsx jsx */
import * as React from 'react'
import {
ClassNames,
Global,
css,
jsx,
keyframes,
withEmotionCache
} from '@emotion/react'
import { JSX as EmotionJSX } from '@emotion/react/jsx-runtime'
import { CSSInterpolation } from '@emotion/serialize'
declare module '@emotion/react' {
// tslint:disable-next-line: strict-export-declare-modifiers
export interface Theme {
primary: string
secondary: string
primaryColor: string
secondaryColor: string
}
}
;<Global styles={[]} />
;<Global styles={theme => [theme.primaryColor]} />
declare const getStyles: () => CSSInterpolation
;<Global styles={getStyles()} />
declare const getRandomColor: () => string
const ComponentWithCache = withEmotionCache((_props: {}, cache) => {
return (
<div
onClick={() =>
cache.sheet.insert(`div { backgroundColor: ${getRandomColor()} }`)
}
/>
)
})
;<ComponentWithCache ref={() => {}} />
;<div css={{}}>
<h1
css={css`
font-size: 500px;
`}
>
This is really big
</h1>
<Global
styles={{
body: {
backgroundColor: 'hotpink'
}
}}
/>
</div>
;<Global
styles={css`
body {
background-color: black;
}
`}
/>
declare const MyComponent: React.ComponentClass<{
className?: string
world: string
}>
;<MyComponent
css={{
backgroundColor: 'black'
}}
world="is-gone"
/>
const anim0 = keyframes({
from: {
top: 0
},
to: {
top: '20px'
}
})
;<MyComponent
css={{
animationName: anim0
}}
world="of-world"
/>
const anim1 = keyframes`
from: {
margin-left: 50px;
}
to: {
margin-left: 0;
}
`
;<MyComponent
css={{
animationName: anim1
}}
world="of-world"
/>
;<ClassNames>
{({ css, cx, theme }) => {
return (
<div>
<span className={cx('a', undefined, 'b', null, [['abc']])} />
<span
className={css({
color: theme.primaryColor
})}
>
Fst Text
</span>
<span
className={css`
color: ${theme.secondaryColor};
`}
>
Snd Text
</span>
</div>
)
}}
</ClassNames>
;<div
css={theme => css`
color: ${theme.secondaryColor};
`}
/>
{
const CompWithClassNameSupport = (_props: {
prop1: string
className?: string
}) => {
return null
}
;<CompWithClassNameSupport
prop1="test"
css={{
backgroundColor: 'hotpink'
}}
/>
const MemoedCompWithClassNameSupport = React.memo(CompWithClassNameSupport)
;<MemoedCompWithClassNameSupport
prop1="test"
css={{
backgroundColor: 'hotpink'
}}
/>
}
{
const CompWithoutClassNameSupport = (_props: { prop1: string }) => {
return null
}
// TS@next reports an error on a different line, so this has to be in a single line so `test:typescript` can validate this on all TS versions correctly
// $ExpectError
;<CompWithoutClassNameSupport prop1="test" css={{ color: 'hotpink' }} />
const MemoedCompWithoutClassNameSupport = React.memo(
CompWithoutClassNameSupport
)
// TS@next reports an error on a different line, so this has to be in a single line so `test:typescript` can validate this on all TS versions correctly
// $ExpectError
;<MemoedCompWithoutClassNameSupport prop1="test" css={{ color: 'hotpink' }} />
}
{
const CompWithoutProps = (_props: {}) => {
return null
}
// $ExpectError
;<CompWithoutProps css={{ backgroundColor: 'hotpink' }} />
}
{
// based on the code from @types/[email protected]
// https://github.com/DefinitelyTyped/DefinitelyTyped/blob/98fa4486aefd5a1916aa385402467a7157e3c73f/types/react/v17/index.d.ts#L540-L548
type OldFC<P = {}> = OldFunctionComponent<P>
interface OldFunctionComponent<P = {}> {
(
props: React.PropsWithChildren<P>,
context?: any
): React.ReactElement<any, any> | null
propTypes?: React.WeakValidationMap<P> | undefined
contextTypes?: React.ValidationMap<any> | undefined
defaultProps?: Partial<P> | undefined
displayName?: string | undefined
}
// https://github.com/DefinitelyTyped/DefinitelyTyped/issues/40993
// this is really problematic behaviour by @types/react@<18 IMO
// but it's what @types/react did so let's not break it.
const CompWithImplicitChildren: OldFC = () => null
;<CompWithImplicitChildren>
content
<div />
</CompWithImplicitChildren>
}
// Tests for WithConditionalCSSProp
{
// $ExpectType Interpolation<Theme>
type _HasCssPropAsIntended3 = EmotionJSX.LibraryManagedAttributes<
{},
{
className?: string
}
>['css']
// $ExpectType Interpolation<Theme>
type _HasCssPropAsIntended4 = EmotionJSX.LibraryManagedAttributes<
{},
{
className: string
}
>['css']
// $ExpectType Interpolation<Theme>
type _HasCssPropAsIntended5 = EmotionJSX.LibraryManagedAttributes<
{},
{
className?: unknown
}
>['css']
// $ExpectType Interpolation<Theme>
type _HasCssPropAsIntended6 = EmotionJSX.LibraryManagedAttributes<
{},
{
className?: string | Array<string>
}
>['css']
// $ExpectType false
type _NoCssPropAsIntended1 =
'css' extends keyof EmotionJSX.LibraryManagedAttributes<
{},
{ className?: undefined }
>
? true
: false
}