Этот коммит содержится в:
hmhealey
2015-11-17 16:10:16 -05:00
родитель 3d572be2f3
Коммит 70de0125ab
8 изменённых файлов: 37 добавлений и 59 удалений

Просмотреть файл

@@ -1,7 +1,7 @@
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
var Modal = require('./modal.jsx');
var Modal = ReactBootstrap.Modal;
var UserStore = require('../stores/user_store.jsx');
var ChannelStore = require('../stores/channel_store.jsx');
var AsyncClient = require('../utils/async_client.jsx');
@@ -43,6 +43,15 @@ export default class AccessHistoryModal extends React.Component {
}
componentDidMount() {
UserStore.addAuditsChangeListener(this.onAuditChange);
if (this.props.show) {
this.onShow();
}
}
componentDidUpdate(prevProps) {
if (this.props.show && !prevProps.show) {
this.onShow();
}
}
componentWillUnmount() {
UserStore.removeAuditsChangeListener(this.onAuditChange);
@@ -386,7 +395,6 @@ export default class AccessHistoryModal extends React.Component {
<Modal
show={this.props.show}
onHide={this.onHide}
onShow={this.onShow}
bsSize='large'
>
<Modal.Header closeButton={true}>

Просмотреть файл

@@ -4,7 +4,7 @@
const UserStore = require('../stores/user_store.jsx');
const Client = require('../utils/client.jsx');
const AsyncClient = require('../utils/async_client.jsx');
const Modal = require('./modal.jsx');
const Modal = ReactBootstrap.Modal;
const LoadingScreen = require('./loading_screen.jsx');
const Utils = require('../utils/utils.jsx');
@@ -62,6 +62,15 @@ export default class ActivityLogModal extends React.Component {
}
componentDidMount() {
UserStore.addSessionsChangeListener(this.onListenerChange);
if (this.props.show) {
this.onShow();
}
}
componentDidUpdate(prevProps) {
if (this.props.show && !prevProps.show) {
this.onShow();
}
}
componentWillUnmount() {
UserStore.removeSessionsChangeListener(this.onListenerChange);
@@ -156,7 +165,6 @@ export default class ActivityLogModal extends React.Component {
return (
<Modal
show={this.props.show}
onShow={this.onShow}
onHide={this.onHide}
bsSize='large'
>

Просмотреть файл

@@ -1,7 +1,7 @@
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
const Modal = require('./modal.jsx');
const Modal = ReactBootstrap.Modal;
export default class ChannelInfoModal extends React.Component {
render() {
@@ -18,7 +18,6 @@ export default class ChannelInfoModal extends React.Component {
<Modal
show={this.props.show}
onHide={this.props.onHide}
onShow={this.onShow}
>
<Modal.Header closeButtton={true}>
{channel.display_name}

Просмотреть файл

@@ -1,7 +1,7 @@
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
var Modal = require('./modal.jsx');
var Modal = ReactBootstrap.Modal;
var SettingItemMin = require('./setting_item_min.jsx');
var SettingItemMax = require('./setting_item_max.jsx');

Просмотреть файл

@@ -1,7 +1,7 @@
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
const Modal = require('./modal.jsx');
const Modal = ReactBootstrap.Modal;
export default class ConfirmModal extends React.Component {
constructor(props) {

Просмотреть файл

@@ -3,7 +3,7 @@
const AsyncClient = require('../utils/async_client.jsx');
const Client = require('../utils/client.jsx');
const Modal = require('./modal.jsx');
const Modal = ReactBootstrap.Modal;
const TeamStore = require('../stores/team_store.jsx');
const Utils = require('../utils/utils.jsx');

Просмотреть файл

@@ -1,48 +0,0 @@
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
export default class Modal extends ReactBootstrap.Modal {
constructor(props) {
super(props);
}
componentWillMount() {
if (this.props.show && this.props.onPreshow) {
this.props.onPreshow();
}
}
componentDidMount() {
super.componentDidMount();
if (this.props.show && this.props.onShow) {
this.props.onShow();
}
}
componentDidUpdate(prevProps) {
super.componentDidUpdate(prevProps);
if (this.props.show && !prevProps.show && this.props.onShow) {
this.props.onShow();
}
}
componentWillReceiveProps(nextProps) {
super.componentWillReceiveProps(nextProps);
if (nextProps.show && !this.props.show && this.props.onPreshow) {
this.props.onPreshow();
}
}
}
Modal.propTypes = {
...ReactBootstrap.Modal.propTypes,
// called before showing the dialog to allow for a state change before rendering
onPreshow: React.PropTypes.func,
// called after the dialog has been shown and rendered
onShow: React.PropTypes.func
};

Просмотреть файл

@@ -2,7 +2,7 @@
// See License.txt for license information.
const ConfirmModal = require('../confirm_modal.jsx');
const Modal = require('../modal.jsx');
const Modal = ReactBootstrap.Modal;
const SettingsSidebar = require('../settings_sidebar.jsx');
const UserSettings = require('./user_settings.jsx');
@@ -34,6 +34,18 @@ export default class UserSettingsModal extends React.Component {
this.requireConfirm = false;
}
componentDidMount() {
if (this.props.show) {
this.handleShow();
}
}
componentDidUpdate(prevProps) {
if (this.props.show && !prevProps.show) {
this.handleShow();
}
}
handleShow() {
$(ReactDOM.findDOMNode(this.refs.modalBody)).css('max-height', $(window).height() - 300);
if ($(window).width() > 768) {
@@ -175,7 +187,6 @@ export default class UserSettingsModal extends React.Component {
<Modal
dialogClassName='settings-modal'
show={this.props.show}
onShow={this.handleShow}
onHide={this.handleHide}
onExited={this.handleHidden}
enforceFocus={this.state.enforceFocus}