mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
61 lines
1.7 KiB
JavaScript
61 lines
1.7 KiB
JavaScript
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
import responsivePropType from './responsivePropType';
|
|
import { handleBreakpoints } from './breakpoints';
|
|
|
|
function getPath(obj, path) {
|
|
if (!path || typeof path !== 'string') {
|
|
return null;
|
|
}
|
|
|
|
return path.split('.').reduce(function (acc, item) {
|
|
return acc && acc[item] ? acc[item] : null;
|
|
}, obj);
|
|
}
|
|
|
|
function style(options) {
|
|
var prop = options.prop,
|
|
_options$cssProperty = options.cssProperty,
|
|
cssProperty = _options$cssProperty === void 0 ? options.prop : _options$cssProperty,
|
|
themeKey = options.themeKey,
|
|
transform = options.transform;
|
|
|
|
var fn = function fn(props) {
|
|
if (props[prop] == null) {
|
|
return null;
|
|
}
|
|
|
|
var propValue = props[prop];
|
|
var theme = props.theme;
|
|
var themeMapping = getPath(theme, themeKey) || {};
|
|
|
|
var styleFromPropValue = function styleFromPropValue(propValueFinal) {
|
|
var value;
|
|
|
|
if (typeof themeMapping === 'function') {
|
|
value = themeMapping(propValueFinal);
|
|
} else if (Array.isArray(themeMapping)) {
|
|
value = themeMapping[propValueFinal] || propValueFinal;
|
|
} else {
|
|
value = getPath(themeMapping, propValueFinal) || propValueFinal;
|
|
|
|
if (transform) {
|
|
value = transform(value);
|
|
}
|
|
}
|
|
|
|
if (cssProperty === false) {
|
|
return value;
|
|
}
|
|
|
|
return _defineProperty({}, cssProperty, value);
|
|
};
|
|
|
|
return handleBreakpoints(props, propValue, styleFromPropValue);
|
|
};
|
|
|
|
fn.propTypes = process.env.NODE_ENV !== 'production' ? _defineProperty({}, prop, responsivePropType) : {};
|
|
fn.filterProps = [prop];
|
|
return fn;
|
|
}
|
|
|
|
export default style; |