@material-ui/core
Version:
React components that implement Google's Material Design.
103 lines (85 loc) • 3.85 kB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
import _createClass from "@babel/runtime/helpers/esm/createClass";
import _possibleConstructorReturn from "@babel/runtime/helpers/esm/possibleConstructorReturn";
import _getPrototypeOf from "@babel/runtime/helpers/esm/getPrototypeOf";
import _inherits from "@babel/runtime/helpers/esm/inherits";
import React from 'react';
import ReactDOM from 'react-dom';
import * as PropTypes from 'prop-types';
import { mount as enzymeMount } from 'enzyme';
/**
* Can't just mount <React.Fragment>{node}</React.Fragment>
* because that swallows wrapper.setProps
*
* why class component:
* https://github.com/airbnb/enzyme/issues/2043
*/
// eslint-disable-next-line react/prefer-stateless-function
var Mode =
/*#__PURE__*/
function (_React$Component) {
_inherits(Mode, _React$Component);
function Mode() {
_classCallCheck(this, Mode);
return _possibleConstructorReturn(this, _getPrototypeOf(Mode).apply(this, arguments));
}
_createClass(Mode, [{
key: "render",
value: function render() {
// Excess props will come from e.g. enzyme setProps
var _this$props = this.props,
__element = _this$props.__element,
__strict = _this$props.__strict,
other = _objectWithoutProperties(_this$props, ["__element", "__strict"]);
var Component = __strict ? React.StrictMode : React.Fragment;
return React.createElement(Component, null, React.cloneElement(__element, other));
}
}]);
return Mode;
}(React.Component); // Generate an enhanced mount function.
process.env.NODE_ENV !== "production" ? Mode.propTypes = {
/**
* this is essentially children. However we can't use children because then
* using `wrapper.setProps({ children })` would work differently if this component
* would be the root.
*/
__element: PropTypes.element.isRequired,
__strict: PropTypes.bool.isRequired
} : void 0;
export default function createMount() {
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
var _options$mount = options.mount,
mount = _options$mount === void 0 ? enzymeMount : _options$mount,
globalStrict = options.strict,
globalEnzymeOptions = _objectWithoutProperties(options, ["mount", "strict"]);
var attachTo = window.document.createElement('div');
attachTo.className = 'app';
attachTo.setAttribute('id', 'app');
window.document.body.insertBefore(attachTo, window.document.body.firstChild);
var mountWithContext = function mountWithContext(node) {
var localOptions = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
var _localOptions$disable = localOptions.disableUnnmount,
disableUnnmount = _localOptions$disable === void 0 ? false : _localOptions$disable,
_localOptions$strict = localOptions.strict,
strict = _localOptions$strict === void 0 ? globalStrict : _localOptions$strict,
localEnzymeOptions = _objectWithoutProperties(localOptions, ["disableUnnmount", "strict"]);
if (!disableUnnmount) {
ReactDOM.unmountComponentAtNode(attachTo);
} // some tests require that no other components are in the tree
// e.g. when doing .instance(), .state() etc.
return mount(strict == null ? node : React.createElement(Mode, {
__element: node,
__strict: Boolean(strict)
}), _extends({
attachTo: attachTo
}, globalEnzymeOptions, {}, localEnzymeOptions));
};
mountWithContext.attachTo = attachTo;
mountWithContext.cleanUp = function () {
ReactDOM.unmountComponentAtNode(attachTo);
attachTo.parentNode.removeChild(attachTo);
};
return mountWithContext;
}