blob: 59eda8e41dd025ae958671fd56e2ed2f2ed79148 (
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
|
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import React from 'react';
import * as AsyncClient from 'utils/async_client.jsx';
import Client from 'client/web_client.jsx';
import {FormattedMessage} from 'react-intl';
import SpinnerButton from 'components/spinner_button.jsx';
export default class ChannelInviteButton extends React.Component {
static get propTypes() {
return {
user: React.PropTypes.object.isRequired,
channel: React.PropTypes.object.isRequired,
onInviteError: React.PropTypes.func.isRequired
};
}
constructor(props) {
super(props);
this.handleClick = this.handleClick.bind(this);
this.state = {
addingUser: false
};
}
handleClick() {
if (this.state.addingUser) {
return;
}
this.setState({
addingUser: true
});
Client.addChannelMember(
this.props.channel.id,
this.props.user.id,
() => {
this.setState({
addingUser: false
});
this.props.onInviteError(null);
AsyncClient.getChannelExtraInfo();
},
(err) => {
this.setState({
addingUser: false
});
this.props.onInviteError(err);
}
);
}
render() {
return (
<SpinnerButton
className='btn btn-sm btn-primary'
onClick={this.handleClick}
spinning={this.state.addingUser}
>
<i className='fa fa-envelope fa-margin--right'/>
<FormattedMessage
id='channel_invite.add'
defaultMessage=' Add'
/>
</SpinnerButton>
);
}
}
|