blob: ef83a527f53ce0907ac53685f5f08ed688374806 (
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
|
import React, { Component } from 'react';
import { connect } from "react-redux";
import WithHeaderFooter from '../../shared/header_footer.hoc';
import WithSidebar from '../../shared/sidebar.hoc';
import { COMMON_REQUEST, COMMON_CANCEL } from '../../utils/constants';
import HttpService from '../../services/http.service';
class SuperAdminContainer extends Component {
componentDidMount() {
}
startRequest = () => {
this.props.dispatch({
type: COMMON_REQUEST
});
let params = {
url: 'https://reqres.in/api/users?page=2'
}
HttpService.fetch(params).then(res=>{
console.log(res);
})
}
stopRequest = () => {
// this.props.dispatch({
// type: COMMON_CANCEL
// })
HttpService.cancelRequest();
}
render() {
return (
<div className="container-fluid">
<div className="row">
<div className="col-md-12">
SuperAdminContainer
</div>
</div>
<div className="row">
<div className="col-md-1"><button className="btn btn-primary" onClick={this.startRequest}>Start Request</button></div>
<div className="col-md-1"><button className="btn btn btn-danger" onClick={this.stopRequest}>Stop Request</button></div>
</div>
</div>
);
}
}
const mapStateToProps = state => {
return {
};
};
export default connect(mapStateToProps)(
WithSidebar(WithHeaderFooter(SuperAdminContainer))
);
|