Completely updated React, fixed #11, (hopefully)
This commit is contained in:
131
goTorrentWebUI/node_modules/material-ui/es/Hidden/HiddenCss.js
generated
vendored
131
goTorrentWebUI/node_modules/material-ui/es/Hidden/HiddenCss.js
generated
vendored
@@ -1,36 +1,31 @@
|
||||
function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; }
|
||||
|
||||
/* eslint-disable flowtype/require-valid-file-annotation */
|
||||
|
||||
import _Object$keys from 'babel-runtime/core-js/object/keys';
|
||||
import _objectWithoutProperties from 'babel-runtime/helpers/objectWithoutProperties';
|
||||
import React from 'react';
|
||||
|
||||
import PropTypes from 'prop-types';
|
||||
import warning from 'warning';
|
||||
import { keys as breakpointKeys } from '../styles/createBreakpoints';
|
||||
import { capitalizeFirstLetter } from '../utils/helpers';
|
||||
import { capitalize } from '../utils/helpers';
|
||||
import withStyles from '../styles/withStyles';
|
||||
|
||||
|
||||
function generateStyles(theme) {
|
||||
const styles = theme => {
|
||||
const hidden = {
|
||||
display: 'none'
|
||||
};
|
||||
|
||||
return breakpointKeys.reduce((styles, key) => {
|
||||
styles[`only${capitalizeFirstLetter(key)}`] = {
|
||||
return breakpointKeys.reduce((acc, key) => {
|
||||
acc[`only${capitalize(key)}`] = {
|
||||
[theme.breakpoints.only(key)]: hidden
|
||||
};
|
||||
styles[`${key}Up`] = {
|
||||
acc[`${key}Up`] = {
|
||||
[theme.breakpoints.up(key)]: hidden
|
||||
};
|
||||
styles[`${key}Down`] = {
|
||||
acc[`${key}Down`] = {
|
||||
[theme.breakpoints.down(key)]: hidden
|
||||
};
|
||||
|
||||
return styles;
|
||||
return acc;
|
||||
}, {});
|
||||
}
|
||||
|
||||
const styles = theme => generateStyles(theme);
|
||||
};
|
||||
|
||||
/**
|
||||
* @ignore - internal component.
|
||||
@@ -39,23 +34,28 @@ function HiddenCss(props) {
|
||||
const {
|
||||
children,
|
||||
classes,
|
||||
only,
|
||||
xsUp,
|
||||
smUp,
|
||||
mdUp,
|
||||
className,
|
||||
lgDown,
|
||||
lgUp,
|
||||
mdDown,
|
||||
mdUp,
|
||||
only,
|
||||
smDown,
|
||||
smUp,
|
||||
xlDown,
|
||||
xlUp,
|
||||
xsDown,
|
||||
smDown,
|
||||
mdDown,
|
||||
lgDown,
|
||||
xlDown
|
||||
xsUp
|
||||
} = props,
|
||||
other = _objectWithoutProperties(props, ['children', 'classes', 'only', 'xsUp', 'smUp', 'mdUp', 'lgUp', 'xlUp', 'xsDown', 'smDown', 'mdDown', 'lgDown', 'xlDown']);
|
||||
other = _objectWithoutProperties(props, ['children', 'classes', 'className', 'lgDown', 'lgUp', 'mdDown', 'mdUp', 'only', 'smDown', 'smUp', 'xlDown', 'xlUp', 'xsDown', 'xsUp']);
|
||||
|
||||
warning(Object.keys(other).length === 0 || Object.keys(other).length === 1 && other.hasOwnProperty('ref'), `Material-UI: unsupported properties received ${Object.keys(other).join(', ')} by \`<Hidden />\`.`);
|
||||
process.env.NODE_ENV !== "production" ? warning(_Object$keys(other).length === 0 || _Object$keys(other).length === 1 && other.hasOwnProperty('ref'), `Material-UI: unsupported properties received ${_Object$keys(other).join(', ')} by \`<Hidden />\`.`) : void 0;
|
||||
|
||||
const className = [];
|
||||
const classNames = [];
|
||||
|
||||
if (className) {
|
||||
classNames.push(className);
|
||||
}
|
||||
|
||||
for (let i = 0; i < breakpointKeys.length; i += 1) {
|
||||
const breakpoint = breakpointKeys[i];
|
||||
@@ -63,22 +63,89 @@ function HiddenCss(props) {
|
||||
const breakpointDown = props[`${breakpoint}Down`];
|
||||
|
||||
if (breakpointUp) {
|
||||
className.push(classes[`${breakpoint}Up`]);
|
||||
classNames.push(classes[`${breakpoint}Up`]);
|
||||
}
|
||||
if (breakpointDown) {
|
||||
className.push(classes[`${breakpoint}Down`]);
|
||||
classNames.push(classes[`${breakpoint}Down`]);
|
||||
}
|
||||
}
|
||||
|
||||
if (only) {
|
||||
className.push(classes[`only${capitalizeFirstLetter(only)}`]);
|
||||
const onlyBreakpoints = Array.isArray(only) ? only : [only];
|
||||
onlyBreakpoints.forEach(breakpoint => {
|
||||
classNames.push(classes[`only${capitalize(breakpoint)}`]);
|
||||
});
|
||||
}
|
||||
|
||||
return React.createElement(
|
||||
'span',
|
||||
{ className: className },
|
||||
'div',
|
||||
{ className: classNames.join(' ') },
|
||||
children
|
||||
);
|
||||
}
|
||||
|
||||
HiddenCss.propTypes = process.env.NODE_ENV !== "production" ? {
|
||||
/**
|
||||
* The content of the component.
|
||||
*/
|
||||
children: PropTypes.node,
|
||||
/**
|
||||
* Useful to extend the style applied to components.
|
||||
*/
|
||||
classes: PropTypes.object.isRequired,
|
||||
/**
|
||||
* @ignore
|
||||
*/
|
||||
className: PropTypes.string,
|
||||
/**
|
||||
* Specify which implementation to use. 'js' is the default, 'css' works better for server
|
||||
* side rendering.
|
||||
*/
|
||||
implementation: PropTypes.oneOf(['js', 'css']),
|
||||
/**
|
||||
* If true, screens this size and down will be hidden.
|
||||
*/
|
||||
lgDown: PropTypes.bool,
|
||||
/**
|
||||
* If true, screens this size and up will be hidden.
|
||||
*/
|
||||
lgUp: PropTypes.bool,
|
||||
/**
|
||||
* If true, screens this size and down will be hidden.
|
||||
*/
|
||||
mdDown: PropTypes.bool,
|
||||
/**
|
||||
* If true, screens this size and up will be hidden.
|
||||
*/
|
||||
mdUp: PropTypes.bool,
|
||||
/**
|
||||
* Hide the given breakpoint(s).
|
||||
*/
|
||||
only: PropTypes.oneOfType([PropTypes.oneOf(['xs', 'sm', 'md', 'lg', 'xl']), PropTypes.arrayOf(PropTypes.oneOf(['xs', 'sm', 'md', 'lg', 'xl']))]),
|
||||
/**
|
||||
* If true, screens this size and down will be hidden.
|
||||
*/
|
||||
smDown: PropTypes.bool,
|
||||
/**
|
||||
* If true, screens this size and up will be hidden.
|
||||
*/
|
||||
smUp: PropTypes.bool,
|
||||
/**
|
||||
* If true, screens this size and down will be hidden.
|
||||
*/
|
||||
xlDown: PropTypes.bool,
|
||||
/**
|
||||
* If true, screens this size and up will be hidden.
|
||||
*/
|
||||
xlUp: PropTypes.bool,
|
||||
/**
|
||||
* If true, screens this size and down will be hidden.
|
||||
*/
|
||||
xsDown: PropTypes.bool,
|
||||
/**
|
||||
* If true, screens this size and up will be hidden.
|
||||
*/
|
||||
xsUp: PropTypes.bool
|
||||
} : {};
|
||||
|
||||
export default withStyles(styles, { name: 'MuiHiddenCss' })(HiddenCss);
|
Reference in New Issue
Block a user