Files
mattermost/webapp/components/channel_select.jsx
Joram Wilander 5aaedb9663 PLT-5699 Improvements to channel switcher (#6486)
* Refactor channel switcher to not wait on server results

* Change channel switcher to quick switcher and include team switching

* Add sections, update ordering and add discoverability button

* Fix styling error

* Use CMD in text if on mac

* Clean yarn cache on every install

* Various UX updates per feedback

* Add shortcut help text for team switcher

* Couple more updates per feedback

* Some minor fixes for GM and autocomplete race

* Updating UI for channel switcher (#6504)

* Updating channel switcher button (#6506)

* Updating switcher modal on mobile (#6507)

* Removed jQuery usage

* Rename function to toggleQuickSwitchModal
2017-05-31 16:51:42 -04:00

117 lines
3.3 KiB
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import React from 'react';
import PropTypes from 'prop-types';
import Constants from 'utils/constants.jsx';
import ChannelStore from 'stores/channel_store.jsx';
import * as Utils from 'utils/utils.jsx';
import {sortChannelsByDisplayName} from 'utils/channel_utils.jsx';
export default class ChannelSelect extends React.Component {
static get propTypes() {
return {
onChange: PropTypes.func,
value: PropTypes.string,
selectOpen: PropTypes.bool.isRequired,
selectPrivate: PropTypes.bool.isRequired,
selectDm: PropTypes.bool.isRequired
};
}
static get defaultProps() {
return {
selectOpen: false,
selectPrivate: false,
selectDm: false
};
}
constructor(props) {
super(props);
this.handleChannelChange = this.handleChannelChange.bind(this);
this.filterChannels = this.filterChannels.bind(this);
this.state = {
channels: ChannelStore.getAll().filter(this.filterChannels).sort(sortChannelsByDisplayName)
};
}
componentDidMount() {
ChannelStore.addChangeListener(this.handleChannelChange);
}
componentWillUnmount() {
ChannelStore.removeChangeListener(this.handleChannelChange);
}
handleChannelChange() {
this.setState({
channels: ChannelStore.getAll().
filter(this.filterChannels).sort(sortChannelsByDisplayName)
});
}
filterChannels(channel) {
if (channel.display_name) {
return true;
}
return false;
}
render() {
const options = [
<option
key=''
value=''
>
{Utils.localizeMessage('channel_select.placeholder', '--- Select a channel ---')}
</option>
];
this.state.channels.forEach((channel) => {
if (channel.type === Constants.OPEN_CHANNEL && this.props.selectOpen) {
options.push(
<option
key={channel.id}
value={channel.id}
>
{channel.display_name}
</option>
);
} else if (channel.type === Constants.PRIVATE_CHANNEL && this.props.selectPrivate) {
options.push(
<option
key={channel.id}
value={channel.id}
>
{channel.display_name}
</option>
);
} else if (channel.type === Constants.DM_CHANNEL && this.props.selectDm) {
options.push(
<option
key={channel.id}
value={channel.id}
>
{channel.display_name}
</option>
);
}
});
return (
<select
className='form-control'
value={this.props.value}
onChange={this.props.onChange}
>
{options}
</select>
);
}
}