Completely updated React, fixed #11, (hopefully)

This commit is contained in:
2018-03-04 19:11:49 -05:00
parent 6e0afd6e2a
commit 34e5f5139a
13674 changed files with 333464 additions and 473223 deletions

View File

@@ -32,122 +32,46 @@ var _inherits2 = require('babel-runtime/helpers/inherits');
var _inherits3 = _interopRequireDefault(_inherits2);
exports.getScale = getScale;
var _react = require('react');
var _react2 = _interopRequireDefault(_react);
var _CSSTransition = require('react-transition-group/CSSTransition');
var _propTypes = require('prop-types');
var _CSSTransition2 = _interopRequireDefault(_CSSTransition);
var _propTypes2 = _interopRequireDefault(_propTypes);
var _Transition = require('react-transition-group/Transition');
var _Transition2 = _interopRequireDefault(_Transition);
var _withTheme = require('../styles/withTheme');
var _withTheme2 = _interopRequireDefault(_withTheme);
var _utils = require('./utils');
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
var babelPluginFlowReactPropTypes_proptype_Element = require('react').babelPluginFlowReactPropTypes_proptype_Element || require('prop-types').any;
// @inheritedComponent CSSTransition
// Only exported for tests.
var babelPluginFlowReactPropTypes_proptype_TransitionClasses = require('../internal/transition').babelPluginFlowReactPropTypes_proptype_TransitionClasses || require('prop-types').any;
var babelPluginFlowReactPropTypes_proptype_TransitionCallback = require('../internal/transition').babelPluginFlowReactPropTypes_proptype_TransitionCallback || require('prop-types').any;
function getScale(value) {
return 'scale(' + value + ', ' + Math.pow(value, 2) + ')';
}
} // @inheritedComponent Transition
var babelPluginFlowReactPropTypes_proptype_TransitionDuration = require('prop-types').oneOfType([require('prop-types').number, require('prop-types').shape({
enter: require('prop-types').number,
exit: require('prop-types').number
}), require('prop-types').oneOf(['auto'])]);
var babelPluginFlowReactPropTypes_proptype_Props = {
/**
* @ignore
*/
appear: require('prop-types').bool,
/**
* A single child content element.
*/
children: typeof babelPluginFlowReactPropTypes_proptype_Element === 'function' ? babelPluginFlowReactPropTypes_proptype_Element.isRequired ? babelPluginFlowReactPropTypes_proptype_Element.isRequired : babelPluginFlowReactPropTypes_proptype_Element : require('prop-types').shape(babelPluginFlowReactPropTypes_proptype_Element).isRequired,
/**
* If `true`, show the component; triggers the enter or exit animation.
*/
in: require('prop-types').bool.isRequired,
/**
* @ignore
*/
onEnter: typeof babelPluginFlowReactPropTypes_proptype_TransitionCallback === 'function' ? babelPluginFlowReactPropTypes_proptype_TransitionCallback : require('prop-types').shape(babelPluginFlowReactPropTypes_proptype_TransitionCallback),
/**
* @ignore
*/
onEntering: typeof babelPluginFlowReactPropTypes_proptype_TransitionCallback === 'function' ? babelPluginFlowReactPropTypes_proptype_TransitionCallback : require('prop-types').shape(babelPluginFlowReactPropTypes_proptype_TransitionCallback),
/**
* @ignore
*/
onEntered: typeof babelPluginFlowReactPropTypes_proptype_TransitionCallback === 'function' ? babelPluginFlowReactPropTypes_proptype_TransitionCallback : require('prop-types').shape(babelPluginFlowReactPropTypes_proptype_TransitionCallback),
/**
* @ignore
*/
onExit: typeof babelPluginFlowReactPropTypes_proptype_TransitionCallback === 'function' ? babelPluginFlowReactPropTypes_proptype_TransitionCallback : require('prop-types').shape(babelPluginFlowReactPropTypes_proptype_TransitionCallback),
/**
* @ignore
*/
onExiting: typeof babelPluginFlowReactPropTypes_proptype_TransitionCallback === 'function' ? babelPluginFlowReactPropTypes_proptype_TransitionCallback : require('prop-types').shape(babelPluginFlowReactPropTypes_proptype_TransitionCallback),
/**
* @ignore
*/
onExited: typeof babelPluginFlowReactPropTypes_proptype_TransitionCallback === 'function' ? babelPluginFlowReactPropTypes_proptype_TransitionCallback : require('prop-types').shape(babelPluginFlowReactPropTypes_proptype_TransitionCallback),
/**
* Use that property to pass a ref callback to the root component.
*/
rootRef: require('prop-types').func,
/**
* @ignore
*/
style: require('prop-types').object,
/**
* The animation classNames applied to the component as it enters or exits.
* This property is a direct binding to [`CSSTransition.classNames`](https://reactcommunity.org/react-transition-group/#CSSTransition-prop-classNames).
*/
transitionClasses: typeof babelPluginFlowReactPropTypes_proptype_TransitionClasses === 'function' ? babelPluginFlowReactPropTypes_proptype_TransitionClasses : require('prop-types').shape(babelPluginFlowReactPropTypes_proptype_TransitionClasses),
/**
* @ignore
*/
theme: require('prop-types').object,
/**
* The duration for the transition, in milliseconds.
* You may specify a single timeout for all transitions, or individually with an object.
*
* Set to 'auto' to automatically calculate transition time based on height.
*/
timeout: require('prop-types').oneOfType([require('prop-types').number, require('prop-types').shape({
enter: require('prop-types').number,
exit: require('prop-types').number
}), require('prop-types').oneOf(['auto'])])
var styles = {
entering: {
opacity: 1,
transform: getScale(1)
},
entered: {
opacity: 1,
transform: getScale(1)
}
};
/**
* The Grow transition is used by the Popover component.
* It's using [react-transition-group](https://github.com/reactjs/react-transition-group) internally.
* The Grow transition is used by the [Popover](/demos/popovers) component.
* It uses [react-transition-group](https://github.com/reactjs/react-transition-group) internally.
*/
var Grow = function (_React$Component) {
(0, _inherits3.default)(Grow, _React$Component);
@@ -162,42 +86,37 @@ var Grow = function (_React$Component) {
args[_key] = arguments[_key];
}
return _ret = (_temp = (_this = (0, _possibleConstructorReturn3.default)(this, (_ref = Grow.__proto__ || (0, _getPrototypeOf2.default)(Grow)).call.apply(_ref, [this].concat(args))), _this), _this.autoTimeout = undefined, _this.handleEnter = function (node) {
node.style.opacity = '0';
node.style.transform = getScale(0.75);
if (_this.props.onEnter) {
_this.props.onEnter(node);
}
}, _this.handleEntering = function (node) {
return _ret = (_temp = (_this = (0, _possibleConstructorReturn3.default)(this, (_ref = Grow.__proto__ || (0, _getPrototypeOf2.default)(Grow)).call.apply(_ref, [this].concat(args))), _this), _this.autoTimeout = undefined, _this.timer = null, _this.handleEnter = function (node) {
var _this$props = _this.props,
theme = _this$props.theme,
timeout = _this$props.timeout;
var duration = 0;
(0, _utils.reflow)(node); // So the animation always start from the start.
var _getTransitionProps = (0, _utils.getTransitionProps)(_this.props, {
mode: 'enter'
}),
transitionDuration = _getTransitionProps.duration,
delay = _getTransitionProps.delay;
var duration = 0;
if (timeout === 'auto') {
duration = theme.transitions.getAutoHeightDuration(node.clientHeight);
_this.autoTimeout = duration;
} else if (typeof timeout === 'number') {
duration = timeout;
} else if (timeout) {
duration = timeout.enter;
} else {
// The propType will warn in this case.
duration = transitionDuration;
}
node.style.transition = [theme.transitions.create('opacity', {
duration: duration
duration: duration,
delay: delay
}), theme.transitions.create('transform', {
duration: duration * 0.666
duration: duration * 0.666,
delay: delay
})].join(',');
node.style.opacity = '1';
node.style.transform = getScale(1);
if (_this.props.onEntering) {
_this.props.onEntering(node);
if (_this.props.onEnter) {
_this.props.onEnter(node);
}
}, _this.handleExit = function (node) {
var _this$props2 = _this.props,
@@ -206,22 +125,25 @@ var Grow = function (_React$Component) {
var duration = 0;
var _getTransitionProps2 = (0, _utils.getTransitionProps)(_this.props, {
mode: 'exit'
}),
transitionDuration = _getTransitionProps2.duration,
delay = _getTransitionProps2.delay;
if (timeout === 'auto') {
duration = theme.transitions.getAutoHeightDuration(node.clientHeight);
_this.autoTimeout = duration;
} else if (typeof timeout === 'number') {
duration = timeout;
} else if (timeout) {
duration = timeout.exit;
} else {
// The propType will warn in this case.
duration = transitionDuration;
}
node.style.transition = [theme.transitions.create('opacity', {
duration: duration
duration: duration,
delay: delay
}), theme.transitions.create('transform', {
duration: duration * 0.666,
delay: duration * 0.333
delay: delay || duration * 0.333
})].join(',');
node.style.opacity = '0';
@@ -230,66 +152,100 @@ var Grow = function (_React$Component) {
if (_this.props.onExit) {
_this.props.onExit(node);
}
}, _this.addEndListener = function (node, next) {
var timeout = void 0;
}, _this.addEndListener = function (_, next) {
if (_this.props.timeout === 'auto') {
timeout = _this.autoTimeout || 0;
} else {
timeout = _this.props.timeout;
_this.timer = setTimeout(next, _this.autoTimeout || 0);
}
setTimeout(next, timeout);
}, _temp), (0, _possibleConstructorReturn3.default)(_this, _ret);
}
(0, _createClass3.default)(Grow, [{
key: 'componentWillUnmount',
value: function componentWillUnmount() {
clearTimeout(this.timer);
}
}, {
key: 'render',
value: function render() {
var _props = this.props,
appear = _props.appear,
children = _props.children,
onEnter = _props.onEnter,
onEntering = _props.onEntering,
onExit = _props.onExit,
rootRef = _props.rootRef,
styleProp = _props.style,
transitionClasses = _props.transitionClasses,
timeout = _props.timeout,
theme = _props.theme,
other = (0, _objectWithoutProperties3.default)(_props, ['appear', 'children', 'onEnter', 'onEntering', 'onExit', 'rootRef', 'style', 'transitionClasses', 'timeout', 'theme']);
timeout = _props.timeout,
other = (0, _objectWithoutProperties3.default)(_props, ['children', 'onEnter', 'onExit', 'style', 'theme', 'timeout']);
var style = (0, _extends3.default)({}, children.props.style, styleProp);
// For server side rendering.
if (!this.props.in || appear) {
style.opacity = '0';
}
var style = (0, _extends3.default)({}, styleProp, _react2.default.isValidElement(children) ? children.props.style : {});
return _react2.default.createElement(
_CSSTransition2.default,
_Transition2.default,
(0, _extends3.default)({
classNames: transitionClasses,
appear: true,
onEnter: this.handleEnter,
onEntering: this.handleEntering,
onExit: this.handleExit,
addEndListener: this.addEndListener,
appear: appear,
style: style
}, other, {
ref: rootRef
}),
children
timeout: timeout === 'auto' ? null : timeout
}, other),
function (state, childProps) {
return _react2.default.cloneElement(children, (0, _extends3.default)({
style: (0, _extends3.default)({
opacity: 0,
transform: getScale(0.75)
}, styles[state], style)
}, childProps));
}
);
}
}]);
return Grow;
}(_react2.default.Component);
Grow.propTypes = process.env.NODE_ENV !== "production" ? {
/**
* A single child content element.
*/
children: _propTypes2.default.oneOfType([_propTypes2.default.element, _propTypes2.default.func]),
/**
* If `true`, show the component; triggers the enter or exit animation.
*/
in: _propTypes2.default.bool,
/**
* @ignore
*/
onEnter: _propTypes2.default.func,
/**
* @ignore
*/
onEntered: _propTypes2.default.func,
/**
* @ignore
*/
onEntering: _propTypes2.default.func,
/**
* @ignore
*/
onExit: _propTypes2.default.func,
/**
* @ignore
*/
style: _propTypes2.default.object,
/**
* @ignore
*/
theme: _propTypes2.default.object.isRequired,
/**
* The duration for the transition, in milliseconds.
* You may specify a single timeout for all transitions, or individually with an object.
*
* Set to 'auto' to automatically calculate transition time based on height.
*/
timeout: _propTypes2.default.oneOfType([_propTypes2.default.number, _propTypes2.default.shape({ enter: _propTypes2.default.number, exit: _propTypes2.default.number }), _propTypes2.default.oneOf(['auto'])])
} : {};
Grow.defaultProps = {
appear: true,
timeout: 'auto',
transitionClasses: {}
timeout: 'auto'
};
exports.default = (0, _withTheme2.default)()(Grow);