2015-09-17 19:10:01 +08:00
|
|
|
/*
|
2016-01-07 12:06:39 +08:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2015-09-17 19:10:01 +08:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var React = require('react');
|
2015-11-10 07:13:43 +08:00
|
|
|
var ReactDOM = require('react-dom');
|
2017-01-17 01:01:26 +08:00
|
|
|
import sdk from './index';
|
|
|
|
|
2016-11-04 22:37:02 +08:00
|
|
|
const DIALOG_CONTAINER_ID = "mx_Dialog_Container";
|
|
|
|
|
2017-01-17 01:01:26 +08:00
|
|
|
/**
|
|
|
|
* Wrap an asynchronous loader function with a react component which shows a
|
|
|
|
* spinner until the real component loads.
|
|
|
|
*/
|
|
|
|
const AsyncWrapper = React.createClass({
|
|
|
|
propTypes: {
|
|
|
|
/** A function which takes a 'callback' argument which it will call
|
|
|
|
* with the real component once it loads.
|
|
|
|
*/
|
|
|
|
loader: React.PropTypes.func.isRequired,
|
|
|
|
},
|
|
|
|
|
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
|
|
|
component: null,
|
2017-01-20 22:22:27 +08:00
|
|
|
};
|
2017-01-17 01:01:26 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
componentWillMount: function() {
|
|
|
|
this._unmounted = false;
|
|
|
|
this.props.loader((e) => {
|
|
|
|
if (this._unmounted) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.setState({component: e});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
componentWillUnmount: function() {
|
|
|
|
this._unmounted = true;
|
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
|
|
|
const {loader, ...otherProps} = this.props;
|
|
|
|
|
|
|
|
if (this.state.component) {
|
|
|
|
const Component = this.state.component;
|
|
|
|
return <Component {...otherProps} />;
|
|
|
|
} else {
|
|
|
|
// show a spinner until the component is loaded.
|
|
|
|
const Spinner = sdk.getComponent("elements.Spinner");
|
|
|
|
return <Spinner />;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
2015-09-17 19:10:01 +08:00
|
|
|
|
2016-11-04 22:37:02 +08:00
|
|
|
class ModalManager {
|
|
|
|
constructor() {
|
|
|
|
this._counter = 0;
|
|
|
|
|
|
|
|
/** list of the modals we have stacked up, with the most recent at [0] */
|
|
|
|
this._modals = [
|
|
|
|
/* {
|
|
|
|
elem: React component for this dialog
|
|
|
|
onFinished: caller-supplied onFinished callback
|
|
|
|
className: CSS class for the dialog wrapper div
|
|
|
|
} */
|
|
|
|
];
|
2017-01-23 20:18:41 +08:00
|
|
|
|
2016-11-04 22:37:02 +08:00
|
|
|
this.closeAll = this.closeAll.bind(this);
|
|
|
|
}
|
2015-09-17 19:10:01 +08:00
|
|
|
|
2016-11-04 22:37:02 +08:00
|
|
|
getOrCreateContainer() {
|
|
|
|
let container = document.getElementById(DIALOG_CONTAINER_ID);
|
2015-09-17 19:10:01 +08:00
|
|
|
|
|
|
|
if (!container) {
|
|
|
|
container = document.createElement("div");
|
2016-11-04 22:37:02 +08:00
|
|
|
container.id = DIALOG_CONTAINER_ID;
|
2015-09-17 19:10:01 +08:00
|
|
|
document.body.appendChild(container);
|
|
|
|
}
|
|
|
|
|
|
|
|
return container;
|
2016-11-04 22:37:02 +08:00
|
|
|
}
|
2015-09-17 19:10:01 +08:00
|
|
|
|
2016-11-04 22:37:02 +08:00
|
|
|
createDialog(Element, props, className) {
|
2017-01-20 22:22:27 +08:00
|
|
|
return this.createDialogAsync((cb) => {cb(Element);}, props, className);
|
2016-11-04 22:37:02 +08:00
|
|
|
}
|
2015-09-17 19:10:01 +08:00
|
|
|
|
2017-01-17 01:01:26 +08:00
|
|
|
/**
|
|
|
|
* Open a modal view.
|
|
|
|
*
|
|
|
|
* This can be used to display a react component which is loaded as an asynchronous
|
|
|
|
* webpack component. To do this, set 'loader' as:
|
|
|
|
*
|
|
|
|
* (cb) => {
|
|
|
|
* require(['<module>'], cb);
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* @param {Function} loader a function which takes a 'callback' argument,
|
|
|
|
* which it should call with a React component which will be displayed as
|
|
|
|
* the modal view.
|
|
|
|
*
|
|
|
|
* @param {Object} props properties to pass to the displayed
|
|
|
|
* component. (We will also pass an 'onFinished' property.)
|
|
|
|
*
|
|
|
|
* @param {String} className CSS class to apply to the modal wrapper
|
|
|
|
*/
|
2016-11-04 22:37:02 +08:00
|
|
|
createDialogAsync(loader, props, className) {
|
2017-01-17 01:01:26 +08:00
|
|
|
var self = this;
|
2016-11-04 22:37:02 +08:00
|
|
|
const modal = {};
|
|
|
|
|
|
|
|
// never call this from onFinished() otherwise it will loop
|
|
|
|
//
|
|
|
|
// nb explicit function() rather than arrow function, to get `arguments`
|
2015-09-17 19:10:01 +08:00
|
|
|
var closeDialog = function() {
|
|
|
|
if (props && props.onFinished) props.onFinished.apply(null, arguments);
|
2016-11-04 22:37:02 +08:00
|
|
|
var i = self._modals.indexOf(modal);
|
|
|
|
if (i >= 0) {
|
|
|
|
self._modals.splice(i, 1);
|
|
|
|
}
|
|
|
|
self._reRender();
|
2015-09-17 19:10:01 +08:00
|
|
|
};
|
|
|
|
|
2017-01-23 20:18:41 +08:00
|
|
|
// don't attempt to reuse the same AsyncWrapper for different dialogs,
|
|
|
|
// otherwise we'll get confused.
|
2016-11-04 22:37:02 +08:00
|
|
|
const modalCount = this._counter++;
|
2017-01-23 20:18:41 +08:00
|
|
|
|
2015-09-17 19:10:01 +08:00
|
|
|
// FIXME: If a dialog uses getDefaultProps it clobbers the onFinished
|
|
|
|
// property set here so you can't close the dialog from a button click!
|
2016-11-04 22:37:02 +08:00
|
|
|
modal.elem = (
|
|
|
|
<AsyncWrapper key={modalCount} loader={loader} {...props}
|
|
|
|
onFinished={closeDialog}/>
|
|
|
|
);
|
|
|
|
modal.onFinished = props ? props.onFinished : null;
|
|
|
|
modal.className = className;
|
|
|
|
|
|
|
|
this._modals.unshift(modal);
|
|
|
|
|
|
|
|
this._reRender();
|
|
|
|
return {close: closeDialog};
|
|
|
|
}
|
|
|
|
|
|
|
|
closeAll() {
|
|
|
|
const modals = this._modals;
|
|
|
|
this._modals = [];
|
|
|
|
|
|
|
|
for (let i = 0; i < modals.length; i++) {
|
|
|
|
const m = modals[i];
|
|
|
|
if (m.onFinished) {
|
|
|
|
m.onFinished(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this._reRender();
|
|
|
|
}
|
|
|
|
|
|
|
|
_reRender() {
|
|
|
|
if (this._modals.length == 0) {
|
|
|
|
ReactDOM.unmountComponentAtNode(this.getOrCreateContainer());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var modal = this._modals[0];
|
2015-09-17 19:10:01 +08:00
|
|
|
var dialog = (
|
2017-02-02 08:25:49 +08:00
|
|
|
<div className={"mx_Dialog_wrapper " + (modal.className ? modal.className : '') }>
|
2015-09-17 19:10:01 +08:00
|
|
|
<div className="mx_Dialog">
|
2016-11-04 22:37:02 +08:00
|
|
|
{modal.elem}
|
2015-09-17 19:10:01 +08:00
|
|
|
</div>
|
2016-11-04 22:37:02 +08:00
|
|
|
<div className="mx_Dialog_background" onClick={ this.closeAll }></div>
|
2015-09-17 19:10:01 +08:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
2015-11-10 07:13:43 +08:00
|
|
|
ReactDOM.render(dialog, this.getOrCreateContainer());
|
2016-11-04 22:37:02 +08:00
|
|
|
}
|
|
|
|
}
|
2015-09-17 19:10:01 +08:00
|
|
|
|
2016-11-04 22:37:02 +08:00
|
|
|
export default new ModalManager();
|