Merge branch 'master' of https://github.com/mattermost/platform into ui-changes
Этот коммит содержится в:
@@ -55,6 +55,11 @@ export default class CreatePost extends React.Component {
|
||||
initialText: messageText
|
||||
};
|
||||
}
|
||||
componentDidUpdate(prevProps, prevState) {
|
||||
if (prevState.previews.length !== this.state.previews.length) {
|
||||
this.resizePostHolder();
|
||||
}
|
||||
}
|
||||
handleSubmit(e) {
|
||||
e.preventDefault();
|
||||
|
||||
|
||||
96
web/react/components/team_export_tab.jsx
Обычный файл
96
web/react/components/team_export_tab.jsx
Обычный файл
@@ -0,0 +1,96 @@
|
||||
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
|
||||
// See License.txt for license information.
|
||||
|
||||
var Client = require('../utils/client.jsx');
|
||||
|
||||
export default class TeamExportTab extends React.Component {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
this.state = {status: 'request', link: '', err: ''};
|
||||
|
||||
this.onExportSuccess = this.onExportSuccess.bind(this);
|
||||
this.onExportFailure = this.onExportFailure.bind(this);
|
||||
this.doExport = this.doExport.bind(this);
|
||||
}
|
||||
onExportSuccess(data) {
|
||||
this.setState({status: 'ready', link: data.link, err: ''});
|
||||
}
|
||||
onExportFailure(e) {
|
||||
this.setState({status: 'failure', link: '', err: e.message});
|
||||
}
|
||||
doExport() {
|
||||
if (this.state.status === 'in-progress') {
|
||||
return;
|
||||
}
|
||||
this.setState({status: 'in-progress'});
|
||||
Client.exportTeam(this.onExportSuccess, this.onExportFailure);
|
||||
}
|
||||
render() {
|
||||
var messageSection = '';
|
||||
switch (this.state.status) {
|
||||
case 'request':
|
||||
messageSection = '';
|
||||
break;
|
||||
case 'in-progress':
|
||||
messageSection = (
|
||||
<p className='confirm-import alert alert-warning'>
|
||||
<i className='fa fa-spinner fa-pulse' />
|
||||
{' Exporting...'}
|
||||
</p>
|
||||
);
|
||||
break;
|
||||
case 'ready':
|
||||
messageSection = (
|
||||
<p className='confirm-import alert alert-success'>
|
||||
<i className='fa fa-check' />
|
||||
{' Ready for '}
|
||||
<a
|
||||
href={this.state.link}
|
||||
download={true}
|
||||
>
|
||||
{'download'}
|
||||
</a>
|
||||
</p>
|
||||
);
|
||||
break;
|
||||
case 'failure':
|
||||
messageSection = (
|
||||
<p className='confirm-import alert alert-warning'>
|
||||
<i className='fa fa-warning' />
|
||||
{' Unable to export: ' + this.state.err}
|
||||
</p>
|
||||
);
|
||||
break;
|
||||
}
|
||||
|
||||
return (
|
||||
<div
|
||||
ref='wrapper'
|
||||
className='user-settings'
|
||||
>
|
||||
<h3 className='tab-header'>{'Export'}</h3>
|
||||
<div className='divider-dark first'/>
|
||||
<ul className='section-max'>
|
||||
<li className='col-xs-12 section-title'>{'Export your team'}</li>
|
||||
<li className='col-xs-offset-3 col-xs-8'>
|
||||
<ul className='setting-list'>
|
||||
<li className='setting-list-item'>
|
||||
<span className='btn btn-sm btn-primary btn-file sel-btn'>
|
||||
<a
|
||||
className='btn btn-sm btn-primary'
|
||||
href='#'
|
||||
onClick={this.doExport}
|
||||
>
|
||||
{'Export'}
|
||||
</a>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div className='divider-dark'/>
|
||||
{messageSection}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -3,6 +3,7 @@
|
||||
|
||||
var TeamStore = require('../stores/team_store.jsx');
|
||||
var ImportTab = require('./team_import_tab.jsx');
|
||||
var ExportTab = require('./team_export_tab.jsx');
|
||||
var FeatureTab = require('./team_feature_tab.jsx');
|
||||
var GeneralTab = require('./team_general_tab.jsx');
|
||||
var Utils = require('../utils/utils.jsx');
|
||||
@@ -64,6 +65,13 @@ export default class TeamSettings extends React.Component {
|
||||
</div>
|
||||
);
|
||||
break;
|
||||
case 'export':
|
||||
result = (
|
||||
<div>
|
||||
<ExportTab />
|
||||
</div>
|
||||
);
|
||||
break;
|
||||
default:
|
||||
result = (
|
||||
<div/>
|
||||
|
||||
@@ -36,6 +36,7 @@ export default class TeamSettingsModal extends React.Component {
|
||||
let tabs = [];
|
||||
tabs.push({name: 'general', uiName: 'General', icon: 'glyphicon glyphicon-cog'});
|
||||
tabs.push({name: 'import', uiName: 'Import', icon: 'glyphicon glyphicon-upload'});
|
||||
tabs.push({name: 'export', uiName: 'Export', icon: 'glyphicon glyphicon-download'});
|
||||
tabs.push({name: 'feature', uiName: 'Advanced', icon: 'glyphicon glyphicon-wrench'});
|
||||
|
||||
return (
|
||||
|
||||
@@ -40,6 +40,7 @@ export default class UserSettings extends React.Component {
|
||||
user={this.state.user}
|
||||
activeSection={this.props.activeSection}
|
||||
updateSection={this.props.updateSection}
|
||||
updateTab={this.props.updateTab}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
@@ -86,4 +87,4 @@ UserSettings.propTypes = {
|
||||
activeSection: React.PropTypes.string,
|
||||
updateSection: React.PropTypes.func,
|
||||
updateTab: React.PropTypes.func
|
||||
};
|
||||
};
|
||||
|
||||
@@ -267,6 +267,28 @@ export default class UserSettingsGeneralTab extends React.Component {
|
||||
</div>
|
||||
);
|
||||
|
||||
function notifClick(e) {
|
||||
e.preventDefault();
|
||||
this.updateSection('');
|
||||
this.props.updateTab('notifications');
|
||||
}
|
||||
|
||||
const notifLink = (
|
||||
<a
|
||||
href='#'
|
||||
onClick={notifClick.bind(this)}
|
||||
>
|
||||
Notifications
|
||||
</a>
|
||||
);
|
||||
|
||||
const extraInfo = (
|
||||
<span>
|
||||
By default, you will receive mention notifications when someone types your first name.
|
||||
Go to {notifLink} settings to change this default.
|
||||
</span>
|
||||
);
|
||||
|
||||
nameSection = (
|
||||
<SettingItemMax
|
||||
title='Full Name'
|
||||
@@ -278,6 +300,7 @@ export default class UserSettingsGeneralTab extends React.Component {
|
||||
this.updateSection('');
|
||||
e.preventDefault();
|
||||
}.bind(this)}
|
||||
extraInfo={extraInfo}
|
||||
/>
|
||||
);
|
||||
} else {
|
||||
@@ -326,6 +349,13 @@ export default class UserSettingsGeneralTab extends React.Component {
|
||||
</div>
|
||||
);
|
||||
|
||||
const extraInfo = (
|
||||
<span>
|
||||
Use Nickname for a name you might be called that is different from your first name and user name.
|
||||
This is most often used when two or more people have similar sounding names and usernames.
|
||||
</span>
|
||||
);
|
||||
|
||||
nicknameSection = (
|
||||
<SettingItemMax
|
||||
title='Nickname'
|
||||
@@ -337,6 +367,7 @@ export default class UserSettingsGeneralTab extends React.Component {
|
||||
this.updateSection('');
|
||||
e.preventDefault();
|
||||
}.bind(this)}
|
||||
extraInfo={extraInfo}
|
||||
/>
|
||||
);
|
||||
} else {
|
||||
@@ -375,6 +406,8 @@ export default class UserSettingsGeneralTab extends React.Component {
|
||||
</div>
|
||||
);
|
||||
|
||||
const extraInfo = (<span>Pick something easy for teammates to recognize and recall.</span>);
|
||||
|
||||
usernameSection = (
|
||||
<SettingItemMax
|
||||
title='Username'
|
||||
@@ -386,6 +419,7 @@ export default class UserSettingsGeneralTab extends React.Component {
|
||||
this.updateSection('');
|
||||
e.preventDefault();
|
||||
}.bind(this)}
|
||||
extraInfo={extraInfo}
|
||||
/>
|
||||
);
|
||||
} else {
|
||||
@@ -524,5 +558,6 @@ export default class UserSettingsGeneralTab extends React.Component {
|
||||
UserSettingsGeneralTab.propTypes = {
|
||||
user: React.PropTypes.object,
|
||||
updateSection: React.PropTypes.func,
|
||||
updateTab: React.PropTypes.func,
|
||||
activeSection: React.PropTypes.string
|
||||
};
|
||||
|
||||
@@ -919,6 +919,19 @@ export function importSlack(fileData, success, error) {
|
||||
});
|
||||
}
|
||||
|
||||
export function exportTeam(success, error) {
|
||||
$.ajax({
|
||||
url: '/api/v1/teams/export_team',
|
||||
type: 'GET',
|
||||
dataType: 'json',
|
||||
success: success,
|
||||
error: function onError(xhr, status, err) {
|
||||
var e = handleError('exportTeam', xhr, status, err);
|
||||
error(e);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
export function getStatuses(success, error) {
|
||||
$.ajax({
|
||||
url: '/api/v1/users/status',
|
||||
|
||||
Ссылка в новой задаче
Block a user