mirror of
https://github.com/fleetdm/fleet
synced 2026-05-15 04:58:25 +00:00
* add label filter dropdown to the manage host page table * increase label filter select width * improve responsive styling for manage host page
45 lines
1.2 KiB
TypeScript
45 lines
1.2 KiB
TypeScript
import React, { ReactChild, useContext } from "react";
|
|
import classnames from "classnames";
|
|
import { formatDistanceToNow } from "date-fns";
|
|
|
|
import SandboxExpiryMessage from "components/Sandbox/SandboxExpiryMessage";
|
|
import SandboxGate from "components/Sandbox/SandboxGate";
|
|
import { AppContext } from "context/app";
|
|
|
|
interface IMainContentProps {
|
|
children: ReactChild;
|
|
/** An optional classname to pass to the main content component.
|
|
* This can be used to apply styles directly onto the main content div
|
|
*/
|
|
className?: string;
|
|
}
|
|
|
|
const baseClass = "main-content";
|
|
|
|
/**
|
|
* A component that controls the layout and styling of the main content region
|
|
* of the application.
|
|
*/
|
|
const MainContent = ({
|
|
children,
|
|
className,
|
|
}: IMainContentProps): JSX.Element => {
|
|
const classes = classnames(baseClass, className);
|
|
const { sandboxExpiry } = useContext(AppContext);
|
|
|
|
const expiry =
|
|
sandboxExpiry === undefined
|
|
? "..."
|
|
: formatDistanceToNow(new Date(sandboxExpiry));
|
|
|
|
return (
|
|
<div className={classes}>
|
|
<SandboxGate
|
|
fallbackComponent={() => <SandboxExpiryMessage expiry={expiry} />}
|
|
/>
|
|
{children}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default MainContent;
|