mirror of
https://github.com/fleetdm/fleet
synced 2026-05-17 05:58:40 +00:00
- Uses Context API to track state - resetSelectedRows default to false and only momentarily becomes true upon successful notification Several other ideas were explored and ruled out including: asyncDebounce (impossible approach), applying state throughout the app (not concise nor maintainable), modifications directly to DataTable only (react-table did not have the right key combinations to reset selected rows manually when we needed). Closes #1540 Co-authored by: @martavis
163 lines
3.9 KiB
JavaScript
163 lines
3.9 KiB
JavaScript
import React, { Component } from "react";
|
|
import PropTypes from "prop-types";
|
|
import { connect } from "react-redux";
|
|
import { logoutUser } from "redux/nodes/auth/actions";
|
|
import { push } from "react-router-redux";
|
|
import { TableContext } from "context/table";
|
|
|
|
import { isEqual } from "lodash";
|
|
|
|
import configInterface from "interfaces/config";
|
|
import FlashMessage from "components/flash_messages/FlashMessage";
|
|
import PersistentFlash from "components/flash_messages/PersistentFlash";
|
|
import SiteTopNav from "components/side_panels/SiteTopNav";
|
|
import userInterface from "interfaces/user";
|
|
import notificationInterface from "interfaces/notification";
|
|
import { hideFlash } from "redux/nodes/notifications/actions";
|
|
|
|
export class CoreLayout extends Component {
|
|
static propTypes = {
|
|
children: PropTypes.node,
|
|
config: configInterface,
|
|
dispatch: PropTypes.func,
|
|
user: userInterface,
|
|
fullWidthFlash: PropTypes.bool,
|
|
notifications: notificationInterface,
|
|
persistentFlash: PropTypes.shape({
|
|
showFlash: PropTypes.bool.isRequired,
|
|
message: PropTypes.string.isRequired,
|
|
}).isRequired,
|
|
};
|
|
|
|
componentWillReceiveProps(nextProps) {
|
|
const { notifications } = nextProps;
|
|
const table = this.context;
|
|
|
|
// on success of an action, the table will reset its checkboxes.
|
|
// setTimeout is to help with race conditions as table reloads
|
|
// in some instances (i.e. Manage Hosts)
|
|
if (!isEqual(this.props.notifications, notifications)) {
|
|
if (notifications.alertType === "success") {
|
|
setTimeout(() => {
|
|
table.setResetSelectedRows(true);
|
|
setTimeout(() => {
|
|
table.setResetSelectedRows(false);
|
|
}, 300);
|
|
}, 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
onLogoutUser = () => {
|
|
const { dispatch } = this.props;
|
|
|
|
dispatch(logoutUser());
|
|
|
|
return false;
|
|
};
|
|
|
|
onNavItemClick = (path) => {
|
|
return (evt) => {
|
|
evt.preventDefault();
|
|
|
|
const { dispatch } = this.props;
|
|
|
|
if (path.indexOf("http") !== -1) {
|
|
global.window.open(path, "_blank");
|
|
|
|
return false;
|
|
}
|
|
|
|
dispatch(push(path));
|
|
|
|
return false;
|
|
};
|
|
};
|
|
|
|
onRemoveFlash = () => {
|
|
const { dispatch } = this.props;
|
|
|
|
dispatch(hideFlash);
|
|
|
|
return false;
|
|
};
|
|
|
|
onUndoActionClick = (undoAction) => {
|
|
return (evt) => {
|
|
evt.preventDefault();
|
|
|
|
const { dispatch } = this.props;
|
|
const { onRemoveFlash } = this;
|
|
|
|
dispatch(undoAction);
|
|
|
|
return onRemoveFlash();
|
|
};
|
|
};
|
|
|
|
static contextType = TableContext;
|
|
|
|
render() {
|
|
const {
|
|
fullWidthFlash,
|
|
notifications,
|
|
children,
|
|
config,
|
|
persistentFlash,
|
|
user,
|
|
} = this.props;
|
|
const { onRemoveFlash, onUndoActionClick } = this;
|
|
|
|
if (!user) return false;
|
|
|
|
const { onLogoutUser, onNavItemClick } = this;
|
|
const { pathname } = global.window.location;
|
|
|
|
return (
|
|
<div className="app-wrap">
|
|
<nav className="site-nav">
|
|
<SiteTopNav
|
|
config={config}
|
|
onLogoutUser={onLogoutUser}
|
|
onNavItemClick={onNavItemClick}
|
|
pathname={pathname}
|
|
user={user}
|
|
/>
|
|
</nav>
|
|
<div className="core-wrapper">
|
|
{persistentFlash.showFlash && (
|
|
<PersistentFlash message={persistentFlash.message} />
|
|
)}
|
|
<FlashMessage
|
|
fullWidth={fullWidthFlash}
|
|
notification={notifications}
|
|
onRemoveFlash={onRemoveFlash}
|
|
onUndoActionClick={onUndoActionClick}
|
|
/>
|
|
{children}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
const mapStateToProps = (state) => {
|
|
const {
|
|
app: { config },
|
|
auth: { user },
|
|
notifications,
|
|
persistentFlash,
|
|
} = state;
|
|
|
|
const fullWidthFlash = !user;
|
|
|
|
return {
|
|
config,
|
|
fullWidthFlash,
|
|
notifications,
|
|
persistentFlash,
|
|
user,
|
|
};
|
|
};
|
|
|
|
export default connect(mapStateToProps)(CoreLayout);
|