Merge branch 'master' of https://github.com/mattermost/platform into MM-831
merge
Этот коммит содержится в:
@@ -61,6 +61,10 @@ module.exports = React.createClass({
|
||||
render: function() {
|
||||
var server_error = this.state.server_error ? <div className='form-group has-error'><label className='control-label'>{ this.state.server_error }</label></div> : null;
|
||||
var outter = this;
|
||||
var moreChannels;
|
||||
|
||||
if (this.state.channels != null)
|
||||
moreChannels = this.state.channels;
|
||||
|
||||
return (
|
||||
<div className="modal fade" id="more_channels" ref="modal" tabIndex="-1" role="dialog" aria-hidden="true">
|
||||
@@ -75,26 +79,36 @@ module.exports = React.createClass({
|
||||
<button data-toggle="modal" data-target="#new_channel" data-channeltype={this.state.channel_type} type="button" className="btn btn-primary channel-create-btn" onClick={this.handleNewChannel}>Create New Channel</button>
|
||||
</div>
|
||||
<div className="modal-body">
|
||||
{this.state.channels.length ?
|
||||
<table className="more-channel-table table">
|
||||
<tbody>
|
||||
{this.state.channels.map(function(channel) {
|
||||
return (
|
||||
<tr key={channel.id}>
|
||||
<td>
|
||||
<p className="more-channel-name">{channel.display_name}</p>
|
||||
<p className="more-channel-description">{channel.description}</p>
|
||||
</td>
|
||||
<td className="td--action"><button onClick={outter.handleJoin.bind(outter, channel.id)} className="pull-right btn btn-primary">Join</button></td>
|
||||
</tr>
|
||||
)
|
||||
})}
|
||||
</tbody>
|
||||
</table>
|
||||
: <div className="no-channel-message">
|
||||
<p className="primary-message">No more channels to join</p>
|
||||
<p className="secondary-message">Click 'Create New Channel' to make a new one</p>
|
||||
</div>}
|
||||
{moreChannels ?
|
||||
(moreChannels.length ?
|
||||
<table className="more-channel-table table">
|
||||
<tbody>
|
||||
{moreChannels.map(function(channel) {
|
||||
return (
|
||||
<tr key={channel.id}>
|
||||
<td>
|
||||
<p className="more-channel-name">{channel.display_name}</p>
|
||||
<p className="more-channel-description">{channel.description}</p>
|
||||
</td>
|
||||
<td className="td--action"><button onClick={outter.handleJoin.bind(outter, channel.id)} className="pull-right btn btn-primary">Join</button></td>
|
||||
</tr>
|
||||
)
|
||||
})}
|
||||
</tbody>
|
||||
</table>
|
||||
: <div className="no-channel-message">
|
||||
<p className="primary-message">No more channels to join</p>
|
||||
<p className="secondary-message">Click 'Create New Channel' to make a new one</p>
|
||||
</div>)
|
||||
: <div ref="loadingscreen" className="loading-screen loading-screen--channel">
|
||||
<div className="loading__content">
|
||||
<h3>Loading</h3>
|
||||
<div id="round_1" className="round"></div>
|
||||
<div id="round_2" className="round"></div>
|
||||
<div id="round_3" className="round"></div>
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
{ server_error }
|
||||
</div>
|
||||
<div className="modal-footer">
|
||||
|
||||
@@ -123,7 +123,7 @@ module.exports = React.createClass({
|
||||
$('.post-list__content div .post').removeClass('post--last');
|
||||
$('.post-list__content div:last-child .post').addClass('post--last');
|
||||
|
||||
$('body').on('mouseenter mouseleave', '.post:not(.post--comment.same--root)', function(ev){
|
||||
$('body').on('mouseenter mouseleave', '.post', function(ev){
|
||||
if(ev.type === 'mouseenter'){
|
||||
$(this).parent('div').prev('.date-separator, .new-separator').addClass('hovered--after');
|
||||
$(this).parent('div').next('.date-separator, .new-separator').addClass('hovered--before');
|
||||
@@ -134,6 +134,17 @@ module.exports = React.createClass({
|
||||
}
|
||||
});
|
||||
|
||||
$('body').on('mouseenter mouseleave', '.post.post--comment.same--root', function(ev){
|
||||
if(ev.type === 'mouseenter'){
|
||||
$(this).parent('div').prev('.date-separator, .new-separator').addClass('hovered--comment');
|
||||
$(this).parent('div').next('.date-separator, .new-separator').addClass('hovered--comment');
|
||||
}
|
||||
else {
|
||||
$(this).parent('div').prev('.date-separator, .new-separator').removeClass('hovered--comment');
|
||||
$(this).parent('div').next('.date-separator, .new-separator').removeClass('hovered--comment');
|
||||
}
|
||||
});
|
||||
|
||||
},
|
||||
componentDidUpdate: function() {
|
||||
this.resize();
|
||||
|
||||
@@ -282,7 +282,6 @@ module.exports = React.createClass({
|
||||
componentDidMount: function() {
|
||||
PostStore.addSelectedPostChangeListener(this._onChange);
|
||||
PostStore.addChangeListener(this._onChangeAll);
|
||||
$(".post-right__scroll").perfectScrollbar();
|
||||
this.resize();
|
||||
var self = this;
|
||||
$(window).resize(function(){
|
||||
@@ -341,7 +340,7 @@ module.exports = React.createClass({
|
||||
var height = $(window).height() - $('#error_bar').outerHeight() - 100;
|
||||
$(".post-right__scroll").css("height", height + "px");
|
||||
$(".post-right__scroll").scrollTop(100000);
|
||||
$(".post-right__scroll").perfectScrollbar('update');
|
||||
$(".post-right__scroll").perfectScrollbar();
|
||||
},
|
||||
render: function() {
|
||||
|
||||
|
||||
@@ -202,7 +202,7 @@ var ChannelStore = assign({}, EventEmitter.prototype, {
|
||||
BrowserStore.setItem("more_channels", JSON.stringify(channels));
|
||||
},
|
||||
_getMoreChannels: function() {
|
||||
var channels = [];
|
||||
var channels;
|
||||
try {
|
||||
channels = JSON.parse(BrowserStore.getItem("more_channels"));
|
||||
}
|
||||
|
||||
@@ -104,7 +104,7 @@ module.exports.updateLastViewedAt = function() {
|
||||
module.exports.getMoreChannels = function(force) {
|
||||
if (isCallInProgress("getMoreChannels")) return;
|
||||
|
||||
if (ChannelStore.getMoreAll().length == 0 || force) {
|
||||
if (!ChannelStore.getMoreAll() || force) {
|
||||
|
||||
callTracker["getMoreChannels"] = utils.getTimestamp();
|
||||
client.getMoreChannels(
|
||||
|
||||
Ссылка в новой задаче
Block a user