Merge branch 'master' of https://github.com/mattermost/platform into mm-1696
Conflicts: web/react/components/setting_upload.jsx web/react/components/team_import_tab.jsx
Этот коммит содержится в:
@@ -5,6 +5,7 @@ package store
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"strings"
|
||||||
"github.com/mattermost/platform/model"
|
"github.com/mattermost/platform/model"
|
||||||
"github.com/mattermost/platform/utils"
|
"github.com/mattermost/platform/utils"
|
||||||
)
|
)
|
||||||
@@ -163,6 +164,17 @@ func (us SqlUserStore) Update(user *model.User, allowActiveUpdate bool) StoreCha
|
|||||||
user.EmailVerified = false
|
user.EmailVerified = false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if user.Username != oldUser.Username {
|
||||||
|
nonUsernameKeys := []string{}
|
||||||
|
splitKeys := strings.Split(user.NotifyProps["mention_keys"], ",")
|
||||||
|
for _, key := range splitKeys {
|
||||||
|
if key != oldUser.Username && key != "@" + oldUser.Username {
|
||||||
|
nonUsernameKeys = append(nonUsernameKeys, key)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
user.NotifyProps["mention_keys"] = strings.Join(nonUsernameKeys, ",") + user.Username + ",@" + user.Username
|
||||||
|
}
|
||||||
|
|
||||||
if count, err := us.GetMaster().Update(user); err != nil {
|
if count, err := us.GetMaster().Update(user); err != nil {
|
||||||
if IsUniqueConstraintError(err.Error(), "Email", "users_email_teamid_key") {
|
if IsUniqueConstraintError(err.Error(), "Email", "users_email_teamid_key") {
|
||||||
result.Err = model.NewAppError("SqlUserStore.Update", "This email is already taken. Please choose another", "user_id="+user.Id+", "+err.Error())
|
result.Err = model.NewAppError("SqlUserStore.Update", "This email is already taken. Please choose another", "user_id="+user.Id+", "+err.Error())
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ module.exports = React.createClass({
|
|||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<h4>{"Find Your " + utils.toTitleCase(strings.Team)}</h4>
|
<h4>{"Find Your " + utils.toTitleCase(strings.Team)}</h4>
|
||||||
<p>{"An email was sent with links to any " + strings.TeamPlural}</p>
|
<p>{"An email was sent with links to any " + strings.TeamPlural + " to which you are a member."}</p>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -56,7 +56,7 @@ module.exports = React.createClass({
|
|||||||
<div>
|
<div>
|
||||||
<h4>Find Your Team</h4>
|
<h4>Find Your Team</h4>
|
||||||
<form onSubmit={this.handleSubmit}>
|
<form onSubmit={this.handleSubmit}>
|
||||||
<p>{"We'll send you an email with links to your " + strings.TeamPlural + "."}</p>
|
<p>{"Get an email with links to any " + strings.TeamPlural + " to which you are a member."}</p>
|
||||||
<div className="form-group">
|
<div className="form-group">
|
||||||
<label className='control-label'>Email</label>
|
<label className='control-label'>Email</label>
|
||||||
<div className={ email_error ? "form-group has-error" : "form-group" }>
|
<div className={ email_error ? "form-group has-error" : "form-group" }>
|
||||||
|
|||||||
@@ -14,11 +14,21 @@ function getStateFromStores() {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = React.createClass({
|
export default class MoreChannels extends React.Component {
|
||||||
displayName: 'MoreChannelsModal',
|
constructor(props) {
|
||||||
|
super(props);
|
||||||
|
|
||||||
componentDidMount: function() {
|
this.onListenerChange = this.onListenerChange.bind(this);
|
||||||
ChannelStore.addMoreChangeListener(this._onChange);
|
this.handleJoin = this.handleJoin.bind(this);
|
||||||
|
this.handleNewChannel = this.handleNewChannel.bind(this);
|
||||||
|
|
||||||
|
var initState = getStateFromStores();
|
||||||
|
initState.channelType = '';
|
||||||
|
initState.joiningChannel = -1;
|
||||||
|
this.state = initState;
|
||||||
|
}
|
||||||
|
componentDidMount() {
|
||||||
|
ChannelStore.addMoreChangeListener(this.onListenerChange);
|
||||||
$(this.refs.modal.getDOMNode()).on('shown.bs.modal', function shown() {
|
$(this.refs.modal.getDOMNode()).on('shown.bs.modal', function shown() {
|
||||||
asyncClient.getMoreChannels(true);
|
asyncClient.getMoreChannels(true);
|
||||||
});
|
});
|
||||||
@@ -28,43 +38,42 @@ module.exports = React.createClass({
|
|||||||
var button = e.relatedTarget;
|
var button = e.relatedTarget;
|
||||||
self.setState({channelType: $(button).attr('data-channeltype')});
|
self.setState({channelType: $(button).attr('data-channeltype')});
|
||||||
});
|
});
|
||||||
},
|
}
|
||||||
componentWillUnmount: function() {
|
componentWillUnmount() {
|
||||||
ChannelStore.removeMoreChangeListener(this._onChange);
|
ChannelStore.removeMoreChangeListener(this.onListenerChange);
|
||||||
},
|
}
|
||||||
_onChange: function() {
|
onListenerChange() {
|
||||||
var newState = getStateFromStores();
|
var newState = getStateFromStores();
|
||||||
if (!utils.areStatesEqual(newState.channels, this.state.channels)) {
|
if (!utils.areStatesEqual(newState.channels, this.state.channels)) {
|
||||||
this.setState(newState);
|
this.setState(newState);
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
getInitialState: function() {
|
handleJoin(channel, channelIndex) {
|
||||||
var initState = getStateFromStores();
|
this.setState({joiningChannel: channelIndex});
|
||||||
initState.channelType = '';
|
client.joinChannel(channel.id,
|
||||||
return initState;
|
function joinSuccess() {
|
||||||
},
|
|
||||||
handleJoin: function(id) {
|
|
||||||
client.joinChannel(id,
|
|
||||||
function() {
|
|
||||||
$(this.refs.modal.getDOMNode()).modal('hide');
|
$(this.refs.modal.getDOMNode()).modal('hide');
|
||||||
asyncClient.getChannel(id);
|
asyncClient.getChannel(channel.id);
|
||||||
|
utils.switchChannel(channel);
|
||||||
|
this.setState({joiningChannel: -1});
|
||||||
}.bind(this),
|
}.bind(this),
|
||||||
function(err) {
|
function joinFail(err) {
|
||||||
|
this.setState({joiningChannel: -1});
|
||||||
this.state.serverError = err.message;
|
this.state.serverError = err.message;
|
||||||
this.setState(this.state);
|
this.setState(this.state);
|
||||||
}.bind(this)
|
}.bind(this)
|
||||||
);
|
);
|
||||||
},
|
}
|
||||||
handleNewChannel: function() {
|
handleNewChannel() {
|
||||||
$(this.refs.modal.getDOMNode()).modal('hide');
|
$(this.refs.modal.getDOMNode()).modal('hide');
|
||||||
},
|
}
|
||||||
render: function() {
|
render() {
|
||||||
var serverError;
|
var serverError;
|
||||||
if (this.state.serverError) {
|
if (this.state.serverError) {
|
||||||
serverError = <div className='form-group has-error'><label className='control-label'>{this.state.serverError}</label></div>;
|
serverError = <div className='form-group has-error'><label className='control-label'>{this.state.serverError}</label></div>;
|
||||||
}
|
}
|
||||||
|
|
||||||
var outter = this;
|
var self = this;
|
||||||
var moreChannels;
|
var moreChannels;
|
||||||
|
|
||||||
if (this.state.channels != null) {
|
if (this.state.channels != null) {
|
||||||
@@ -74,14 +83,29 @@ module.exports = React.createClass({
|
|||||||
moreChannels = (
|
moreChannels = (
|
||||||
<table className='more-channel-table table'>
|
<table className='more-channel-table table'>
|
||||||
<tbody>
|
<tbody>
|
||||||
{channels.map(function cMap(channel) {
|
{channels.map(function cMap(channel, index) {
|
||||||
|
var joinButton;
|
||||||
|
if (self.state.joiningChannel === index) {
|
||||||
|
joinButton = (<img
|
||||||
|
className='join-channel-loading-gif'
|
||||||
|
src='/static/images/load.gif'
|
||||||
|
/>);
|
||||||
|
} else {
|
||||||
|
joinButton = (<button
|
||||||
|
onClick={self.handleJoin.bind(self, channel, index)}
|
||||||
|
className='btn btn-primary'>Join
|
||||||
|
</button>);
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<tr key={channel.id}>
|
<tr key={channel.id}>
|
||||||
<td>
|
<td>
|
||||||
<p className='more-channel-name'>{channel.display_name}</p>
|
<p className='more-channel-name'>{channel.display_name}</p>
|
||||||
<p className='more-channel-description'>{channel.description}</p>
|
<p className='more-channel-description'>{channel.description}</p>
|
||||||
</td>
|
</td>
|
||||||
<td className='td--action'><button onClick={outter.handleJoin.bind(outter, channel.id)} className='btn btn-primary'>Join</button></td>
|
<td className='td--action'>
|
||||||
|
{joinButton}
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
@@ -102,23 +126,47 @@ module.exports = React.createClass({
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className='modal fade' id='more_channels' ref='modal' tabIndex='-1' role='dialog' aria-hidden='true'>
|
<div
|
||||||
|
className='modal fade'
|
||||||
|
id='more_channels'
|
||||||
|
ref='modal'
|
||||||
|
tabIndex='-1'
|
||||||
|
role='dialog'
|
||||||
|
aria-hidden='true'
|
||||||
|
>
|
||||||
<div className='modal-dialog'>
|
<div className='modal-dialog'>
|
||||||
<div className='modal-content'>
|
<div className='modal-content'>
|
||||||
<div className='modal-header'>
|
<div className='modal-header'>
|
||||||
<button type='button' className='close' data-dismiss='modal'>
|
<button
|
||||||
|
type='button'
|
||||||
|
className='close'
|
||||||
|
data-dismiss='modal'
|
||||||
|
>
|
||||||
<span aria-hidden='true'>×</span>
|
<span aria-hidden='true'>×</span>
|
||||||
<span className='sr-only'>Close</span>
|
<span className='sr-only'>Close</span>
|
||||||
</button>
|
</button>
|
||||||
<h4 className='modal-title'>More Channels</h4>
|
<h4 className='modal-title'>More Channels</h4>
|
||||||
<button data-toggle='modal' data-target='#new_channel' data-channeltype={this.state.channelType} type='button' className='btn btn-primary channel-create-btn' onClick={this.handleNewChannel}>Create New Channel</button>
|
<button
|
||||||
|
data-toggle='modal'
|
||||||
|
data-target='#new_channel'
|
||||||
|
data-channeltype={this.state.channelType}
|
||||||
|
type='button'
|
||||||
|
className='btn btn-primary channel-create-btn'
|
||||||
|
onClick={this.handleNewChannel}>Create New Channel
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className='modal-body'>
|
<div className='modal-body'>
|
||||||
{moreChannels}
|
{moreChannels}
|
||||||
{serverError}
|
{serverError}
|
||||||
</div>
|
</div>
|
||||||
<div className='modal-footer'>
|
<div className='modal-footer'>
|
||||||
<button type='button' className='btn btn-default' data-dismiss='modal'>Close</button>
|
<button
|
||||||
|
type='button'
|
||||||
|
className='btn btn-default'
|
||||||
|
data-dismiss='modal'
|
||||||
|
>
|
||||||
|
Close
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -126,4 +174,4 @@ module.exports = React.createClass({
|
|||||||
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
|
|||||||
@@ -152,6 +152,8 @@ module.exports = React.createClass({
|
|||||||
|
|
||||||
var channelMenuDropdown = null;
|
var channelMenuDropdown = null;
|
||||||
if (channel) {
|
if (channel) {
|
||||||
|
var viewInfoOption = <li role='presentation'><a role='menuitem' data-toggle='modal' data-target='#channel_info' data-channelid={channel.id} href='#'>View Info</a></li>
|
||||||
|
|
||||||
var addMembersOption = null;
|
var addMembersOption = null;
|
||||||
if (!isDirect && !ChannelStore.isDefault(channel)) {
|
if (!isDirect && !ChannelStore.isDefault(channel)) {
|
||||||
addMembersOption = <li role='presentation'><a role='menuitem' data-toggle='modal' data-target='#channel_invite' href='#'>Add Members</a></li>;
|
addMembersOption = <li role='presentation'><a role='menuitem' data-toggle='modal' data-target='#channel_invite' href='#'>Add Members</a></li>;
|
||||||
@@ -192,6 +194,7 @@ module.exports = React.createClass({
|
|||||||
<span className='glyphicon glyphicon-chevron-down header-dropdown__icon'></span>
|
<span className='glyphicon glyphicon-chevron-down header-dropdown__icon'></span>
|
||||||
</a>
|
</a>
|
||||||
<ul className='dropdown-menu' role='menu' aria-labelledby='channel_header_dropdown'>
|
<ul className='dropdown-menu' role='menu' aria-labelledby='channel_header_dropdown'>
|
||||||
|
{viewInfoOption}
|
||||||
{addMembersOption}
|
{addMembersOption}
|
||||||
{manageMembersOption}
|
{manageMembersOption}
|
||||||
{setChannelDescriptionOption}
|
{setChannelDescriptionOption}
|
||||||
|
|||||||
@@ -88,6 +88,18 @@ module.exports = React.createClass({
|
|||||||
<div className='file-status file-name hide'></div>
|
<div className='file-status file-name hide'></div>
|
||||||
{serverError}
|
{serverError}
|
||||||
{clientError}
|
{clientError}
|
||||||
|
<span className='btn btn-sm btn-primary btn-file sel-btn'>Select File<input ref='uploadinput' accept={this.props.fileTypesAccepted} type='file' onChange={this.onFileSelect}/></span>
|
||||||
|
<a
|
||||||
|
className={'btn btn-sm btn-primary'}
|
||||||
|
onClick={this.doSubmit}>
|
||||||
|
Import
|
||||||
|
</a>
|
||||||
|
<a
|
||||||
|
className='btn btn-sm theme'
|
||||||
|
href='#'
|
||||||
|
onClick={this.doCancel}>
|
||||||
|
Cancel
|
||||||
|
</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -62,11 +62,9 @@ module.exports = React.createClass({
|
|||||||
this.setState({confirmPassword: e.target.value});
|
this.setState({confirmPassword: e.target.value});
|
||||||
},
|
},
|
||||||
handleHistoryOpen: function() {
|
handleHistoryOpen: function() {
|
||||||
this.setState({willReturn: true});
|
|
||||||
$("#user_settings").modal('hide');
|
$("#user_settings").modal('hide');
|
||||||
},
|
},
|
||||||
handleDevicesOpen: function() {
|
handleDevicesOpen: function() {
|
||||||
this.setState({willReturn: true});
|
|
||||||
$("#user_settings").modal('hide');
|
$("#user_settings").modal('hide');
|
||||||
},
|
},
|
||||||
handleClose: function() {
|
handleClose: function() {
|
||||||
@@ -75,11 +73,7 @@ module.exports = React.createClass({
|
|||||||
});
|
});
|
||||||
this.setState({currentPassword: '', newPassword: '', confirmPassword: '', serverError: null, passwordError: null});
|
this.setState({currentPassword: '', newPassword: '', confirmPassword: '', serverError: null, passwordError: null});
|
||||||
|
|
||||||
if (!this.state.willReturn) {
|
this.props.updateTab('general');
|
||||||
this.props.updateTab('general');
|
|
||||||
} else {
|
|
||||||
this.setState({willReturn: false});
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
componentDidMount: function() {
|
componentDidMount: function() {
|
||||||
$('#user_settings').on('hidden.bs.modal', this.handleClose);
|
$('#user_settings').on('hidden.bs.modal', this.handleClose);
|
||||||
@@ -89,7 +83,7 @@ module.exports = React.createClass({
|
|||||||
this.props.updateSection('');
|
this.props.updateSection('');
|
||||||
},
|
},
|
||||||
getInitialState: function() {
|
getInitialState: function() {
|
||||||
return {currentPassword: '', newPassword: '', confirmPassword: '', willReturn: false};
|
return {currentPassword: '', newPassword: '', confirmPassword: ''};
|
||||||
},
|
},
|
||||||
render: function() {
|
render: function() {
|
||||||
var serverError = this.state.serverError ? this.state.serverError : null;
|
var serverError = this.state.serverError ? this.state.serverError : null;
|
||||||
|
|||||||
@@ -124,7 +124,15 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.channel-loading-gif {
|
.channel-loading-gif {
|
||||||
height:15px;
|
height: 15px;
|
||||||
width:15px;
|
width: 15px;
|
||||||
margin-top:2px;
|
margin-top: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.join-channel-loading-gif {
|
||||||
|
margin-top: 5px;
|
||||||
|
margin-left: 10px;
|
||||||
|
height: 25px;
|
||||||
|
width: 25px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user