100 lines
2.4 KiB
TypeScript
100 lines
2.4 KiB
TypeScript
import { observer } from "mobx-react";
|
|
import { BackIcon } from "outline-icons";
|
|
import * as React from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import styled from "styled-components";
|
|
import { depths, s, ellipsis } from "@shared/styles";
|
|
import Button from "~/components/Button";
|
|
import Flex from "~/components/Flex";
|
|
import { Portal } from "~/components/Portal";
|
|
import Scrollable from "~/components/Scrollable";
|
|
import Tooltip from "~/components/Tooltip";
|
|
import useMobile from "~/hooks/useMobile";
|
|
import { draggableOnDesktop } from "~/styles";
|
|
import { fadeIn } from "~/styles/animations";
|
|
|
|
type Props = Omit<React.HTMLAttributes<HTMLDivElement>, "title"> & {
|
|
/* The title of the sidebar */
|
|
title: React.ReactNode;
|
|
/* The content of the sidebar */
|
|
children: React.ReactNode;
|
|
/* Called when the sidebar is closed */
|
|
onClose: React.MouseEventHandler;
|
|
/* Whether the sidebar should be scrollable */
|
|
scrollable?: boolean;
|
|
};
|
|
|
|
function SidebarLayout({ title, onClose, children, scrollable = true }: Props) {
|
|
const { t } = useTranslation();
|
|
const isMobile = useMobile();
|
|
|
|
return (
|
|
<>
|
|
<Header>
|
|
<Title>{title}</Title>
|
|
<Tooltip content={t("Close")} shortcut="Esc" delay={500}>
|
|
<Button
|
|
icon={<ForwardIcon />}
|
|
onClick={onClose}
|
|
borderOnHover
|
|
neutral
|
|
/>
|
|
</Tooltip>
|
|
</Header>
|
|
{scrollable ? (
|
|
<Scrollable hiddenScrollbars topShadow>
|
|
{children}
|
|
</Scrollable>
|
|
) : (
|
|
children
|
|
)}
|
|
|
|
{isMobile && (
|
|
<Portal>
|
|
<Backdrop onClick={onClose} />
|
|
</Portal>
|
|
)}
|
|
</>
|
|
);
|
|
}
|
|
|
|
const Backdrop = styled.a`
|
|
animation: ${fadeIn} 250ms ease-in-out;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
cursor: default;
|
|
z-index: ${depths.mobileSidebar - 1};
|
|
background: ${s("backdrop")};
|
|
`;
|
|
|
|
const ForwardIcon = styled(BackIcon)`
|
|
transform: rotate(180deg);
|
|
flex-shrink: 0;
|
|
`;
|
|
|
|
const Title = styled(Flex)`
|
|
${ellipsis()}
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
text-align: center;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
user-select: none;
|
|
width: 0;
|
|
flex-grow: 1;
|
|
`;
|
|
|
|
const Header = styled(Flex)`
|
|
${draggableOnDesktop()}
|
|
align-items: center;
|
|
position: relative;
|
|
padding: 16px 12px 16px 16px;
|
|
color: ${s("text")};
|
|
flex-shrink: 0;
|
|
`;
|
|
|
|
export default observer(SidebarLayout);
|