blob: 6c0c10f621a1060112949bebd63d8e2db256569c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
// 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>
);
}
}
|