mirror of
https://github.com/idanoo/GoScrobble
synced 2025-07-23 07:59:15 +00:00
0.2.0 - Mid migration
This commit is contained in:
parent
139e6a915e
commit
7e38fdbd7d
42393 changed files with 5358157 additions and 62 deletions
1
web/node_modules/@material-ui/styles/esm/withStyles/index.js
generated
vendored
Normal file
1
web/node_modules/@material-ui/styles/esm/withStyles/index.js
generated
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
export { default } from './withStyles';
|
123
web/node_modules/@material-ui/styles/esm/withStyles/withStyles.js
generated
vendored
Normal file
123
web/node_modules/@material-ui/styles/esm/withStyles/withStyles.js
generated
vendored
Normal file
|
@ -0,0 +1,123 @@
|
|||
import _extends from "@babel/runtime/helpers/esm/extends";
|
||||
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
||||
import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import hoistNonReactStatics from 'hoist-non-react-statics';
|
||||
import { chainPropTypes, getDisplayName } from '@material-ui/utils';
|
||||
import makeStyles from '../makeStyles';
|
||||
import getThemeProps from '../getThemeProps';
|
||||
import useTheme from '../useTheme'; // Link a style sheet with a component.
|
||||
// It does not modify the component passed to it;
|
||||
// instead, it returns a new component, with a `classes` property.
|
||||
|
||||
var withStyles = function withStyles(stylesOrCreator) {
|
||||
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
||||
return function (Component) {
|
||||
var defaultTheme = options.defaultTheme,
|
||||
_options$withTheme = options.withTheme,
|
||||
withTheme = _options$withTheme === void 0 ? false : _options$withTheme,
|
||||
name = options.name,
|
||||
stylesOptions = _objectWithoutProperties(options, ["defaultTheme", "withTheme", "name"]);
|
||||
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
if (Component === undefined) {
|
||||
throw new Error(['You are calling withStyles(styles)(Component) with an undefined component.', 'You may have forgotten to import it.'].join('\n'));
|
||||
}
|
||||
}
|
||||
|
||||
var classNamePrefix = name;
|
||||
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
if (!name) {
|
||||
// Provide a better DX outside production.
|
||||
var displayName = getDisplayName(Component);
|
||||
|
||||
if (displayName !== undefined) {
|
||||
classNamePrefix = displayName;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var useStyles = makeStyles(stylesOrCreator, _extends({
|
||||
defaultTheme: defaultTheme,
|
||||
Component: Component,
|
||||
name: name || Component.displayName,
|
||||
classNamePrefix: classNamePrefix
|
||||
}, stylesOptions));
|
||||
var WithStyles = /*#__PURE__*/React.forwardRef(function WithStyles(props, ref) {
|
||||
var classesProp = props.classes,
|
||||
innerRef = props.innerRef,
|
||||
other = _objectWithoutProperties(props, ["classes", "innerRef"]); // The wrapper receives only user supplied props, which could be a subset of
|
||||
// the actual props Component might receive due to merging with defaultProps.
|
||||
// So copying it here would give us the same result in the wrapper as well.
|
||||
|
||||
|
||||
var classes = useStyles(_extends({}, Component.defaultProps, props));
|
||||
var theme;
|
||||
var more = other;
|
||||
|
||||
if (typeof name === 'string' || withTheme) {
|
||||
// name and withTheme are invariant in the outer scope
|
||||
// eslint-disable-next-line react-hooks/rules-of-hooks
|
||||
theme = useTheme() || defaultTheme;
|
||||
|
||||
if (name) {
|
||||
more = getThemeProps({
|
||||
theme: theme,
|
||||
name: name,
|
||||
props: other
|
||||
});
|
||||
} // Provide the theme to the wrapped component.
|
||||
// So we don't have to use the `withTheme()` Higher-order Component.
|
||||
|
||||
|
||||
if (withTheme && !more.theme) {
|
||||
more.theme = theme;
|
||||
}
|
||||
}
|
||||
|
||||
return /*#__PURE__*/React.createElement(Component, _extends({
|
||||
ref: innerRef || ref,
|
||||
classes: classes
|
||||
}, more));
|
||||
});
|
||||
process.env.NODE_ENV !== "production" ? WithStyles.propTypes = {
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes: PropTypes.object,
|
||||
|
||||
/**
|
||||
* Use that prop to pass a ref to the decorated component.
|
||||
* @deprecated
|
||||
*/
|
||||
innerRef: chainPropTypes(PropTypes.oneOfType([PropTypes.func, PropTypes.object]), function (props) {
|
||||
if (props.innerRef == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return null; // return new Error(
|
||||
// 'Material-UI: The `innerRef` prop is deprecated and will be removed in v5. ' +
|
||||
// 'Refs are now automatically forwarded to the inner component.',
|
||||
// );
|
||||
})
|
||||
} : void 0;
|
||||
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
WithStyles.displayName = "WithStyles(".concat(getDisplayName(Component), ")");
|
||||
}
|
||||
|
||||
hoistNonReactStatics(WithStyles, Component);
|
||||
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
// Exposed for test purposes.
|
||||
WithStyles.Naked = Component;
|
||||
WithStyles.options = options;
|
||||
WithStyles.useStyles = useStyles;
|
||||
}
|
||||
|
||||
return WithStyles;
|
||||
};
|
||||
};
|
||||
|
||||
export default withStyles;
|
Loading…
Add table
Add a link
Reference in a new issue