-
-
Notifications
You must be signed in to change notification settings - Fork 32.3k
/
style.js
79 lines (62 loc) · 1.91 KB
/
style.js
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
import { unstable_capitalize as capitalize } from '@material-ui/utils';
import responsivePropType from './responsivePropType';
import { handleBreakpoints } from './breakpoints';
export function getPath(obj, path) {
if (!path || typeof path !== 'string') {
return null;
}
return path.split('.').reduce((acc, item) => (acc && acc[item] ? acc[item] : null), obj);
}
function getValue(themeMapping, transform, propValueFinal, userValue = propValueFinal) {
let value;
if (typeof themeMapping === 'function') {
value = themeMapping(propValueFinal);
} else if (Array.isArray(themeMapping)) {
value = themeMapping[propValueFinal] || userValue;
} else {
value = getPath(themeMapping, propValueFinal) || userValue;
}
if (transform) {
value = transform(value);
}
return value;
}
function style(options) {
const { prop, cssProperty = options.prop, themeKey, transform } = options;
const fn = (props) => {
if (props[prop] == null) {
return null;
}
const propValue = props[prop];
const theme = props.theme;
const themeMapping = getPath(theme, themeKey) || {};
const styleFromPropValue = (propValueFinal) => {
let value = getValue(themeMapping, transform, propValueFinal);
if (propValueFinal === value && typeof propValueFinal === 'string') {
// Haven't found value
value = getValue(
themeMapping,
transform,
`${prop}${propValueFinal === 'default' ? '' : capitalize(propValueFinal)}`,
propValueFinal,
);
}
if (cssProperty === false) {
return value;
}
return {
[cssProperty]: value,
};
};
return handleBreakpoints(props, propValue, styleFromPropValue);
};
fn.propTypes =
process.env.NODE_ENV !== 'production'
? {
[prop]: responsivePropType,
}
: {};
fn.filterProps = [prop];
return fn;
}
export default style;