| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- import React, { Component } from "react";
- import BasePage from "@/components/Layout/BasePage";
- import { Row, Col, FormGroup, Input, Card, CardBody, Button, Navbar, NavItem, NavLink, NavbarBrand, NavbarToggler, Nav, Collapse } from "reactstrap";
- import Link from "next/link";
- import ContentWrapper from "@/components/Layout/ContentWrapper";
- import { getPelaporanPublic } from "@/actions/pelaporan";
- import DetailLaporan from "@/components/Public/DetailLaporan";
- import { getLogPublic } from "@/actions/log";
- import Timeline from "@/components/Main/Timeline";
- import { Formik, Form, Field, ErrorMessage } from "formik";
- import * as Yup from "yup";
- const menu = [
- {
- title: "Home",
- path: "/app",
- },
- {
- title: "Buat Laporan",
- path: "/laporan/new",
- },
- {
- title: "Pemantauan",
- path: "/pemantauan",
- },
- ];
- const pemantauanSchema = Yup.object().shape({
- no_laporan: Yup.string().required("Harap Diisi"),
- no_hp: Yup.number().required("Harap Diisi"),
- });
- class App extends Component {
- constructor(props) {
- super(props);
- this.state = {
- isOpen: false,
- no_laporan: "",
- no_hp: "",
- msgError: [],
- laporan: null,
- log: null,
- };
- }
- static getInitialProps = ({ pathname }) => ({ pathname });
- toggleCollapse = () => {
- this.setState({
- isOpen: !this.state.isOpen,
- });
- };
- handleLihatPemantaun = async (data) => {
- const { no_hp, no_laporan } = data;
- const log = await getLogPublic({ no_hp, no_laporan });
- this.setState({ laporan: log.data.laporan });
- this.setState({ log: log.data.pemantauan });
- };
- render() {
- const { laporan, log } = this.state;
- return (
- <div>
- <Navbar color="info" expand="md" dark>
- <NavbarBrand href="/">
- <img className="img-fluid" src="/static/img/logo-single.png" alt="App Logo" /> Sidali
- </NavbarBrand>
- <NavbarToggler onClick={this.toggleCollapse} />
- <Collapse isOpen={this.state.isOpen} navbar>
- <Nav className="ml-auto" navbar>
- {menu.map((e) => (
- <NavItem active={e.path === this.props.pathname ? true : false}>
- <Link href={e.path}>
- <NavLink style={{ cursor: "pointer" }}>{e.title}</NavLink>
- </Link>
- </NavItem>
- ))}
- </Nav>
- </Collapse>
- </Navbar>
- <ContentWrapper>
- <Row>
- <Col lg={8} className="block-center d-block ">
- <Card className="card-default">
- <CardBody>
- <Formik
- initialValues={{
- no_laporan: "",
- no_hp: "",
- }}
- validationSchema={pemantauanSchema}
- onSubmit={this.handleLihatPemantaun}
- >
- <Form className="form-horizontal">
- <p className="lead bb">Pemantauan</p>
- <FormGroup row>
- <label className="col-md-2 col-form-label">Nomor Laporan</label>
- <div className="col-md-10">
- <Field name="no_laporan">{({ field }) => <Input type="text" {...field} />}</Field>
- <ErrorMessage name="no_laporan" component="div" className="form-text text-danger" />
- </div>
- </FormGroup>
- <FormGroup row>
- <label className="col-md-2 col-form-label">Nomor yang dapat dihubungi</label>
- <div className="col-md-10">
- <Field name="no_hp">{({ field }) => <Input type="tel" {...field} />}</Field>
- <ErrorMessage name="no_hp" component="div" className="form-text text-danger" />
- </div>
- </FormGroup>
- <FormGroup row>
- <div className="col-12 col-lg-2">
- <Button color="info" block type="submit">
- Lihat Pemantauan
- </Button>
- </div>
- </FormGroup>
- </Form>
- </Formik>
- </CardBody>
- </Card>
- <Card className="card-default">
- <CardBody>
- {laporan && log ? (
- <>
- <DetailLaporan data={laporan} />
- <p className="lead bb">Pemantauan</p>
- <Timeline data={log} noFile />{" "}
- </>
- ) : (
- "Tidak Ada Laporan"
- )}
- </CardBody>
- </Card>
- </Col>
- </Row>
- </ContentWrapper>
- </div>
- );
- }
- }
- App.Layout = BasePage;
- export default App;
|