Reformatted sidebar.jsx to meet style guide requirements.

Этот коммит содержится в:
JoramWilander
2015-09-01 08:37:09 -04:00
родитель 3a66be9078
Коммит 27519d3f73

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

@@ -13,122 +13,132 @@ var SidebarHeader = require('./sidebar_header.jsx');
var SearchBox = require('./search_bar.jsx'); var SearchBox = require('./search_bar.jsx');
var Constants = require('../utils/constants.jsx'); var Constants = require('../utils/constants.jsx');
function getStateFromStores() { export default class Sidebar extends React.Component {
var members = ChannelStore.getAllMembers(); constructor(props) {
var teamMemberMap = UserStore.getActiveOnlyProfiles(); super(props);
var currentId = ChannelStore.getCurrentId();
var teammates = []; this.badgesActive = false;
for (var id in teamMemberMap) { this.firstUnreadChannel = null;
if (id === UserStore.getCurrentId()) { this.lastUnreadChannel = null;
continue;
} this.onChange = this.onChange.bind(this);
teammates.push(teamMemberMap[id]); this.onScroll = this.onScroll.bind(this);
this.onResize = this.onResize.bind(this);
this.updateUnreadIndicators = this.updateUnreadIndicators.bind(this);
this.createChannelElement = this.createChannelElement.bind(this);
this.state = this.getStateFromStores();
this.state.loadingDMChannel = -1;
} }
getStateFromStores() {
var members = ChannelStore.getAllMembers();
var teamMemberMap = UserStore.getActiveOnlyProfiles();
var currentId = ChannelStore.getCurrentId();
// Create lists of all read and unread direct channels var teammates = [];
var showDirectChannels = []; for (var id in teamMemberMap) {
var readDirectChannels = []; if (id === UserStore.getCurrentId()) {
for (var i = 0; i < teammates.length; i++) { continue;
var teammate = teammates[i]; }
teammates.push(teamMemberMap[id]);
if (teammate.id === UserStore.getCurrentId()) {
continue;
} }
var channelName = ''; // Create lists of all read and unread direct channels
if (teammate.id > UserStore.getCurrentId()) { var showDirectChannels = [];
channelName = UserStore.getCurrentId() + '__' + teammate.id; var readDirectChannels = [];
} else { for (var i = 0; i < teammates.length; i++) {
channelName = teammate.id + '__' + UserStore.getCurrentId(); var teammate = teammates[i];
}
var channel = ChannelStore.getByName(channelName); if (teammate.id === UserStore.getCurrentId()) {
continue;
}
if (channel != null) { var channelName = '';
channel.display_name = teammate.username; if (teammate.id > UserStore.getCurrentId()) {
channel.teammate_username = teammate.username; channelName = UserStore.getCurrentId() + '__' + teammate.id;
channel.status = UserStore.getStatus(teammate.id);
var channelMember = members[channel.id];
var msgCount = channel.total_msg_count - channelMember.msg_count;
if (msgCount > 0) {
showDirectChannels.push(channel);
} else if (currentId === channel.id) {
showDirectChannels.push(channel);
} else { } else {
readDirectChannels.push(channel); channelName = teammate.id + '__' + UserStore.getCurrentId();
}
var channel = ChannelStore.getByName(channelName);
if (channel != null) {
channel.display_name = teammate.username;
channel.teammate_username = teammate.username;
channel.status = UserStore.getStatus(teammate.id);
var channelMember = members[channel.id];
var msgCount = channel.total_msg_count - channelMember.msg_count;
if (msgCount > 0) {
showDirectChannels.push(channel);
} else if (currentId === channel.id) {
showDirectChannels.push(channel);
} else {
readDirectChannels.push(channel);
}
} else {
var tempChannel = {};
tempChannel.fake = true;
tempChannel.name = channelName;
tempChannel.display_name = teammate.username;
tempChannel.teammate_username = teammate.username;
tempChannel.status = UserStore.getStatus(teammate.id);
tempChannel.last_post_at = 0;
tempChannel.total_msg_count = 0;
tempChannel.type = 'D';
readDirectChannels.push(tempChannel);
} }
} else {
var tempChannel = {};
tempChannel.fake = true;
tempChannel.name = channelName;
tempChannel.display_name = teammate.username;
tempChannel.teammate_username = teammate.username;
tempChannel.status = UserStore.getStatus(teammate.id);
tempChannel.last_post_at = 0;
tempChannel.total_msg_count = 0;
tempChannel.type = 'D';
readDirectChannels.push(tempChannel);
} }
}
// If we don't have MAX_DMS unread channels, sort the read list by last_post_at // If we don't have MAX_DMS unread channels, sort the read list by last_post_at
if (showDirectChannels.length < Constants.MAX_DMS) { if (showDirectChannels.length < Constants.MAX_DMS) {
readDirectChannels.sort(function sortByLastPost(a, b) { readDirectChannels.sort(function sortByLastPost(a, b) {
// sort by last_post_at first // sort by last_post_at first
if (a.last_post_at > b.last_post_at) { if (a.last_post_at > b.last_post_at) {
return -1; return -1;
} }
if (a.last_post_at < b.last_post_at) { if (a.last_post_at < b.last_post_at) {
return 1; return 1;
} }
// if last_post_at is equal, sort by name // if last_post_at is equal, sort by name
if (a.display_name < b.display_name) { if (a.display_name < b.display_name) {
return -1; return -1;
} }
if (a.display_name > b.display_name) { if (a.display_name > b.display_name) {
return 1; return 1;
} }
return 0; return 0;
}); });
var index = 0; var index = 0;
while (showDirectChannels.length < Constants.MAX_DMS && index < readDirectChannels.length) { while (showDirectChannels.length < Constants.MAX_DMS && index < readDirectChannels.length) {
showDirectChannels.push(readDirectChannels[index]); showDirectChannels.push(readDirectChannels[index]);
index++; index++;
}
readDirectChannels = readDirectChannels.slice(index);
showDirectChannels.sort(function directSort(a, b) {
if (a.display_name < b.display_name) {
return -1;
}
if (a.display_name > b.display_name) {
return 1;
}
return 0;
});
} }
readDirectChannels = readDirectChannels.slice(index);
showDirectChannels.sort(function directSort(a, b) { return {
if (a.display_name < b.display_name) { activeId: currentId,
return -1; channels: ChannelStore.getAll(),
} members: members,
if (a.display_name > b.display_name) { showDirectChannels: showDirectChannels,
return 1; hideDirectChannels: readDirectChannels
} };
return 0;
});
} }
componentDidMount() {
return {
activeId: currentId,
channels: ChannelStore.getAll(),
members: members,
showDirectChannels: showDirectChannels,
hideDirectChannels: readDirectChannels
};
}
module.exports = React.createClass({
displayName: 'Sidebar',
propTypes: {
teamType: React.PropTypes.string,
teamDisplayName: React.PropTypes.string
},
componentDidMount: function() {
ChannelStore.addChangeListener(this.onChange); ChannelStore.addChangeListener(this.onChange);
UserStore.addChangeListener(this.onChange); UserStore.addChangeListener(this.onChange);
UserStore.addStatusesChangeListener(this.onChange); UserStore.addStatusesChangeListener(this.onChange);
@@ -140,12 +150,12 @@ module.exports = React.createClass({
this.updateUnreadIndicators(); this.updateUnreadIndicators();
$(window).on('resize', this.onResize); $(window).on('resize', this.onResize);
}, }
componentDidUpdate: function() { componentDidUpdate() {
this.updateTitle(); this.updateTitle();
this.updateUnreadIndicators(); this.updateUnreadIndicators();
}, }
componentWillUnmount: function() { componentWillUnmount() {
$(window).off('resize', this.onResize); $(window).off('resize', this.onResize);
ChannelStore.removeChangeListener(this.onChange); ChannelStore.removeChangeListener(this.onChange);
@@ -153,14 +163,14 @@ module.exports = React.createClass({
UserStore.removeStatusesChangeListener(this.onChange); UserStore.removeStatusesChangeListener(this.onChange);
TeamStore.removeChangeListener(this.onChange); TeamStore.removeChangeListener(this.onChange);
SocketStore.removeChangeListener(this.onSocketChange); SocketStore.removeChangeListener(this.onSocketChange);
}, }
onChange: function() { onChange() {
var newState = getStateFromStores(); var newState = this.getStateFromStores();
if (!utils.areStatesEqual(newState, this.state)) { if (!utils.areStatesEqual(newState, this.state)) {
this.setState(newState); this.setState(newState);
} }
}, }
onSocketChange: function(msg) { onSocketChange(msg) {
if (msg.action === 'posted') { if (msg.action === 'posted') {
if (ChannelStore.getCurrentId() === msg.channel_id) { if (ChannelStore.getCurrentId() === msg.channel_id) {
if (window.isActive) { if (window.isActive) {
@@ -243,8 +253,8 @@ module.exports = React.createClass({
} }
} }
} }
}, }
updateTitle: function() { updateTitle() {
var channel = ChannelStore.getCurrent(); var channel = ChannelStore.getCurrent();
if (channel) { if (channel) {
if (channel.type === 'D') { if (channel.type === 'D') {
@@ -254,14 +264,14 @@ module.exports = React.createClass({
document.title = channel.display_name + ' ' + document.title.substring(document.title.lastIndexOf('-')); document.title = channel.display_name + ' ' + document.title.substring(document.title.lastIndexOf('-'));
} }
} }
}, }
onScroll: function() { onScroll() {
this.updateUnreadIndicators(); this.updateUnreadIndicators();
}, }
onResize: function() { onResize() {
this.updateUnreadIndicators(); this.updateUnreadIndicators();
}, }
updateUnreadIndicators: function() { updateUnreadIndicators() {
var container = $(this.refs.container.getDOMNode()); var container = $(this.refs.container.getDOMNode());
if (this.firstUnreadChannel) { if (this.firstUnreadChannel) {
@@ -283,146 +293,156 @@ module.exports = React.createClass({
$(this.refs.bottomUnreadIndicator.getDOMNode()).css('display', 'none'); $(this.refs.bottomUnreadIndicator.getDOMNode()).css('display', 'none');
} }
} }
}, }
getInitialState: function() { createChannelElement(channel, index) {
var newState = getStateFromStores();
newState.loadingDMChannel = -1;
return newState;
},
render: function() {
var members = this.state.members; var members = this.state.members;
var activeId = this.state.activeId; var activeId = this.state.activeId;
var badgesActive = false; var channelMember = members[channel.id];
var msgCount;
// keep track of the first and last unread channels so we can use them to set the unread indicators var linkClass = '';
var self = this; if (channel.id === activeId) {
this.firstUnreadChannel = null; linkClass = 'active';
this.lastUnreadChannel = null; }
function createChannelElement(channel, index) { var unread = false;
var channelMember = members[channel.id]; if (channelMember) {
var msgCount; msgCount = channel.total_msg_count - channelMember.msg_count;
unread = (msgCount > 0 && channelMember.notify_level !== 'quiet') || channelMember.mention_count > 0;
}
var linkClass = ''; var titleClass = '';
if (channel.id === activeId) { if (unread) {
linkClass = 'active'; titleClass = 'unread-title';
if (!self.firstUnreadChannel) {
self.firstUnreadChannel = channel.name;
} }
self.lastUnreadChannel = channel.name;
}
var unread = false; var badge = null;
if (channelMember) { if (channelMember) {
msgCount = channel.total_msg_count - channelMember.msg_count;
unread = (msgCount > 0 && channelMember.notify_level !== 'quiet') || channelMember.mention_count > 0;
}
var titleClass = '';
if (unread) {
titleClass = 'unread-title';
if (!self.firstUnreadChannel) {
self.firstUnreadChannel = channel.name;
}
self.lastUnreadChannel = channel.name;
}
var badge = null;
if (channelMember) {
if (channel.type === 'D') {
// direct message channels show badges for any number of unread posts
msgCount = channel.total_msg_count - channelMember.msg_count;
if (msgCount > 0) {
badge = <span className='badge pull-right small'>{msgCount}</span>;
badgesActive = true;
}
} else if (channelMember.mention_count > 0) {
// public and private channels only show badges for mentions
badge = <span className='badge pull-right small'>{channelMember.mention_count}</span>;
badgesActive = true;
}
} else if (self.state.loadingDMChannel === index && channel.type === 'D') {
badge = <img className='channel-loading-gif pull-right' src='/static/images/load.gif'/>;
}
// set up status icon for direct message channels
var status = null;
if (channel.type === 'D') { if (channel.type === 'D') {
var statusIcon = ''; // direct message channels show badges for any number of unread posts
if (channel.status === 'online') { msgCount = channel.total_msg_count - channelMember.msg_count;
statusIcon = Constants.ONLINE_ICON_SVG; if (msgCount > 0) {
} else if (channel.status === 'away') { badge = <span className='badge pull-right small'>{msgCount}</span>;
statusIcon = Constants.ONLINE_ICON_SVG; this.badgesActive = true;
} else {
statusIcon = Constants.OFFLINE_ICON_SVG;
} }
status = <span className='status' dangerouslySetInnerHTML={{__html: statusIcon}} />; } else if (channelMember.mention_count > 0) {
// public and private channels only show badges for mentions
badge = <span className='badge pull-right small'>{channelMember.mention_count}</span>;
this.badgesActive = true;
} }
} else if (self.state.loadingDMChannel === index && channel.type === 'D') {
// set up click handler to switch channels (or create a new channel for non-existant ones) badge = (
var handleClick = null; <img
var href = '#'; className='channel-loading-gif pull-right'
var teamURL = TeamStore.getCurrentTeamUrl(); src='/static/images/load.gif'
/>
if (!channel.fake) {
handleClick = function clickHandler(e) {
e.preventDefault();
utils.switchChannel(channel);
};
} else if (channel.fake && teamURL) {
// It's a direct message channel that doesn't exist yet so let's create it now
var otherUserId = utils.getUserIdFromChannelName(channel);
if (self.state.loadingDMChannel === -1) {
handleClick = function clickHandler(e) {
e.preventDefault();
self.setState({loadingDMChannel: index});
Client.createDirectChannel(channel, otherUserId,
function success(data) {
self.setState({loadingDMChannel: -1});
AsyncClient.getChannel(data.id);
utils.switchChannel(data);
},
function error() {
self.setState({loadingDMChannel: -1});
window.location.href = TeamStore.getCurrentTeamUrl() + '/channels/' + channel.name;
}
);
};
}
}
return (
<li key={channel.name} ref={channel.name} className={linkClass}>
<a className={'sidebar-channel ' + titleClass} href={href} onClick={handleClick}>
{status}
{channel.display_name}
{badge}
</a>
</li>
); );
} }
// set up status icon for direct message channels
var status = null;
if (channel.type === 'D') {
var statusIcon = '';
if (channel.status === 'online') {
statusIcon = Constants.ONLINE_ICON_SVG;
} else if (channel.status === 'away') {
statusIcon = Constants.ONLINE_ICON_SVG;
} else {
statusIcon = Constants.OFFLINE_ICON_SVG;
}
status = (
<span
className='status'
dangerouslySetInnerHTML={{__html: statusIcon}}
/>
);
}
// set up click handler to switch channels (or create a new channel for non-existant ones)
var handleClick = null;
var href = '#';
var teamURL = TeamStore.getCurrentTeamUrl();
if (!channel.fake) {
handleClick = function clickHandler(e) {
e.preventDefault();
utils.switchChannel(channel);
};
} else if (channel.fake && teamURL) {
// It's a direct message channel that doesn't exist yet so let's create it now
var otherUserId = utils.getUserIdFromChannelName(channel);
if (self.state.loadingDMChannel === -1) {
handleClick = function clickHandler(e) {
e.preventDefault();
self.setState({loadingDMChannel: index});
Client.createDirectChannel(channel, otherUserId,
function success(data) {
self.setState({loadingDMChannel: -1});
AsyncClient.getChannel(data.id);
utils.switchChannel(data);
},
function error() {
self.setState({loadingDMChannel: -1});
window.location.href = TeamStore.getCurrentTeamUrl() + '/channels/' + channel.name;
}
);
};
}
}
return (
<li
key={channel.name}
ref={channel.name}
className={linkClass}
>
<a
className={'sidebar-channel ' + titleClass}
href={href}
onClick={handleClick}
>
{status}
{channel.display_name}
{badge}
</a>
</li>
);
}
render() {
this.badgesActive = false;
// keep track of the first and last unread channels so we can use them to set the unread indicators
this.firstUnreadChannel = null;
this.lastUnreadChannel = null;
// create elements for all 3 types of channels // create elements for all 3 types of channels
var channelItems = this.state.channels.filter( var channelItems = this.state.channels.filter(
function filterPublicChannels(channel) { function filterPublicChannels(channel) {
return channel.type === 'O'; return channel.type === 'O';
} }
).map(createChannelElement); ).map(this.createChannelElement);
var privateChannelItems = this.state.channels.filter( var privateChannelItems = this.state.channels.filter(
function filterPrivateChannels(channel) { function filterPrivateChannels(channel) {
return channel.type === 'P'; return channel.type === 'P';
} }
).map(createChannelElement); ).map(this.createChannelElement);
var directMessageItems = this.state.showDirectChannels.map(createChannelElement); var directMessageItems = this.state.showDirectChannels.map(this.createChannelElement);
// update the favicon to show if there are any notifications // update the favicon to show if there are any notifications
var link = document.createElement('link'); var link = document.createElement('link');
link.type = 'image/x-icon'; link.type = 'image/x-icon';
link.rel = 'shortcut icon'; link.rel = 'shortcut icon';
link.id = 'favicon'; link.id = 'favicon';
if (badgesActive) { if (this.badgesActive) {
link.href = '/static/images/redfavicon.ico'; link.href = '/static/images/redfavicon.ico';
} else { } else {
link.href = '/static/images/favicon.ico'; link.href = '/static/images/favicon.ico';
@@ -438,7 +458,13 @@ module.exports = React.createClass({
if (this.state.hideDirectChannels.length > 0) { if (this.state.hideDirectChannels.length > 0) {
directMessageMore = ( directMessageMore = (
<li> <li>
<a href='#' data-toggle='modal' className='nav-more' data-target='#more_direct_channels' data-channels={JSON.stringify(this.state.hideDirectChannels)}> <a
href='#'
data-toggle='modal'
className='nav-more'
data-target='#more_direct_channels'
data-channels={JSON.stringify(this.state.hideDirectChannels)}
>
{'More (' + this.state.hideDirectChannels.length + ')'} {'More (' + this.state.hideDirectChannels.length + ')'}
</a> </a>
</li> </li>
@@ -447,21 +473,76 @@ module.exports = React.createClass({
return ( return (
<div> <div>
<SidebarHeader teamDisplayName={this.props.teamDisplayName} teamType={this.props.teamType} /> <SidebarHeader
teamDisplayName={this.props.teamDisplayName}
teamType={this.props.teamType}
/>
<SearchBox /> <SearchBox />
<div ref='topUnreadIndicator' className='nav-pills__unread-indicator nav-pills__unread-indicator-top' style={{display: 'none'}}>Unread post(s) above</div> <div
<div ref='bottomUnreadIndicator' className='nav-pills__unread-indicator nav-pills__unread-indicator-bottom' style={{display: 'none'}}>Unread post(s) below</div> ref='topUnreadIndicator'
className='nav-pills__unread-indicator nav-pills__unread-indicator-top'
style={{display: 'none'}}
>
Unread post(s) above
</div>
<div
ref='bottomUnreadIndicator'
className='nav-pills__unread-indicator nav-pills__unread-indicator-bottom'
style={{display: 'none'}}
>
Unread post(s) below
</div>
<div ref='container' className='nav-pills__container' onScroll={this.onScroll}> <div
ref='container'
className='nav-pills__container'
onScroll={this.onScroll}
>
<ul className='nav nav-pills nav-stacked'> <ul className='nav nav-pills nav-stacked'>
<li><h4>Channels<a className='add-channel-btn' href='#' data-toggle='modal' data-target='#new_channel' data-channeltype='O'>+</a></h4></li> <li>
<h4>
Channels
<a
className='add-channel-btn'
href='#'
data-toggle='modal'
data-target='#new_channel'
data-channeltype='O'
>
+
</a>
</h4>
</li>
{channelItems} {channelItems}
<li><a href='#' data-toggle='modal' className='nav-more' data-target='#more_channels' data-channeltype='O'>More...</a></li> <li>
<a
href='#'
data-toggle='modal'
className='nav-more'
data-target='#more_channels'
data-channeltype='O'
>
More...
</a>
</li>
</ul> </ul>
<ul className='nav nav-pills nav-stacked'> <ul className='nav nav-pills nav-stacked'>
<li><h4>Private Groups<a className='add-channel-btn' href='#' data-toggle='modal' data-target='#new_channel' data-channeltype='P'>+</a></h4></li> <li>
<h4>
Private Groups
<a
className='add-channel-btn'
href='#'
data-toggle='modal'
data-target='#new_channel'
data-channeltype='P'
>
+
</a>
</h4>
</li>
{privateChannelItems} {privateChannelItems}
</ul> </ul>
<ul className='nav nav-pills nav-stacked'> <ul className='nav nav-pills nav-stacked'>
@@ -473,4 +554,13 @@ module.exports = React.createClass({
</div> </div>
); );
} }
}); }
Sidebar.defaultProps = {
teamType: '',
teamDisplayName: ''
};
Sidebar.propTypes = {
teamType: React.PropTypes.string,
teamDisplayName: React.PropTypes.string
};