2015-10-08 12:27:09 -04:00
|
|
|
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
|
2015-06-14 23:53:32 -08:00
|
|
|
// See License.txt for license information.
|
|
|
|
|
|
2015-10-14 16:57:03 -04:00
|
|
|
const Modal = ReactBootstrap.Modal;
|
2016-02-25 11:25:16 -05:00
|
|
|
import FilteredUserList from './filtered_user_list.jsx';
|
2015-11-19 21:12:56 -05:00
|
|
|
import UserStore from '../stores/user_store.jsx';
|
|
|
|
|
import * as Utils from '../utils/utils.jsx';
|
2015-06-14 23:53:32 -08:00
|
|
|
|
2016-02-25 11:25:16 -05:00
|
|
|
import {FormattedMessage} from 'mm-intl';
|
2016-01-31 22:03:30 -03:00
|
|
|
|
2016-02-25 11:25:16 -05:00
|
|
|
export default class MoreDirectChannels extends React.Component {
|
2015-09-01 17:06:31 -07:00
|
|
|
constructor(props) {
|
|
|
|
|
super(props);
|
|
|
|
|
|
2015-10-14 16:57:03 -04:00
|
|
|
this.handleHide = this.handleHide.bind(this);
|
|
|
|
|
this.handleShowDirectChannel = this.handleShowDirectChannel.bind(this);
|
|
|
|
|
this.handleUserChange = this.handleUserChange.bind(this);
|
|
|
|
|
|
2016-02-25 11:25:16 -05:00
|
|
|
this.createJoinDirectChannelButton = this.createJoinDirectChannelButton.bind(this);
|
2015-10-14 16:57:03 -04:00
|
|
|
|
|
|
|
|
this.state = {
|
|
|
|
|
users: this.getUsersFromStore(),
|
|
|
|
|
loadingDMChannel: -1
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
getUsersFromStore() {
|
|
|
|
|
const currentId = UserStore.getCurrentId();
|
2015-10-22 12:55:35 -04:00
|
|
|
const profiles = UserStore.getActiveOnlyProfiles();
|
2015-10-14 16:57:03 -04:00
|
|
|
const users = [];
|
|
|
|
|
|
|
|
|
|
for (const id in profiles) {
|
|
|
|
|
if (id !== currentId) {
|
|
|
|
|
users.push(profiles[id]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
users.sort((a, b) => a.username.localeCompare(b.username));
|
|
|
|
|
|
|
|
|
|
return users;
|
2015-09-01 17:06:31 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
componentDidMount() {
|
2015-10-14 16:57:03 -04:00
|
|
|
UserStore.addChangeListener(this.handleUserChange);
|
2015-09-01 17:06:31 -07:00
|
|
|
}
|
|
|
|
|
|
2015-10-14 16:57:03 -04:00
|
|
|
componentWillUnmount() {
|
2016-02-08 12:41:51 -05:00
|
|
|
UserStore.removeChangeListener(this.handleUserChange);
|
2015-10-02 14:25:55 -04:00
|
|
|
}
|
|
|
|
|
|
2015-10-14 16:57:03 -04:00
|
|
|
handleHide() {
|
|
|
|
|
if (this.props.onModalDismissed) {
|
|
|
|
|
this.props.onModalDismissed();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
handleShowDirectChannel(teammate, e) {
|
2015-10-26 23:29:55 +01:00
|
|
|
e.preventDefault();
|
|
|
|
|
|
2015-10-14 16:57:03 -04:00
|
|
|
if (this.state.loadingDMChannel !== -1) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-26 23:29:55 +01:00
|
|
|
this.setState({loadingDMChannel: teammate.id});
|
|
|
|
|
Utils.openDirectChannelToUser(
|
|
|
|
|
teammate,
|
|
|
|
|
(channel) => {
|
|
|
|
|
Utils.switchChannel(channel);
|
|
|
|
|
this.setState({loadingDMChannel: -1});
|
|
|
|
|
this.handleHide();
|
|
|
|
|
},
|
|
|
|
|
() => {
|
|
|
|
|
this.setState({loadingDMChannel: -1});
|
|
|
|
|
}
|
|
|
|
|
);
|
2015-10-14 16:57:03 -04:00
|
|
|
}
|
2015-10-07 13:07:59 -04:00
|
|
|
|
2015-10-14 16:57:03 -04:00
|
|
|
handleUserChange() {
|
|
|
|
|
this.setState({users: this.getUsersFromStore()});
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-25 11:25:16 -05:00
|
|
|
createJoinDirectChannelButton({user}) {
|
2015-10-14 16:57:03 -04:00
|
|
|
if (this.state.loadingDMChannel === user.id) {
|
2016-02-25 11:25:16 -05:00
|
|
|
return (
|
2015-10-14 16:57:03 -04:00
|
|
|
<img
|
|
|
|
|
className='channel-loading-gif'
|
|
|
|
|
src='/static/images/load.gif'
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
}
|
2015-06-14 23:53:32 -08:00
|
|
|
|
|
|
|
|
return (
|
2016-02-25 11:25:16 -05:00
|
|
|
<button
|
|
|
|
|
type='button'
|
|
|
|
|
className='btn btn-primary btn-message'
|
|
|
|
|
onClick={this.handleShowDirectChannel.bind(this, user)}
|
|
|
|
|
>
|
|
|
|
|
<FormattedMessage
|
|
|
|
|
id='more_direct_channels.message'
|
|
|
|
|
defaultMessage='Message'
|
|
|
|
|
/>
|
|
|
|
|
</button>
|
2015-10-14 16:57:03 -04:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
render() {
|
2016-03-02 16:10:14 -05:00
|
|
|
let maxHeight = 1000;
|
|
|
|
|
if (Utils.windowHeight() <= 1200) {
|
|
|
|
|
maxHeight = Utils.windowHeight() - 300;
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-14 16:57:03 -04:00
|
|
|
return (
|
|
|
|
|
<Modal
|
2016-02-25 11:25:16 -05:00
|
|
|
dialogClassName='more-modal more-direct-channels'
|
2015-10-14 16:57:03 -04:00
|
|
|
show={this.props.show}
|
|
|
|
|
onHide={this.handleHide}
|
|
|
|
|
>
|
|
|
|
|
<Modal.Header closeButton={true}>
|
2016-01-31 22:03:30 -03:00
|
|
|
<Modal.Title>
|
|
|
|
|
<FormattedMessage
|
|
|
|
|
id='more_direct_channels.title'
|
|
|
|
|
defaultMessage='Direct Messages'
|
|
|
|
|
/>
|
|
|
|
|
</Modal.Title>
|
2015-10-14 16:57:03 -04:00
|
|
|
</Modal.Header>
|
2016-02-25 11:25:16 -05:00
|
|
|
<Modal.Body>
|
|
|
|
|
<FilteredUserList
|
2016-03-02 16:10:14 -05:00
|
|
|
style={{maxHeight}}
|
2016-02-25 11:25:16 -05:00
|
|
|
users={this.state.users}
|
|
|
|
|
actions={[this.createJoinDirectChannelButton]}
|
|
|
|
|
/>
|
2015-10-14 16:57:03 -04:00
|
|
|
</Modal.Body>
|
|
|
|
|
<Modal.Footer>
|
|
|
|
|
<button
|
|
|
|
|
type='button'
|
|
|
|
|
className='btn btn-default'
|
|
|
|
|
onClick={this.handleHide}
|
|
|
|
|
>
|
2016-01-31 22:03:30 -03:00
|
|
|
<FormattedMessage
|
|
|
|
|
id='more_direct_channels.close'
|
|
|
|
|
defaultMessage='Close'
|
|
|
|
|
/>
|
2015-10-14 16:57:03 -04:00
|
|
|
</button>
|
|
|
|
|
</Modal.Footer>
|
|
|
|
|
</Modal>
|
2015-06-14 23:53:32 -08:00
|
|
|
);
|
|
|
|
|
}
|
2015-09-01 17:06:31 -07:00
|
|
|
}
|
2015-10-14 16:57:03 -04:00
|
|
|
|
|
|
|
|
MoreDirectChannels.propTypes = {
|
|
|
|
|
show: React.PropTypes.bool.isRequired,
|
|
|
|
|
onModalDismissed: React.PropTypes.func
|
|
|
|
|
};
|