mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
123 lines
3.2 KiB
TypeScript
123 lines
3.2 KiB
TypeScript
import React, { useContext } from "react";
|
|
import { InjectedRouter } from "react-router";
|
|
import { Params } from "react-router/lib/Router";
|
|
|
|
import { AppContext } from "context/app";
|
|
import { NotificationContext } from "context/notification";
|
|
import { TableContext } from "context/table";
|
|
|
|
import paths from "router/paths";
|
|
import useDeepEffect from "hooks/useDeepEffect";
|
|
import FlashMessage from "components/FlashMessage";
|
|
import SiteTopNav from "components/top_nav/SiteTopNav";
|
|
import { QueryParams } from "utilities/url";
|
|
|
|
import smallScreenImage from "../../../assets/images/small-screen-160x80@2x.png";
|
|
|
|
interface ICoreLayoutProps {
|
|
children: React.ReactNode;
|
|
router: InjectedRouter; // v3
|
|
// TODO: standardize typing and usage of location across app components
|
|
location: {
|
|
pathname: string;
|
|
search: string;
|
|
hash?: string;
|
|
query: QueryParams;
|
|
};
|
|
params: Params;
|
|
}
|
|
|
|
const CoreLayout = ({
|
|
children,
|
|
router,
|
|
location,
|
|
params: routeParams,
|
|
}: ICoreLayoutProps) => {
|
|
const { config, currentUser } = useContext(AppContext);
|
|
const { notification, hideFlash } = useContext(NotificationContext);
|
|
const { setResetSelectedRows } = useContext(TableContext);
|
|
|
|
// 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)
|
|
useDeepEffect(() => {
|
|
if (notification?.alertType === "success") {
|
|
setTimeout(() => {
|
|
setResetSelectedRows(true);
|
|
setTimeout(() => {
|
|
setResetSelectedRows(false);
|
|
}, 300);
|
|
}, 0);
|
|
}
|
|
}, [notification]);
|
|
|
|
const onLogoutUser = async () => {
|
|
const { LOGOUT } = paths;
|
|
router.push(LOGOUT);
|
|
};
|
|
|
|
const onNavItemClick = (path: string) => {
|
|
return (evt: React.MouseEvent<HTMLButtonElement>) => {
|
|
evt.preventDefault();
|
|
|
|
if (path.indexOf("http") !== -1) {
|
|
global.window.open(path, "_blank");
|
|
return false;
|
|
}
|
|
|
|
router.push(path);
|
|
return false;
|
|
};
|
|
};
|
|
|
|
const onUndoActionClick = (undoAction?: () => void) => {
|
|
return (evt: React.MouseEvent<HTMLButtonElement>) => {
|
|
evt.preventDefault();
|
|
|
|
if (undoAction) {
|
|
undoAction();
|
|
}
|
|
|
|
hideFlash();
|
|
};
|
|
};
|
|
|
|
const fullWidthFlash = !currentUser;
|
|
|
|
if (!currentUser || !config) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<div className="app-wrap">
|
|
<div className="overlay">
|
|
<img src={smallScreenImage} alt="Unsupported screen size" />
|
|
<div className="overlay__text">
|
|
<h1>This screen size is not supported yet.</h1>
|
|
<p>Please enlarge your browser or try again on a computer.</p>
|
|
</div>
|
|
</div>
|
|
<nav className="site-nav-container">
|
|
<SiteTopNav
|
|
config={config}
|
|
currentUser={currentUser}
|
|
location={location}
|
|
onLogoutUser={onLogoutUser}
|
|
onNavItemClick={onNavItemClick}
|
|
/>
|
|
</nav>
|
|
<div className="core-wrapper">
|
|
<FlashMessage
|
|
fullWidth={fullWidthFlash}
|
|
notification={notification}
|
|
onRemoveFlash={hideFlash}
|
|
onUndoActionClick={onUndoActionClick}
|
|
/>
|
|
|
|
{children}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default CoreLayout;
|