Files
mattermost/webapp/components/admin_console/sync_now_button.jsx
Harrison Healey fb6f2a123c PLT-5860 Updated copyright date (#6058)
* PLT-5860 Updated copyright date in about modal

* PLT-5860 Updated copyright notice in JSX files

* PLT-5860 Updated copyright notice in go files

* Fixed misc copyright dates

* Fixed component snapshots
2017-04-12 08:27:57 -04:00

114 lines
3.1 KiB
JavaScript

// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import React from 'react';
import * as Utils from 'utils/utils.jsx';
import {FormattedMessage, FormattedHTMLMessage} from 'react-intl';
import {ldapSyncNow} from 'actions/admin_actions.jsx';
export default class SyncNowButton extends React.Component {
static get propTypes() {
return {
disabled: React.PropTypes.bool
};
}
constructor(props) {
super(props);
this.handleSyncNow = this.handleSyncNow.bind(this);
this.state = {
buisy: false,
fail: null
};
}
handleSyncNow(e) {
e.preventDefault();
this.setState({
buisy: true,
fail: null
});
ldapSyncNow(
() => {
this.setState({
buisy: false
});
},
(err) => {
this.setState({
buisy: false,
fail: err.message + ' - ' + err.detailed_error
});
}
);
}
render() {
let failMessage = null;
if (this.state.fail) {
failMessage = (
<div className='alert alert-warning'>
<i className='fa fa-warning'/>
<FormattedMessage
id='admin.ldap.syncFailure'
defaultMessage='Sync Failure: {error}'
values={{
error: this.state.fail
}}
/>
</div>
);
}
const helpText = (
<FormattedHTMLMessage
id='admin.ldap.syncNowHelpText'
defaultMessage='Initiates an AD/LDAP synchronization immediately.'
/>
);
let contents = null;
if (this.state.loading) {
contents = (
<span>
<span className='fa fa-refresh icon--rotate'/>
{Utils.localizeMessage('admin.reload.loading', ' Loading...')}
</span>
);
} else {
contents = (
<FormattedMessage
id='admin.ldap.sync_button'
defaultMessage='AD/LDAP Synchronize Now'
/>
);
}
return (
<div className='form-group reload-config'>
<div className='col-sm-offset-4 col-sm-8'>
<div>
<button
className='btn btn-default'
onClick={this.handleSyncNow}
disabled={this.props.disabled}
>
{contents}
</button>
{failMessage}
</div>
<div className='help-text'>
{helpText}
</div>
</div>
</div>
);
}
}