587 lines
19 KiB
JavaScript
587 lines
19 KiB
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
|
|
var _extends2 = require('babel-runtime/helpers/extends');
|
|
|
|
var _extends3 = _interopRequireDefault(_extends2);
|
|
|
|
var _objectWithoutProperties2 = require('babel-runtime/helpers/objectWithoutProperties');
|
|
|
|
var _objectWithoutProperties3 = _interopRequireDefault(_objectWithoutProperties2);
|
|
|
|
var _getPrototypeOf = require('babel-runtime/core-js/object/get-prototype-of');
|
|
|
|
var _getPrototypeOf2 = _interopRequireDefault(_getPrototypeOf);
|
|
|
|
var _classCallCheck2 = require('babel-runtime/helpers/classCallCheck');
|
|
|
|
var _classCallCheck3 = _interopRequireDefault(_classCallCheck2);
|
|
|
|
var _createClass2 = require('babel-runtime/helpers/createClass');
|
|
|
|
var _createClass3 = _interopRequireDefault(_createClass2);
|
|
|
|
var _possibleConstructorReturn2 = require('babel-runtime/helpers/possibleConstructorReturn');
|
|
|
|
var _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2);
|
|
|
|
var _inherits2 = require('babel-runtime/helpers/inherits');
|
|
|
|
var _inherits3 = _interopRequireDefault(_inherits2);
|
|
|
|
var _simpleAssign = require('simple-assign');
|
|
|
|
var _simpleAssign2 = _interopRequireDefault(_simpleAssign);
|
|
|
|
var _react = require('react');
|
|
|
|
var _react2 = _interopRequireDefault(_react);
|
|
|
|
var _reactDom = require('react-dom');
|
|
|
|
var _reactDom2 = _interopRequireDefault(_reactDom);
|
|
|
|
var _reactEventListener = require('react-event-listener');
|
|
|
|
var _reactEventListener2 = _interopRequireDefault(_reactEventListener);
|
|
|
|
var _keycode = require('keycode');
|
|
|
|
var _keycode2 = _interopRequireDefault(_keycode);
|
|
|
|
var _transitions = require('../styles/transitions');
|
|
|
|
var _transitions2 = _interopRequireDefault(_transitions);
|
|
|
|
var _Overlay = require('../internal/Overlay');
|
|
|
|
var _Overlay2 = _interopRequireDefault(_Overlay);
|
|
|
|
var _RenderToLayer = require('../internal/RenderToLayer');
|
|
|
|
var _RenderToLayer2 = _interopRequireDefault(_RenderToLayer);
|
|
|
|
var _Paper = require('../Paper');
|
|
|
|
var _Paper2 = _interopRequireDefault(_Paper);
|
|
|
|
var _reactAddonsTransitionGroup = require('react-addons-transition-group');
|
|
|
|
var _reactAddonsTransitionGroup2 = _interopRequireDefault(_reactAddonsTransitionGroup);
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
var TransitionItem = function (_Component) {
|
|
(0, _inherits3.default)(TransitionItem, _Component);
|
|
|
|
function TransitionItem() {
|
|
var _ref;
|
|
|
|
var _temp, _this, _ret;
|
|
|
|
(0, _classCallCheck3.default)(this, TransitionItem);
|
|
|
|
for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
|
|
args[_key] = arguments[_key];
|
|
}
|
|
|
|
return _ret = (_temp = (_this = (0, _possibleConstructorReturn3.default)(this, (_ref = TransitionItem.__proto__ || (0, _getPrototypeOf2.default)(TransitionItem)).call.apply(_ref, [this].concat(args))), _this), _this.state = {
|
|
style: {}
|
|
}, _temp), (0, _possibleConstructorReturn3.default)(_this, _ret);
|
|
}
|
|
|
|
(0, _createClass3.default)(TransitionItem, [{
|
|
key: 'componentWillUnmount',
|
|
value: function componentWillUnmount() {
|
|
clearTimeout(this.enterTimeout);
|
|
clearTimeout(this.leaveTimeout);
|
|
}
|
|
}, {
|
|
key: 'componentWillEnter',
|
|
value: function componentWillEnter(callback) {
|
|
this.componentWillAppear(callback);
|
|
}
|
|
}, {
|
|
key: 'componentWillAppear',
|
|
value: function componentWillAppear(callback) {
|
|
var spacing = this.context.muiTheme.baseTheme.spacing;
|
|
|
|
this.setState({
|
|
style: {
|
|
opacity: 1,
|
|
transform: 'translate(0, ' + spacing.desktopKeylineIncrement + 'px)'
|
|
}
|
|
});
|
|
|
|
this.enterTimeout = setTimeout(callback, 450); // matches transition duration
|
|
}
|
|
}, {
|
|
key: 'componentWillLeave',
|
|
value: function componentWillLeave(callback) {
|
|
this.setState({
|
|
style: {
|
|
opacity: 0,
|
|
transform: 'translate(0, 0)'
|
|
}
|
|
});
|
|
|
|
this.leaveTimeout = setTimeout(callback, 450); // matches transition duration
|
|
}
|
|
}, {
|
|
key: 'render',
|
|
value: function render() {
|
|
var _props = this.props,
|
|
style = _props.style,
|
|
children = _props.children,
|
|
other = (0, _objectWithoutProperties3.default)(_props, ['style', 'children']);
|
|
var prepareStyles = this.context.muiTheme.prepareStyles;
|
|
|
|
|
|
return _react2.default.createElement(
|
|
'div',
|
|
(0, _extends3.default)({}, other, { style: prepareStyles((0, _simpleAssign2.default)({}, this.state.style, style)) }),
|
|
children
|
|
);
|
|
}
|
|
}]);
|
|
return TransitionItem;
|
|
}(_react.Component);
|
|
|
|
TransitionItem.contextTypes = {
|
|
muiTheme: _react.PropTypes.object.isRequired
|
|
};
|
|
process.env.NODE_ENV !== "production" ? TransitionItem.propTypes = {
|
|
children: _react.PropTypes.node,
|
|
style: _react.PropTypes.object
|
|
} : void 0;
|
|
|
|
|
|
function getStyles(props, context) {
|
|
var autoScrollBodyContent = props.autoScrollBodyContent,
|
|
open = props.open;
|
|
var _context$muiTheme = context.muiTheme,
|
|
_context$muiTheme$bas = _context$muiTheme.baseTheme,
|
|
spacing = _context$muiTheme$bas.spacing,
|
|
palette = _context$muiTheme$bas.palette,
|
|
dialog = _context$muiTheme.dialog,
|
|
zIndex = _context$muiTheme.zIndex;
|
|
|
|
|
|
var gutter = spacing.desktopGutter;
|
|
var borderScroll = '1px solid ' + palette.borderColor;
|
|
|
|
return {
|
|
root: {
|
|
position: 'fixed',
|
|
boxSizing: 'border-box',
|
|
WebkitTapHighlightColor: 'rgba(0,0,0,0)', // Remove mobile color flashing (deprecated)
|
|
zIndex: zIndex.dialog,
|
|
top: 0,
|
|
left: open ? 0 : -10000,
|
|
width: '100%',
|
|
height: '100%',
|
|
transition: open ? _transitions2.default.easeOut('0ms', 'left', '0ms') : _transitions2.default.easeOut('0ms', 'left', '450ms')
|
|
},
|
|
content: {
|
|
boxSizing: 'border-box',
|
|
WebkitTapHighlightColor: 'rgba(0,0,0,0)', // Remove mobile color flashing (deprecated)
|
|
transition: _transitions2.default.easeOut(),
|
|
position: 'relative',
|
|
width: '75%',
|
|
maxWidth: spacing.desktopKeylineIncrement * 12,
|
|
margin: '0 auto',
|
|
zIndex: zIndex.dialog
|
|
},
|
|
actionsContainer: {
|
|
boxSizing: 'border-box',
|
|
WebkitTapHighlightColor: 'rgba(0,0,0,0)', // Remove mobile color flashing (deprecated)
|
|
padding: 8,
|
|
width: '100%',
|
|
textAlign: 'right',
|
|
marginTop: autoScrollBodyContent ? -1 : 0,
|
|
borderTop: autoScrollBodyContent ? borderScroll : 'none'
|
|
},
|
|
overlay: {
|
|
zIndex: zIndex.dialogOverlay
|
|
},
|
|
title: {
|
|
margin: 0,
|
|
padding: gutter + 'px ' + gutter + 'px 20px ' + gutter + 'px',
|
|
color: palette.textColor,
|
|
fontSize: dialog.titleFontSize,
|
|
lineHeight: '32px',
|
|
fontWeight: 400,
|
|
marginBottom: autoScrollBodyContent ? -1 : 0,
|
|
borderBottom: autoScrollBodyContent ? borderScroll : 'none'
|
|
},
|
|
body: {
|
|
fontSize: dialog.bodyFontSize,
|
|
color: dialog.bodyColor,
|
|
padding: (props.title ? 0 : gutter) + 'px ' + gutter + 'px ' + gutter + 'px',
|
|
boxSizing: 'border-box',
|
|
overflowY: autoScrollBodyContent ? 'auto' : 'hidden'
|
|
}
|
|
};
|
|
}
|
|
|
|
var DialogInline = function (_Component2) {
|
|
(0, _inherits3.default)(DialogInline, _Component2);
|
|
|
|
function DialogInline() {
|
|
var _ref2;
|
|
|
|
var _temp2, _this2, _ret2;
|
|
|
|
(0, _classCallCheck3.default)(this, DialogInline);
|
|
|
|
for (var _len2 = arguments.length, args = Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
|
|
args[_key2] = arguments[_key2];
|
|
}
|
|
|
|
return _ret2 = (_temp2 = (_this2 = (0, _possibleConstructorReturn3.default)(this, (_ref2 = DialogInline.__proto__ || (0, _getPrototypeOf2.default)(DialogInline)).call.apply(_ref2, [this].concat(args))), _this2), _this2.handleTouchTapOverlay = function () {
|
|
_this2.requestClose(false);
|
|
}, _this2.handleKeyUp = function (event) {
|
|
if ((0, _keycode2.default)(event) === 'esc') {
|
|
_this2.requestClose(false);
|
|
}
|
|
}, _this2.handleResize = function () {
|
|
_this2.positionDialog();
|
|
}, _temp2), (0, _possibleConstructorReturn3.default)(_this2, _ret2);
|
|
}
|
|
|
|
(0, _createClass3.default)(DialogInline, [{
|
|
key: 'componentDidMount',
|
|
value: function componentDidMount() {
|
|
this.positionDialog();
|
|
}
|
|
}, {
|
|
key: 'componentDidUpdate',
|
|
value: function componentDidUpdate() {
|
|
this.positionDialog();
|
|
}
|
|
}, {
|
|
key: 'positionDialog',
|
|
value: function positionDialog() {
|
|
var _props2 = this.props,
|
|
actions = _props2.actions,
|
|
autoDetectWindowHeight = _props2.autoDetectWindowHeight,
|
|
autoScrollBodyContent = _props2.autoScrollBodyContent,
|
|
bodyStyle = _props2.bodyStyle,
|
|
open = _props2.open,
|
|
repositionOnUpdate = _props2.repositionOnUpdate,
|
|
title = _props2.title;
|
|
|
|
|
|
if (!open) {
|
|
return;
|
|
}
|
|
|
|
var clientHeight = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;
|
|
var container = _reactDom2.default.findDOMNode(this);
|
|
var dialogWindow = _reactDom2.default.findDOMNode(this.refs.dialogWindow);
|
|
var dialogContent = _reactDom2.default.findDOMNode(this.refs.dialogContent);
|
|
var minPaddingTop = 16;
|
|
|
|
// Reset the height in case the window was resized.
|
|
dialogWindow.style.height = '';
|
|
dialogContent.style.height = '';
|
|
|
|
var dialogWindowHeight = dialogWindow.offsetHeight;
|
|
var paddingTop = (clientHeight - dialogWindowHeight) / 2 - 64;
|
|
if (paddingTop < minPaddingTop) paddingTop = minPaddingTop;
|
|
|
|
// Vertically center the dialog window, but make sure it doesn't
|
|
// transition to that position.
|
|
if (repositionOnUpdate || !container.style.paddingTop) {
|
|
container.style.paddingTop = paddingTop + 'px';
|
|
}
|
|
|
|
// Force a height if the dialog is taller than clientHeight
|
|
if (autoDetectWindowHeight || autoScrollBodyContent) {
|
|
var styles = getStyles(this.props, this.context);
|
|
styles.body = (0, _simpleAssign2.default)(styles.body, bodyStyle);
|
|
var maxDialogContentHeight = clientHeight - 2 * 64;
|
|
|
|
if (title) maxDialogContentHeight -= dialogContent.previousSibling.offsetHeight;
|
|
|
|
if (_react2.default.Children.count(actions)) {
|
|
maxDialogContentHeight -= dialogContent.nextSibling.offsetHeight;
|
|
}
|
|
|
|
dialogContent.style.maxHeight = maxDialogContentHeight + 'px';
|
|
}
|
|
}
|
|
}, {
|
|
key: 'requestClose',
|
|
value: function requestClose(buttonClicked) {
|
|
if (!buttonClicked && this.props.modal) {
|
|
return;
|
|
}
|
|
|
|
if (this.props.onRequestClose) {
|
|
this.props.onRequestClose(!!buttonClicked);
|
|
}
|
|
}
|
|
}, {
|
|
key: 'render',
|
|
value: function render() {
|
|
var _props3 = this.props,
|
|
actions = _props3.actions,
|
|
actionsContainerClassName = _props3.actionsContainerClassName,
|
|
actionsContainerStyle = _props3.actionsContainerStyle,
|
|
bodyClassName = _props3.bodyClassName,
|
|
bodyStyle = _props3.bodyStyle,
|
|
children = _props3.children,
|
|
className = _props3.className,
|
|
contentClassName = _props3.contentClassName,
|
|
contentStyle = _props3.contentStyle,
|
|
overlayClassName = _props3.overlayClassName,
|
|
overlayStyle = _props3.overlayStyle,
|
|
open = _props3.open,
|
|
titleClassName = _props3.titleClassName,
|
|
titleStyle = _props3.titleStyle,
|
|
title = _props3.title,
|
|
style = _props3.style;
|
|
var prepareStyles = this.context.muiTheme.prepareStyles;
|
|
|
|
var styles = getStyles(this.props, this.context);
|
|
|
|
styles.root = (0, _simpleAssign2.default)(styles.root, style);
|
|
styles.content = (0, _simpleAssign2.default)(styles.content, contentStyle);
|
|
styles.body = (0, _simpleAssign2.default)(styles.body, bodyStyle);
|
|
styles.actionsContainer = (0, _simpleAssign2.default)(styles.actionsContainer, actionsContainerStyle);
|
|
styles.overlay = (0, _simpleAssign2.default)(styles.overlay, overlayStyle);
|
|
styles.title = (0, _simpleAssign2.default)(styles.title, titleStyle);
|
|
|
|
var actionsContainer = _react2.default.Children.count(actions) > 0 && _react2.default.createElement(
|
|
'div',
|
|
{ className: actionsContainerClassName, style: prepareStyles(styles.actionsContainer) },
|
|
_react2.default.Children.toArray(actions)
|
|
);
|
|
|
|
var titleElement = title;
|
|
if (_react2.default.isValidElement(title)) {
|
|
titleElement = _react2.default.cloneElement(title, {
|
|
className: title.props.className || titleClassName,
|
|
style: prepareStyles((0, _simpleAssign2.default)(styles.title, title.props.style))
|
|
});
|
|
} else if (typeof title === 'string') {
|
|
titleElement = _react2.default.createElement(
|
|
'h3',
|
|
{ className: titleClassName, style: prepareStyles(styles.title) },
|
|
title
|
|
);
|
|
}
|
|
|
|
return _react2.default.createElement(
|
|
'div',
|
|
{ className: className, style: prepareStyles(styles.root) },
|
|
open && _react2.default.createElement(_reactEventListener2.default, {
|
|
target: 'window',
|
|
onKeyUp: this.handleKeyUp,
|
|
onResize: this.handleResize
|
|
}),
|
|
_react2.default.createElement(
|
|
_reactAddonsTransitionGroup2.default,
|
|
{
|
|
component: 'div',
|
|
ref: 'dialogWindow',
|
|
transitionAppear: true,
|
|
transitionAppearTimeout: 450,
|
|
transitionEnter: true,
|
|
transitionEnterTimeout: 450
|
|
},
|
|
open && _react2.default.createElement(
|
|
TransitionItem,
|
|
{
|
|
className: contentClassName,
|
|
style: styles.content
|
|
},
|
|
_react2.default.createElement(
|
|
_Paper2.default,
|
|
{ zDepth: 4 },
|
|
titleElement,
|
|
_react2.default.createElement(
|
|
'div',
|
|
{
|
|
ref: 'dialogContent',
|
|
className: bodyClassName,
|
|
style: prepareStyles(styles.body)
|
|
},
|
|
children
|
|
),
|
|
actionsContainer
|
|
)
|
|
)
|
|
),
|
|
_react2.default.createElement(_Overlay2.default, {
|
|
show: open,
|
|
className: overlayClassName,
|
|
style: styles.overlay,
|
|
onTouchTap: this.handleTouchTapOverlay
|
|
})
|
|
);
|
|
}
|
|
}]);
|
|
return DialogInline;
|
|
}(_react.Component);
|
|
|
|
DialogInline.contextTypes = {
|
|
muiTheme: _react.PropTypes.object.isRequired
|
|
};
|
|
process.env.NODE_ENV !== "production" ? DialogInline.propTypes = {
|
|
actions: _react.PropTypes.node,
|
|
actionsContainerClassName: _react.PropTypes.string,
|
|
actionsContainerStyle: _react.PropTypes.object,
|
|
autoDetectWindowHeight: _react.PropTypes.bool,
|
|
autoScrollBodyContent: _react.PropTypes.bool,
|
|
bodyClassName: _react.PropTypes.string,
|
|
bodyStyle: _react.PropTypes.object,
|
|
children: _react.PropTypes.node,
|
|
className: _react.PropTypes.string,
|
|
contentClassName: _react.PropTypes.string,
|
|
contentStyle: _react.PropTypes.object,
|
|
modal: _react.PropTypes.bool,
|
|
onRequestClose: _react.PropTypes.func,
|
|
open: _react.PropTypes.bool.isRequired,
|
|
overlayClassName: _react.PropTypes.string,
|
|
overlayStyle: _react.PropTypes.object,
|
|
repositionOnUpdate: _react.PropTypes.bool,
|
|
style: _react.PropTypes.object,
|
|
title: _react.PropTypes.node,
|
|
titleClassName: _react.PropTypes.string,
|
|
titleStyle: _react.PropTypes.object
|
|
} : void 0;
|
|
|
|
var Dialog = function (_Component3) {
|
|
(0, _inherits3.default)(Dialog, _Component3);
|
|
|
|
function Dialog() {
|
|
var _ref3;
|
|
|
|
var _temp3, _this3, _ret3;
|
|
|
|
(0, _classCallCheck3.default)(this, Dialog);
|
|
|
|
for (var _len3 = arguments.length, args = Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {
|
|
args[_key3] = arguments[_key3];
|
|
}
|
|
|
|
return _ret3 = (_temp3 = (_this3 = (0, _possibleConstructorReturn3.default)(this, (_ref3 = Dialog.__proto__ || (0, _getPrototypeOf2.default)(Dialog)).call.apply(_ref3, [this].concat(args))), _this3), _this3.renderLayer = function () {
|
|
return _react2.default.createElement(DialogInline, _this3.props);
|
|
}, _temp3), (0, _possibleConstructorReturn3.default)(_this3, _ret3);
|
|
}
|
|
|
|
(0, _createClass3.default)(Dialog, [{
|
|
key: 'render',
|
|
value: function render() {
|
|
return _react2.default.createElement(_RenderToLayer2.default, { render: this.renderLayer, open: true, useLayerForClickAway: false });
|
|
}
|
|
}]);
|
|
return Dialog;
|
|
}(_react.Component);
|
|
|
|
Dialog.contextTypes = {
|
|
muiTheme: _react.PropTypes.object.isRequired
|
|
};
|
|
Dialog.defaultProps = {
|
|
autoDetectWindowHeight: true,
|
|
autoScrollBodyContent: false,
|
|
modal: false,
|
|
repositionOnUpdate: true
|
|
};
|
|
process.env.NODE_ENV !== "production" ? Dialog.propTypes = {
|
|
/**
|
|
* Action buttons to display below the Dialog content (`children`).
|
|
* This property accepts either a React element, or an array of React elements.
|
|
*/
|
|
actions: _react.PropTypes.node,
|
|
/**
|
|
* The `className` to add to the actions container's root element.
|
|
*/
|
|
actionsContainerClassName: _react.PropTypes.string,
|
|
/**
|
|
* Overrides the inline-styles of the actions container's root element.
|
|
*/
|
|
actionsContainerStyle: _react.PropTypes.object,
|
|
/**
|
|
* If set to true, the height of the `Dialog` will be auto detected. A max height
|
|
* will be enforced so that the content does not extend beyond the viewport.
|
|
*/
|
|
autoDetectWindowHeight: _react.PropTypes.bool,
|
|
/**
|
|
* If set to true, the body content of the `Dialog` will be scrollable.
|
|
*/
|
|
autoScrollBodyContent: _react.PropTypes.bool,
|
|
/**
|
|
* The `className` to add to the content's root element under the title.
|
|
*/
|
|
bodyClassName: _react.PropTypes.string,
|
|
/**
|
|
* Overrides the inline-styles of the content's root element under the title.
|
|
*/
|
|
bodyStyle: _react.PropTypes.object,
|
|
/**
|
|
* The contents of the `Dialog`.
|
|
*/
|
|
children: _react.PropTypes.node,
|
|
/**
|
|
* The css class name of the root element.
|
|
*/
|
|
className: _react.PropTypes.string,
|
|
/**
|
|
* The `className` to add to the content container.
|
|
*/
|
|
contentClassName: _react.PropTypes.string,
|
|
/**
|
|
* Overrides the inline-styles of the content container.
|
|
*/
|
|
contentStyle: _react.PropTypes.object,
|
|
/**
|
|
* Force the user to use one of the actions in the `Dialog`.
|
|
* Clicking outside the `Dialog` will not trigger the `onRequestClose`.
|
|
*/
|
|
modal: _react.PropTypes.bool,
|
|
/**
|
|
* Fired when the `Dialog` is requested to be closed by a click outside the `Dialog` or on the buttons.
|
|
*
|
|
* @param {bool} buttonClicked Determines whether a button click triggered this request.
|
|
*/
|
|
onRequestClose: _react.PropTypes.func,
|
|
/**
|
|
* Controls whether the Dialog is opened or not.
|
|
*/
|
|
open: _react.PropTypes.bool.isRequired,
|
|
/**
|
|
* The `className` to add to the `Overlay` component that is rendered behind the `Dialog`.
|
|
*/
|
|
overlayClassName: _react.PropTypes.string,
|
|
/**
|
|
* Overrides the inline-styles of the `Overlay` component that is rendered behind the `Dialog`.
|
|
*/
|
|
overlayStyle: _react.PropTypes.object,
|
|
/**
|
|
* Determines whether the `Dialog` should be repositioned when it's contents are updated.
|
|
*/
|
|
repositionOnUpdate: _react.PropTypes.bool,
|
|
/**
|
|
* Override the inline-styles of the root element.
|
|
*/
|
|
style: _react.PropTypes.object,
|
|
/**
|
|
* The title to display on the `Dialog`. Could be number, string, element or an array containing these types.
|
|
*/
|
|
title: _react.PropTypes.node,
|
|
/**
|
|
* The `className` to add to the title's root container element.
|
|
*/
|
|
titleClassName: _react.PropTypes.string,
|
|
/**
|
|
* Overrides the inline-styles of the title's root container element.
|
|
*/
|
|
titleStyle: _react.PropTypes.object
|
|
} : void 0;
|
|
exports.default = Dialog; |