Files
nginx-proxy-manager/frontend/src/components/SiteWrapper.tsx

58 lines
1.3 KiB
TypeScript

import React, { ReactNode } from "react";
import { Footer } from "components";
import { Avatar, Dropdown, Navigation } from "components";
import { useAuthState, useUserState } from "context";
import styled from "styled-components";
import { NavMenu } from "./NavMenu";
const StyledContainer = styled.div`
padding-bottom: 30px;
`;
interface Props {
children?: ReactNode;
}
function SiteWrapper({ children }: Props) {
const user = useUserState();
const { logout } = useAuthState();
return (
<div className="wrapper">
<Navigation.Header
theme="light"
brandContent={
<img
src="/images/logo-bold-horizontal-grey.svg"
alt="Nginx Proxy Manager"
className="navbar-brand-image"
height="32"
/>
}
avatar={<Avatar size="sm" url={user.gravatarUrl} />}
profileName={user.nickname}
profileSubName={
user.roles.includes("admin") ? "Administrator" : "Standard User"
}
profileItems={[
<Dropdown.Item key="m1-2">Profile settings</Dropdown.Item>,
<Dropdown.Item divider key="m1-4" />,
<Dropdown.Item key="m1-6" onClick={logout}>
Logout
</Dropdown.Item>,
]}
/>
<NavMenu />
<div className="content">
<div className="container-xl">
<StyledContainer>{children}</StyledContainer>
</div>
</div>
<Footer fixed />
</div>
);
}
export { SiteWrapper };