summaryrefslogtreecommitdiffstats
path: root/webapp/components/admin_console/sync_now_button.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/admin_console/sync_now_button.jsx')
-rw-r--r--webapp/components/admin_console/sync_now_button.jsx115
1 files changed, 0 insertions, 115 deletions
diff --git a/webapp/components/admin_console/sync_now_button.jsx b/webapp/components/admin_console/sync_now_button.jsx
deleted file mode 100644
index b2a5a001d..000000000
--- a/webapp/components/admin_console/sync_now_button.jsx
+++ /dev/null
@@ -1,115 +0,0 @@
-import PropTypes from 'prop-types';
-
-// 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: 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>
- );
- }
-}