forked from nandorojo/dripsy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.tsx
More file actions
320 lines (298 loc) · 7.09 KB
/
App.tsx
File metadata and controls
320 lines (298 loc) · 7.09 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
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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
import React, { useRef } from 'react'
import {
View,
Text as DripText,
createThemedComponent,
DripsyProvider,
Container,
Pressable,
makeTheme,
TextInput as DripsyInput,
useResponsiveValue,
ActivityIndicator,
styled,
H4,
ScrollView,
Sx,
} from 'dripsy'
// Import from core
import { Gradient } from 'dripsy/gradient'
import {
Text,
TextInput,
View as NativeView,
KeyboardAvoidingView,
} from 'react-native'
const theme = makeTheme({
colors: {
primary: 'orange',
secondary: 'black',
background: 'white',
callout: 'pink',
accent: 'green',
muted: 'gray',
warning: 'yellow',
error: 'red',
gray: '#888',
nested: {
one: '',
},
},
space: {
$none: 0,
$0: 0,
$1: 4,
$2: 8,
$3: 16,
$4: 32,
$5: 64,
$6: 128,
$7: 256,
$8: 512,
},
types: {
onlyAllowThemeValues: {
// let's only restrict colors!
colors: 'always',
space: 'always',
},
// strictVariants: true,
},
shadows: {
md: {
shadowOffset: {
width: 0,
height: 10,
},
shadowOpacity: 0.8,
shadowRadius: 14,
elevation: 25,
shadowColor: 'background',
},
},
text: {
primary: {
fontSize: 40,
},
secondary: {
fontSize: 60,
},
},
sizes: {
container: 700,
},
buttons: {
primary: {
backgroundColor: 'primary',
},
},
textShadows: {
onImage: {
textShadowOffset: { width: 1, height: 1 },
textShadowRadius: 5,
textShadowColor: 'gray',
},
},
linearGradients: {
strong: ['primary', 'secondary'],
light: ['red', 'green'],
},
layout: {
wide: {},
narrow: {},
},
// space: [0, 4, 8, 16, 32, 64, 128, 256, 512],
// space: {
// $0: 0,
// $1: 4,
// $2: 8,
// $3: 16,
// $4: 32,
// $5: 64,
// $6: 128,
// $7: 256,
// $8: 512,
// },
fontWeights: {
black: '500',
},
// types: {
// onlyAllowThemeValues: {
// // space: 'always',
// // colors: 'always',
// },
// reactNativeTypesOnly: false,
// },
aliases: {
www: 'color',
},
})
const G = createThemedComponent(Text, {
themeKey: 'text',
defaultVariant: 'primary',
})
const WithVariant = styled(Text, {
themeKey: 'text',
})()
const WithSecondVariant = styled(WithVariant, {
themeKey: 'buttons',
})()
const FinalWithVariant = () => <WithSecondVariant variant="primary" />
export const MyView = styled(NativeView)({})
export type MyViewElement = React.ElementRef<typeof MyView>
export type TestElement = MyViewElement extends never ? never : 'ok'
// should not have TS errors because element type should not be never ✅
export const testElement: { el: TestElement } = { el: 'ok' }
export const ExtendedComp = styled(KeyboardAvoidingView)({})
export const ExtendedCompWithExtraProps = styled<
React.ComponentProps<typeof KeyboardAvoidingView> & { custom?: boolean }
>(KeyboardAvoidingView)({})
export const ExtendedCompWithExtraProps2 = styled(KeyboardAvoidingView)<
React.ComponentProps<typeof KeyboardAvoidingView> & { custom?: boolean }
>({})
export const ExtendA = () => (
<ExtendedComp
/* @ts-expect-error behavior cannot be 'test' */
behavior="test"
/>
)
/* should not error */
export const ExtendB = () => <ExtendedComp behavior="padding" />
export const ExtendC = () => (
<ExtendedComp
/* @ts-expect-error custom does not exist */
custom="test"
/>
)
export const ExtendE = () => (
<ExtendedCompWithExtraProps
/* @ts-expect-error behavior cannot be 'test' */
behavior="test"
/>
)
/* should not error */
export const ExtendF = () => <ExtendedCompWithExtraProps behavior="padding" />
export const ExtendG = () => (
<ExtendedCompWithExtraProps
/* @ts-expect-error custom cannot be string */
custom="test"
/>
)
/* should not error */
export const ExtendH = () => <ExtendedCompWithExtraProps custom={false} />
export const ExtendI = () => <ExtendedCompWithExtraProps2 behavior="height" />
/* should not error */
export const ExtendJ = () => <ExtendedCompWithExtraProps2 behavior="padding" />
export const ExtendK = () => (
<ExtendedCompWithExtraProps2
/* @ts-expect-error custom cannot be string */
custom="test"
/>
)
/* should not error */
export const ExtendL = () => <ExtendedCompWithExtraProps2 custom />
const sx: Sx = {}
const ResponsiveSquare = () => {
// Return literal values:
const textColor = useResponsiveValue(['red', 'green', 'blue'])
// Or provide a function to access theme values:
const squareColor = useResponsiveValue((theme) => [theme?.colors?.background])
const ref = useRef<NativeView>(null)
const input = useRef<TextInput>(null)
return (
<View
sx={{
bg: 'background',
padding: ['$3'],
pb: (theme) => 0,
paddingHorizontal: '$4',
marginVertical: '$0',
variant: 'buttons.primary',
www: 'accent',
...sx,
}}
variant="buttons.primary"
>
<View ref={ref} />
<DripsyInput ref={input} placeholderTextColor="accent" />
<DripText
sx={{ color: 'accent', px: '$0' }}
variants={['primary']}
variant="primary"
>
Hello
</DripText>
<ActivityIndicator color="callout" />
</View>
)
}
type MyTheme = typeof theme
declare module 'dripsy' {
// eslint-disable-next-line @typescript-eslint/no-empty-interface
interface DripsyCustomTheme extends MyTheme {}
}
export default function App() {
const [state, toggleState] = React.useReducer((s) => !s, true)
return (
<DripsyProvider theme={theme}>
<ScrollView variant="buttons.primary" />
<Container variant="narrow">
<View
sx={{
color: 'primary',
}}
variant="shadows.md"
>
<H4
sx={{
boxShadow: [null, 'md'],
textShadow: 'onImage',
variant: 'text.primary',
fontWeight: 400,
transform: [
{
translateX: 1,
},
],
flex: 1,
}}
variant="primary"
>
Intellisense for shadows!
</H4>
<G variant="primary">Hey</G>
<G>Hi!</G>
<View sx={{ p: '$1' }}>
<Text>Card</Text>
</View>
<ResponsiveSquare />
<Gradient
sx={{ height: 50, width: 50, my: '$3' }}
gradient="strong"
variant="layout.wide"
colors={['accent', 'nested.one']}
/>
<Pressable
onPress={toggleState}
style={({ hovered, pressed }) => ({
backgroundColor: pressed ? 'green' : hovered ? 'cyan' : 'white',
})}
// sx={(theme) => ({
// bg: theme.colors.primary,
// })}
>
{({ pressed }) => (
<View
sx={{
flex: 1,
}}
>
<Text>You can press me!</Text>
</View>
)}
</Pressable>
</View>
</Container>
</DripsyProvider>
)
}