summaryrefslogtreecommitdiffstats
path: root/webapp/components/channel_select.jsx
diff options
context:
space:
mode:
authorDavid Lu <david.lu@hotmail.com>2016-05-26 05:36:51 -0700
committerChristopher Speller <crspeller@gmail.com>2016-05-26 08:36:51 -0400
commit4353e1fb978b70966800049cbf62088a53ab6df4 (patch)
treeb2269459676b4e11f9630d10d727fb05c2ca717e /webapp/components/channel_select.jsx
parent335e5cc4dac6e9caeb6797fb4ce0185245b4c4df (diff)
downloadchat-4353e1fb978b70966800049cbf62088a53ab6df4.tar.gz
chat-4353e1fb978b70966800049cbf62088a53ab6df4.tar.bz2
chat-4353e1fb978b70966800049cbf62088a53ab6df4.zip
PLT-2989 Incoming webhooks available to all channels user is member of (#3082)
* Removed OPEN_CHANNEL check * Added checks for each type of channel * Added all channels display Used onComponentUpdate, made code clearer * Made requested changes
Diffstat (limited to 'webapp/components/channel_select.jsx')
-rw-r--r--webapp/components/channel_select.jsx51
1 files changed, 42 insertions, 9 deletions
diff --git a/webapp/components/channel_select.jsx b/webapp/components/channel_select.jsx
index 238cfa1ae..59bf2f15a 100644
--- a/webapp/components/channel_select.jsx
+++ b/webapp/components/channel_select.jsx
@@ -6,12 +6,24 @@ import React from 'react';
import Constants from 'utils/constants.jsx';
import ChannelStore from 'stores/channel_store.jsx';
import * as Utils from 'utils/utils.jsx';
+import * as AsyncClient from 'utils/async_client.jsx';
export default class ChannelSelect extends React.Component {
static get propTypes() {
return {
onChange: React.PropTypes.func,
- value: React.PropTypes.string
+ value: React.PropTypes.string,
+ selectOpen: React.PropTypes.bool.isRequired,
+ selectPrivate: React.PropTypes.bool.isRequired,
+ selectDm: React.PropTypes.bool.isRequired
+ };
+ }
+
+ static get defaultProps() {
+ return {
+ selectOpen: false,
+ selectPrivate: false,
+ selectDm: false
};
}
@@ -19,17 +31,16 @@ export default class ChannelSelect extends React.Component {
super(props);
this.handleChannelChange = this.handleChannelChange.bind(this);
+ this.compareByDisplayName = this.compareByDisplayName.bind(this);
+
+ AsyncClient.getMoreChannels(true);
this.state = {
- channels: []
+ channels: ChannelStore.getAll().sort(this.compareByDisplayName)
};
}
- componentWillMount() {
- this.setState({
- channels: ChannelStore.getAll()
- });
-
+ componentDidMount() {
ChannelStore.addChangeListener(this.handleChannelChange);
}
@@ -39,10 +50,14 @@ export default class ChannelSelect extends React.Component {
handleChannelChange() {
this.setState({
- channels: ChannelStore.getAll()
+ channels: ChannelStore.getAll().concat(ChannelStore.getMoreAll()).sort(this.compareByDisplayName)
});
}
+ compareByDisplayName(channelA, channelB) {
+ return channelA.display_name.localeCompare(channelB.display_name);
+ }
+
render() {
const options = [
<option
@@ -54,7 +69,25 @@ export default class ChannelSelect extends React.Component {
];
this.state.channels.forEach((channel) => {
- if (channel.type === Constants.OPEN_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}