import React, { Component } from "react"; import { DndProvider } from "react-dnd"; import HTML5Backend from "react-dnd-html5-backend"; import { connect } from "react-redux"; import { withRouter } from "react-router-dom"; import { changeSubTitle } from "../../redux/viewUpdate/action"; import pathHelper from "../../utils/page"; import DragLayer from "./DnD/DragLayer"; import Explorer from "./Explorer"; import Modals from "./Modals"; import Navigator from "./Navigator/Navigator"; import SideDrawer from "./Sidebar/SideDrawer"; import classNames from "classnames"; import { closeAllModals, navigateTo, setSelectedTarget, toggleSnackbar, } from "../../redux/explorer"; import PaginationFooter from "./Pagination"; import withStyles from "@material-ui/core/styles/withStyles"; const styles = (theme) => ({ root: { display: "flex", flexDirection: "column", height: "calc(100vh - 64px)", [theme.breakpoints.down("xs")]: { height: "100%", }, overflowY: "auto", }, rootShare: { display: "flex", flexDirection: "column", height: "100%", minHeight: 500, overflowY: "auto", }, }); const mapStateToProps = () => ({}); const mapDispatchToProps = (dispatch) => { return { changeSubTitle: (text) => { dispatch(changeSubTitle(text)); }, setSelectedTarget: (targets) => { dispatch(setSelectedTarget(targets)); }, toggleSnackbar: (vertical, horizontal, msg, color) => { dispatch(toggleSnackbar(vertical, horizontal, msg, color)); }, closeAllModals: () => { dispatch(closeAllModals()); }, navigateTo: (path) => { dispatch(navigateTo(path)); }, }; }; class FileManager extends Component { constructor(props) { super(props); this.image = React.createRef(); } componentWillUnmount() { this.props.setSelectedTarget([]); this.props.closeAllModals(); this.props.navigateTo("/"); } componentDidMount() { if (pathHelper.isHomePage(this.props.location.pathname)) { this.props.changeSubTitle(null); } } render() { const { classes } = this.props; return (
); } } FileManager.propTypes = {}; export default connect( mapStateToProps, mapDispatchToProps )(withStyles(styles)(withRouter(FileManager)));