Merge branch 'master' into PLT-92
Этот коммит содержится в:
@@ -17,19 +17,42 @@ export default class PostBody extends React.Component {
|
||||
const linkData = Utils.extractLinks(this.props.post.message);
|
||||
this.state = {links: linkData.links, message: linkData.text};
|
||||
}
|
||||
|
||||
getAllChildNodes(nodeIn) {
|
||||
var textNodes = [];
|
||||
|
||||
function getTextNodes(node) {
|
||||
textNodes.push(node);
|
||||
|
||||
for (var i = 0, len = node.childNodes.length; i < len; ++i) {
|
||||
getTextNodes(node.childNodes[i]);
|
||||
}
|
||||
}
|
||||
|
||||
getTextNodes(nodeIn);
|
||||
return textNodes;
|
||||
}
|
||||
|
||||
parseEmojis() {
|
||||
twemoji.parse(React.findDOMNode(this), {size: Constants.EMOJI_SIZE});
|
||||
this.getAllChildNodes(React.findDOMNode(this)).forEach((current) => {
|
||||
global.window.emojify.run(current);
|
||||
});
|
||||
}
|
||||
|
||||
componentDidMount() {
|
||||
this.parseEmojis();
|
||||
}
|
||||
|
||||
componentDidUpdate() {
|
||||
this.parseEmojis();
|
||||
}
|
||||
|
||||
componentWillReceiveProps(nextProps) {
|
||||
const linkData = Utils.extractLinks(nextProps.post.message);
|
||||
this.setState({links: linkData.links, message: linkData.text});
|
||||
}
|
||||
|
||||
render() {
|
||||
const post = this.props.post;
|
||||
const filenames = this.props.post.filenames;
|
||||
@@ -75,7 +98,7 @@ export default class PostBody extends React.Component {
|
||||
comment = (
|
||||
<p className='post-link'>
|
||||
<span>
|
||||
Commented on {name}{apostrophe} message:
|
||||
{'Commented on '}{name}{apostrophe}{' message:'}
|
||||
<a
|
||||
className='theme'
|
||||
onClick={this.props.handleCommentClick}
|
||||
@@ -98,7 +121,7 @@ export default class PostBody extends React.Component {
|
||||
href='#'
|
||||
onClick={this.props.retryPost}
|
||||
>
|
||||
Retry
|
||||
{'Retry'}
|
||||
</a>
|
||||
);
|
||||
} else if (post.state === Constants.POST_LOADING) {
|
||||
@@ -133,6 +156,7 @@ export default class PostBody extends React.Component {
|
||||
{comment}
|
||||
<p
|
||||
key={`${post.id}_message`}
|
||||
id={`${post.id}_message`}
|
||||
className={postClass}
|
||||
>
|
||||
{loading}
|
||||
|
||||
@@ -13,6 +13,7 @@ var SidebarHeader = require('./sidebar_header.jsx');
|
||||
var SearchBox = require('./search_bar.jsx');
|
||||
var Constants = require('../utils/constants.jsx');
|
||||
var NewChannelFlow = require('./new_channel_flow.jsx');
|
||||
var UnreadChannelIndicator = require('./unread_channel_indicator.jsx');
|
||||
|
||||
export default class Sidebar extends React.Component {
|
||||
constructor(props) {
|
||||
@@ -153,6 +154,16 @@ export default class Sidebar extends React.Component {
|
||||
|
||||
$(window).on('resize', this.onResize);
|
||||
}
|
||||
shouldComponentUpdate(nextProps, nextState) {
|
||||
if (!Utils.areStatesEqual(nextProps, this.props)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (!Utils.areStatesEqual(nextState, this.state)) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
componentDidUpdate() {
|
||||
this.updateTitle();
|
||||
this.updateUnreadIndicators();
|
||||
@@ -274,15 +285,16 @@ export default class Sidebar extends React.Component {
|
||||
this.updateUnreadIndicators();
|
||||
}
|
||||
updateUnreadIndicators() {
|
||||
var container = $(React.findDOMNode(this.refs.container));
|
||||
const container = $(React.findDOMNode(this.refs.container));
|
||||
|
||||
var showTopUnread = false;
|
||||
var showBottomUnread = false;
|
||||
|
||||
if (this.firstUnreadChannel) {
|
||||
var firstUnreadElement = $(React.findDOMNode(this.refs[this.firstUnreadChannel]));
|
||||
|
||||
if (firstUnreadElement.position().top + firstUnreadElement.height() < 0) {
|
||||
$(React.findDOMNode(this.refs.topUnreadIndicator)).css('display', 'initial');
|
||||
} else {
|
||||
$(React.findDOMNode(this.refs.topUnreadIndicator)).css('display', 'none');
|
||||
showTopUnread = true;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -290,11 +302,14 @@ export default class Sidebar extends React.Component {
|
||||
var lastUnreadElement = $(React.findDOMNode(this.refs[this.lastUnreadChannel]));
|
||||
|
||||
if (lastUnreadElement.position().top > container.height()) {
|
||||
$(React.findDOMNode(this.refs.bottomUnreadIndicator)).css('display', 'initial');
|
||||
} else {
|
||||
$(React.findDOMNode(this.refs.bottomUnreadIndicator)).css('display', 'none');
|
||||
showBottomUnread = true;
|
||||
}
|
||||
}
|
||||
|
||||
this.setState({
|
||||
showTopUnread,
|
||||
showBottomUnread
|
||||
});
|
||||
}
|
||||
createChannelElement(channel, index) {
|
||||
var members = this.state.members;
|
||||
@@ -432,19 +447,13 @@ export default class Sidebar extends React.Component {
|
||||
this.lastUnreadChannel = null;
|
||||
|
||||
// create elements for all 3 types of channels
|
||||
var channelItems = this.state.channels.filter(
|
||||
function filterPublicChannels(channel) {
|
||||
return channel.type === 'O';
|
||||
}
|
||||
).map(this.createChannelElement);
|
||||
const publicChannels = this.state.channels.filter((channel) => channel.type === 'O');
|
||||
const publicChannelItems = publicChannels.map(this.createChannelElement);
|
||||
|
||||
var privateChannelItems = this.state.channels.filter(
|
||||
function filterPrivateChannels(channel) {
|
||||
return channel.type === 'P';
|
||||
}
|
||||
).map(this.createChannelElement);
|
||||
const privateChannels = this.state.channels.filter((channel) => channel.type === 'P');
|
||||
const privateChannelItems = privateChannels.map(this.createChannelElement);
|
||||
|
||||
var directMessageItems = this.state.showDirectChannels.map(this.createChannelElement);
|
||||
const directMessageItems = this.state.showDirectChannels.map(this.createChannelElement);
|
||||
|
||||
// update the favicon to show if there are any notifications
|
||||
var link = document.createElement('link');
|
||||
@@ -498,20 +507,16 @@ export default class Sidebar extends React.Component {
|
||||
/>
|
||||
<SearchBox />
|
||||
|
||||
<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>
|
||||
<UnreadChannelIndicator
|
||||
show={this.state.showTopUnread}
|
||||
extraClass='nav-pills__unread-indicator-top'
|
||||
text={'Unread post(s) above'}
|
||||
/>
|
||||
<UnreadChannelIndicator
|
||||
show={this.state.showBottomUnread}
|
||||
extraClass='nav-pills__unread-indicator-bottom'
|
||||
text={'Unread post(s) below'}
|
||||
/>
|
||||
|
||||
<div
|
||||
ref='container'
|
||||
@@ -531,7 +536,7 @@ export default class Sidebar extends React.Component {
|
||||
</a>
|
||||
</h4>
|
||||
</li>
|
||||
{channelItems}
|
||||
{publicChannelItems}
|
||||
<li>
|
||||
<a
|
||||
href='#'
|
||||
|
||||
35
web/react/components/unread_channel_indicator.jsx
Обычный файл
35
web/react/components/unread_channel_indicator.jsx
Обычный файл
@@ -0,0 +1,35 @@
|
||||
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
|
||||
// See License.txt for license information.
|
||||
|
||||
// Indicator for the left sidebar which indicate if there's unread posts in a channel that is not shown
|
||||
// because it is either above or below the screen
|
||||
export default class UnreadChannelIndicator extends React.Component {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
}
|
||||
render() {
|
||||
let displayValue = 'none';
|
||||
if (this.props.show) {
|
||||
displayValue = 'initial';
|
||||
}
|
||||
return (
|
||||
<div
|
||||
className={'nav-pills__unread-indicator ' + this.props.extraClass}
|
||||
style={{display: displayValue}}
|
||||
>
|
||||
{this.props.text}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
UnreadChannelIndicator.defaultProps = {
|
||||
show: false,
|
||||
extraClass: '',
|
||||
text: ''
|
||||
};
|
||||
UnreadChannelIndicator.propTypes = {
|
||||
show: React.PropTypes.bool,
|
||||
extraClass: React.PropTypes.string,
|
||||
text: React.PropTypes.string
|
||||
};
|
||||
@@ -35,7 +35,7 @@ export default class UserSettingsModal extends React.Component {
|
||||
tabs.push({name: 'security', uiName: 'Security', icon: 'glyphicon glyphicon-lock'});
|
||||
tabs.push({name: 'notifications', uiName: 'Notifications', icon: 'glyphicon glyphicon-exclamation-sign'});
|
||||
tabs.push({name: 'appearance', uiName: 'Appearance', icon: 'glyphicon glyphicon-wrench'});
|
||||
if (global.window.config.EnableOAuthServiceProvider) {
|
||||
if (global.window.config.EnableOAuthServiceProvider === 'true') {
|
||||
tabs.push({name: 'developer', uiName: 'Developer', icon: 'glyphicon glyphicon-th'});
|
||||
}
|
||||
|
||||
|
||||
Ссылка в новой задаче
Block a user