84 lines
2.6 KiB
Plaintext
84 lines
2.6 KiB
Plaintext
|
"use strict";
|
||
|
|
||
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.default = void 0;
|
||
|
exports.getPath = getPath;
|
||
|
exports.getStyleValue = getStyleValue;
|
||
|
var _capitalize = _interopRequireDefault(require("@mui/utils/capitalize"));
|
||
|
var _responsivePropType = _interopRequireDefault(require("./responsivePropType"));
|
||
|
var _breakpoints = require("./breakpoints");
|
||
|
function getPath(obj, path, checkVars = true) {
|
||
|
if (!path || typeof path !== 'string') {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
// Check if CSS variables are used
|
||
|
if (obj && obj.vars && checkVars) {
|
||
|
const val = `vars.${path}`.split('.').reduce((acc, item) => acc && acc[item] ? acc[item] : null, obj);
|
||
|
if (val != null) {
|
||
|
return val;
|
||
|
}
|
||
|
}
|
||
|
return path.split('.').reduce((acc, item) => {
|
||
|
if (acc && acc[item] != null) {
|
||
|
return acc[item];
|
||
|
}
|
||
|
return null;
|
||
|
}, obj);
|
||
|
}
|
||
|
function getStyleValue(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, userValue, themeMapping);
|
||
|
}
|
||
|
return value;
|
||
|
}
|
||
|
function style(options) {
|
||
|
const {
|
||
|
prop,
|
||
|
cssProperty = options.prop,
|
||
|
themeKey,
|
||
|
transform
|
||
|
} = options;
|
||
|
|
||
|
// false positive
|
||
|
// eslint-disable-next-line react/function-component-definition
|
||
|
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 = getStyleValue(themeMapping, transform, propValueFinal);
|
||
|
if (propValueFinal === value && typeof propValueFinal === 'string') {
|
||
|
// Haven't found value
|
||
|
value = getStyleValue(themeMapping, transform, `${prop}${propValueFinal === 'default' ? '' : (0, _capitalize.default)(propValueFinal)}`, propValueFinal);
|
||
|
}
|
||
|
if (cssProperty === false) {
|
||
|
return value;
|
||
|
}
|
||
|
return {
|
||
|
[cssProperty]: value
|
||
|
};
|
||
|
};
|
||
|
return (0, _breakpoints.handleBreakpoints)(props, propValue, styleFromPropValue);
|
||
|
};
|
||
|
fn.propTypes = process.env.NODE_ENV !== 'production' ? {
|
||
|
[prop]: _responsivePropType.default
|
||
|
} : {};
|
||
|
fn.filterProps = [prop];
|
||
|
return fn;
|
||
|
}
|
||
|
var _default = exports.default = style;
|