| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- import React, { Component } from "react";
- import ContentWrapper from "@/components/Layout/ContentWrapper";
- import { Row, Col } from "reactstrap";
- import CaseProgress from "@/components/Main/CaseProgress";
- import TableSanksi from "@/components/Main/TableSanksi";
- import { getSanksi } from "@/actions/sanksi";
- import { connect } from "react-redux";
- import Loader from "@/components/Common/Loader";
- class PemantauanPerbaikan extends Component {
- constructor(props) {
- super(props);
- this.state = {
- sanksi: {},
- };
- }
- componentDidMount = async () => {
- const { token } = this.props;
- const sanksi = await getSanksi(token, { perbaikan: true });
- this.setState({ sanksi });
- };
- render() {
- const { sanksi } = this.state;
- return (
- <ContentWrapper>
- <div className="content-heading">
- <span className="font-color-white">
- Pemantauan Perbaikan
- </span>
- </div>
- <Row>
- {/* <Col lg="4">
- <CaseProgress />
- </Col> */}
- <Col lg="12">{sanksi.data ? <TableSanksi listData={sanksi.data} to="/app/pemantauan-perbaikan/detail" linkName="Detail" /> : <Loader />}</Col>
- </Row>
- </ContentWrapper>
- );
- }
- }
- const mapStateToProps = (state) => ({ user: state.user, token: state.token });
- export default connect(mapStateToProps)(PemantauanPerbaikan);
|