import React, { Component } from "react"; import Router from "next/router"; import { Row, Col, FormGroup, Button, Modal, ModalHeader, ModalBody, ModalFooter } from "reactstrap"; import { addBanding } from "@/actions/banding"; import { connect } from "react-redux"; import { toast } from "react-toastify"; let Dropzone = null; class DropzoneWrapper extends Component { state = { isClient: false, }; componentDidMount = () => { Dropzone = require("react-dropzone").default; this.setState({ isClient: true }); }; render() { return Dropzone ? {this.props.children} : null; } } export class ModalPermohonan extends Component { constructor(props) { super(props); this.state = { modal1: false, files: [], error: null, }; } onDrop = (files) => { this.setState({ files: files.map((file) => Object.assign(file, { preview: URL.createObjectURL(file), }) ), stat: "Added " + files.length + " file(s)", }); }; uploadFiles = (e) => { e.preventDefault(); e.stopPropagation(); this.setState({ stat: this.state.files.length ? "Dropzone ready to upload " + this.state.files.length + " file(s)" : "No files added.", }); }; clearFiles = (e) => { e.preventDefault(); e.stopPropagation(); this.setState({ stat: this.state.files.length ? this.state.files.length + " file(s) cleared." : "No files to clear.", }); this.setState({ files: [], }); }; toggleModal1 = () => { this.props.toggleModal(false); this.setState({ modal1: !this.state.modal1, }); }; onSubmit = async (e) => { e.preventDefault(); const { query, token } = this.props; const { id } = query; const formdata = new FormData(); if (this.state.files.length > 0) { this.setState({ modal1: !this.state.modal1, }); this.state.files.forEach((e) => { formdata.append("dokumen", e); }); const toastid = toast.loading("Please wait..."); const added = await addBanding(token, id, formdata); if (!added) { toast.update(toastid, { render: "All is not good", type: "error", isLoading: false, autoClose: true, closeButton: true }); } else { toast.update(toastid, { render: "All is good", type: "success", isLoading: false, autoClose: true, closeButton: true }); Router.push({ pathname: "/pt/jawaban-banding", }); } } else { this.setState({ error: "Dokumen harus ada" }); } }; handleKirim = (e) => { this.onSubmit(e); }; render() { const { files, error } = this.state; const thumbs = files.map((file, index) => ( Item )); return ( <> Apakah anda akan mengajukan banding? {" "} Upload Dokumen Banding
{({ getRootProps, getInputProps, isDragActive }) => { return (
{this.state.files.length > 0 ? {thumbs} :
Drop files here to upload
}
); }}
{error ? error : "Multiple files upload"}
); } } const mapStateToProps = (state) => ({ user: state.user, token: state.token }); export default connect(mapStateToProps)(ModalPermohonan);