-
Notifications
You must be signed in to change notification settings - Fork 672
/
Copy pathindex.ts
241 lines (218 loc) · 5.67 KB
/
index.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
import * as CSS from 'csstype'
import { SystemStyleObject, UseThemeFunction, Theme } from './types'
export * from './types'
export function get(
obj: object,
key: string | number,
def?: unknown,
p?: number,
undef?: unknown
): any {
const path = key && typeof key === 'string' ? key.split('.') : [key]
for (p = 0; p < path.length; p++) {
obj = obj ? (obj as any)[path[p]] : undef
}
return obj === undef ? def : obj
}
const defaultBreakpoints = [40, 52, 64].map(n => n + 'em')
const defaultTheme = {
space: [0, 4, 8, 16, 32, 64, 128, 256, 512],
fontSizes: [12, 14, 16, 20, 24, 32, 48, 64, 72],
}
const aliases = {
bg: 'backgroundColor',
m: 'margin',
mt: 'marginTop',
mr: 'marginRight',
mb: 'marginBottom',
ml: 'marginLeft',
mx: 'marginX',
my: 'marginY',
p: 'padding',
pt: 'paddingTop',
pr: 'paddingRight',
pb: 'paddingBottom',
pl: 'paddingLeft',
px: 'paddingX',
py: 'paddingY',
} as const
type Aliases = typeof aliases
export const multiples = {
marginX: ['marginLeft', 'marginRight'],
marginY: ['marginTop', 'marginBottom'],
paddingX: ['paddingLeft', 'paddingRight'],
paddingY: ['paddingTop', 'paddingBottom'],
size: ['width', 'height'],
}
export const scales = {
color: 'colors',
backgroundColor: 'colors',
borderColor: 'colors',
margin: 'space',
marginTop: 'space',
marginRight: 'space',
marginBottom: 'space',
marginLeft: 'space',
marginX: 'space',
marginY: 'space',
padding: 'space',
paddingTop: 'space',
paddingRight: 'space',
paddingBottom: 'space',
paddingLeft: 'space',
paddingX: 'space',
paddingY: 'space',
top: 'space',
right: 'space',
bottom: 'space',
left: 'space',
gridGap: 'space',
gridColumnGap: 'space',
gridRowGap: 'space',
gap: 'space',
columnGap: 'space',
rowGap: 'space',
fontFamily: 'fonts',
fontSize: 'fontSizes',
fontWeight: 'fontWeights',
lineHeight: 'lineHeights',
letterSpacing: 'letterSpacings',
border: 'borders',
borderTop: 'borders',
borderRight: 'borders',
borderBottom: 'borders',
borderLeft: 'borders',
borderWidth: 'borderWidths',
borderStyle: 'borderStyles',
borderRadius: 'radii',
borderTopRightRadius: 'radii',
borderTopLeftRadius: 'radii',
borderBottomRightRadius: 'radii',
borderBottomLeftRadius: 'radii',
borderTopWidth: 'borderWidths',
borderTopColor: 'colors',
borderTopStyle: 'borderStyles',
borderBottomWidth: 'borderWidths',
borderBottomColor: 'colors',
borderBottomStyle: 'borderStyles',
borderLeftWidth: 'borderWidths',
borderLeftColor: 'colors',
borderLeftStyle: 'borderStyles',
borderRightWidth: 'borderWidths',
borderRightColor: 'colors',
borderRightStyle: 'borderStyles',
outlineColor: 'colors',
boxShadow: 'shadows',
textShadow: 'shadows',
zIndex: 'zIndices',
width: 'sizes',
minWidth: 'sizes',
maxWidth: 'sizes',
height: 'sizes',
minHeight: 'sizes',
maxHeight: 'sizes',
flexBasis: 'sizes',
size: 'sizes',
// svg
fill: 'colors',
stroke: 'colors',
} as const
type Scales = typeof scales
const positiveOrNegative = (scale: object, value: string | number) => {
if (typeof value !== 'number' || value >= 0) {
return get(scale, value, value)
}
const absolute = Math.abs(value)
const n = get(scale, absolute, absolute)
if (typeof n === 'string') return '-' + n
return Number(n) * -1
}
const transforms = [
'margin',
'marginTop',
'marginRight',
'marginBottom',
'marginLeft',
'marginX',
'marginY',
'top',
'bottom',
'left',
'right',
].reduce(
(acc, curr) => ({
...acc,
[curr]: positiveOrNegative,
}),
{}
)
const responsive = (styles: Exclude<SystemStyleObject, UseThemeFunction>) => (
theme?: Theme
) => {
const next: Exclude<SystemStyleObject, UseThemeFunction> = {}
const breakpoints =
(theme && (theme.breakpoints as string[])) || defaultBreakpoints
const mediaQueries = [
null,
...breakpoints.map(n => `@media screen and (min-width: ${n})`),
]
for (const key in styles) {
const value =
typeof styles[key] === 'function' ? styles[key](theme) : styles[key]
if (value == null) continue
if (!Array.isArray(value)) {
next[key] = value
continue
}
for (let i = 0; i < value.slice(0, mediaQueries.length).length; i++) {
const media = mediaQueries[i]
if (!media) {
next[key] = value[i]
continue
}
next[media] = next[media] || {}
if (value[i] == null) continue
next[media][key] = value[i]
}
}
return next
}
type CssPropsArgument = { theme: Theme } | Theme
export const css = (args: SystemStyleObject = {}) => (
props: CssPropsArgument = {}
): CSS.Properties => {
const theme: Theme = {
...defaultTheme,
...('theme' in props ? props.theme : props),
}
let result = {}
const obj = typeof args === 'function' ? args(theme) : args
const styles = responsive(obj)(theme)
for (const key in styles) {
const x = styles[key]
const val = typeof x === 'function' ? x(theme) : x
if (key === 'variant') {
const variant = css(get(theme, val))(theme)
result = { ...result, ...variant }
continue
}
if (val && typeof val === 'object') {
result[key] = css(val)(theme)
continue
}
const prop = key in aliases ? aliases[key as keyof Aliases] : key
const scaleName = prop in scales ? scales[prop as keyof Scales] : undefined
const scale = get(theme, scaleName as any, get(theme, prop, {}))
const transform: any = get(transforms, prop, get)
const value = transform(scale, val, val)
if (multiples[prop]) {
const dirs = multiples[prop]
for (let i = 0; i < dirs.length; i++) {
result[dirs[i]] = value
}
} else {
result[prop] = value
}
}
return result
}