blob: 4ed2ad9ab5e4e89e327999be1bda5c41cbdd369f (
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
|
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import LoadingScreen from './loading_screen.jsx';
import AuditTable from './audit_table.jsx';
import UserStore from 'stores/user_store.jsx';
import * as AsyncClient from 'utils/async_client.jsx';
import * as Utils from 'utils/utils.jsx';
import $ from 'jquery';
import React from 'react';
import {Modal} from 'react-bootstrap';
import {FormattedMessage} from 'react-intl';
export default class AccessHistoryModal extends React.Component {
constructor(props) {
super(props);
this.onAuditChange = this.onAuditChange.bind(this);
this.onShow = this.onShow.bind(this);
this.onHide = this.onHide.bind(this);
const state = this.getStateFromStoresForAudits();
state.moreInfo = [];
state.show = true;
this.state = state;
}
getStateFromStoresForAudits() {
return {
audits: UserStore.getAudits()
};
}
onShow() {
AsyncClient.getAudits();
if (!Utils.isMobile()) {
$('.modal-body').perfectScrollbar();
}
}
onHide() {
this.setState({show: false});
}
componentDidMount() {
UserStore.addAuditsChangeListener(this.onAuditChange);
this.onShow();
}
componentWillUnmount() {
UserStore.removeAuditsChangeListener(this.onAuditChange);
}
onAuditChange() {
var newState = this.getStateFromStoresForAudits();
if (!Utils.areObjectsEqual(newState.audits, this.state.audits)) {
this.setState(newState);
}
}
render() {
var content;
if (this.state.audits.loading) {
content = (<LoadingScreen/>);
} else {
content = (
<AuditTable
audits={this.state.audits}
showIp={true}
showSession={true}
/>
);
}
return (
<Modal
show={this.state.show}
onHide={this.onHide}
onExited={this.props.onHide}
bsSize='large'
>
<Modal.Header closeButton={true}>
<Modal.Title>
<FormattedMessage
id='access_history.title'
defaultMessage='Access History'
/>
</Modal.Title>
</Modal.Header>
<Modal.Body ref='modalBody'>
{content}
</Modal.Body>
</Modal>
);
}
}
AccessHistoryModal.propTypes = {
onHide: React.PropTypes.func.isRequired
};
|