* feat: initial base structure * feat: utils for constructing and flattening collection tree * feat: basic demo to display tree-like structure with virtualization * feat: make it searchable * feat: row component * fix: handle row selection * fix: scroll jitter * fix: popover max-height to eliminate extra scroll * fix: position scrollbar correctly * fix: do not sort to maintain correct tree-like view * feat: footer * fix: scroll to selected item * fix: deselect item * fix: display selected location in footer * fix: deselect item if any upon search trigger * fix: create draft without collection * fix: pass down collectionId to all the nodes * feat: publish document under selected location * fix: move the doc post publish in case it is supposed to be a nested doc * fix: wrap text for selected location * fix: footer background in dark mode and unused css * fix: popover height in small devices * fix: no need to spread * refactor: remove outline * refactor: border-radius is common * refactor: remove active and focus * fix: do not shrink spacer * fix: scroll list padding with correctly adjusted scrolling * refactor: use constants * fix: use padding in favor of spacer * refactor: border attrs not needed * refactor: control title padding and icon size centrally * fix: rename param * fix: import path * fix: refactor styles, avoid magic numbers * fix: type err * feat: make rows collapsible * fix: fully expanded without disclosure upon search * fix: use modal in place of popover * fix: collapse descendants * fix: rename PublishPopover to PublishModal * fix: adjust collapse icon as part of tree view * fix: enable keyboard navigation * not sure why collapse and expand shortcuts are not working * fix: row expansion and search box focus and blur * fix: remove css hover, handle it via active prop * fix: discard tree like view for search results * fix: minor tweaks * refactor: no need to pass onPublish * refactor: remove unnecessary attrs from search component * fix: publish button text * fix: reset intial scroll offset to 0 on search * fix: remove search highlights * fix: clean up search component * refactor: search and row collapse * refactor: PublishLocation * fix: show emoji or star icon if present * fix: shift focus only from top item * fix: leading emoji * fix: baseline text * fix: make path tertiary * fix: do not show path for collections * fix: path text color upon selection * fix: deleted collection case * fix: no results found * fix: space around slash * Refinement, some small refactors * fix: Publish shortcut, use Button action * Allow new document creation from command menu without active collection * fix: duplicate * fix: Unneccessary truncation * fix: Scroll on expand/collapse Remove wraparound * fix: tsc * fix: Horizontal overflow on PublishLocation Remove pointless moveTo method * fix: Missing translation * Remove method indirection Show expanded collection icon in tree when expanded * Shrink font size a point * Remove feature flag * fix: Path color contrast in light mode Remove unused expanded/show attributes * shrink -> collapse, fix expanded disclosure without items after searching * Mobile styles * fix: scroll just into view Co-authored-by: Tom Moor <tom.moor@gmail.com>
286 lines
6.8 KiB
TypeScript
286 lines
6.8 KiB
TypeScript
import { observer } from "mobx-react";
|
|
import { CloseIcon, BackIcon } from "outline-icons";
|
|
import { transparentize } from "polished";
|
|
import * as React from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { Dialog, DialogBackdrop, useDialogState } from "reakit/Dialog";
|
|
import styled, { DefaultTheme } from "styled-components";
|
|
import breakpoint from "styled-components-breakpoint";
|
|
import { depths } from "@shared/styles";
|
|
import Flex from "~/components/Flex";
|
|
import NudeButton from "~/components/NudeButton";
|
|
import Scrollable from "~/components/Scrollable";
|
|
import Text from "~/components/Text";
|
|
import useMobile from "~/hooks/useMobile";
|
|
import usePrevious from "~/hooks/usePrevious";
|
|
import useUnmount from "~/hooks/useUnmount";
|
|
import { fadeAndScaleIn } from "~/styles/animations";
|
|
import Desktop from "~/utils/Desktop";
|
|
|
|
let openModals = 0;
|
|
type Props = {
|
|
isOpen: boolean;
|
|
isCentered?: boolean;
|
|
title?: React.ReactNode;
|
|
onRequestClose: () => void;
|
|
};
|
|
|
|
const Modal: React.FC<Props> = ({
|
|
children,
|
|
isOpen,
|
|
isCentered,
|
|
title = "Untitled",
|
|
onRequestClose,
|
|
}) => {
|
|
const dialog = useDialogState({
|
|
animated: 250,
|
|
});
|
|
const [depth, setDepth] = React.useState(0);
|
|
const wasOpen = usePrevious(isOpen);
|
|
const isMobile = useMobile();
|
|
const { t } = useTranslation();
|
|
|
|
React.useEffect(() => {
|
|
if (!wasOpen && isOpen) {
|
|
setDepth(openModals++);
|
|
dialog.show();
|
|
}
|
|
|
|
if (wasOpen && !isOpen) {
|
|
setDepth(openModals--);
|
|
dialog.hide();
|
|
}
|
|
}, [dialog, wasOpen, isOpen]);
|
|
|
|
useUnmount(() => {
|
|
if (isOpen) {
|
|
openModals--;
|
|
}
|
|
});
|
|
|
|
if (!isOpen && !wasOpen) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<DialogBackdrop {...dialog}>
|
|
{(props) => (
|
|
<Backdrop $isCentered={isCentered} {...props}>
|
|
<Dialog
|
|
{...dialog}
|
|
aria-label={typeof title === "string" ? title : undefined}
|
|
preventBodyScroll
|
|
hideOnEsc
|
|
hideOnClickOutside={!!isCentered}
|
|
hide={onRequestClose}
|
|
>
|
|
{(props) =>
|
|
isCentered && !isMobile ? (
|
|
<Small {...props}>
|
|
<Centered
|
|
onClick={(ev) => ev.stopPropagation()}
|
|
column
|
|
reverse
|
|
>
|
|
<SmallContent shadow>{children}</SmallContent>
|
|
<Header>
|
|
{title && (
|
|
<Text as="span" size="large">
|
|
{title}
|
|
</Text>
|
|
)}
|
|
<Text as="span" size="large">
|
|
<NudeButton onClick={onRequestClose}>
|
|
<CloseIcon color="currentColor" />
|
|
</NudeButton>
|
|
</Text>
|
|
</Header>
|
|
</Centered>
|
|
</Small>
|
|
) : (
|
|
<Fullscreen
|
|
$nested={!!depth}
|
|
style={
|
|
isMobile
|
|
? undefined
|
|
: {
|
|
marginLeft: `${depth * 12}px`,
|
|
}
|
|
}
|
|
{...props}
|
|
>
|
|
<Content>
|
|
<Centered onClick={(ev) => ev.stopPropagation()} column>
|
|
{title && <h1>{title}</h1>}
|
|
{children}
|
|
</Centered>
|
|
</Content>
|
|
<Close onClick={onRequestClose}>
|
|
<CloseIcon size={32} color="currentColor" />
|
|
</Close>
|
|
<Back onClick={onRequestClose}>
|
|
<BackIcon size={32} color="currentColor" />
|
|
<Text as="span">{t("Back")} </Text>
|
|
</Back>
|
|
</Fullscreen>
|
|
)
|
|
}
|
|
</Dialog>
|
|
</Backdrop>
|
|
)}
|
|
</DialogBackdrop>
|
|
);
|
|
};
|
|
|
|
const Backdrop = styled(Flex)<{ $isCentered?: boolean }>`
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background-color: ${(props) =>
|
|
props.$isCentered
|
|
? props.theme.modalBackdrop
|
|
: transparentize(0.25, props.theme.background)} !important;
|
|
z-index: ${depths.modalOverlay};
|
|
transition: opacity 50ms ease-in-out;
|
|
opacity: 0;
|
|
|
|
&[data-enter] {
|
|
opacity: 1;
|
|
}
|
|
`;
|
|
|
|
type FullscreenProps = {
|
|
$nested: boolean;
|
|
theme: DefaultTheme;
|
|
};
|
|
|
|
const Fullscreen = styled.div<FullscreenProps>`
|
|
animation: ${fadeAndScaleIn} 250ms ease;
|
|
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: ${depths.modal};
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: flex-start;
|
|
background: ${(props) => props.theme.background};
|
|
transition: ${(props) => props.theme.backgroundTransition};
|
|
outline: none;
|
|
|
|
${breakpoint("tablet")`
|
|
${(props: FullscreenProps) =>
|
|
props.$nested &&
|
|
`
|
|
box-shadow: 0 -2px 10px ${props.theme.shadow};
|
|
border-radius: 8px 0 0 8px;
|
|
overflow: hidden;
|
|
`}
|
|
`}
|
|
`;
|
|
|
|
const Content = styled(Scrollable)`
|
|
width: 100%;
|
|
padding: 8vh 32px;
|
|
|
|
${breakpoint("tablet")`
|
|
padding: 13vh 2rem 2rem;
|
|
`};
|
|
`;
|
|
|
|
const Centered = styled(Flex)`
|
|
width: 640px;
|
|
max-width: 100%;
|
|
position: relative;
|
|
margin: 0 auto;
|
|
`;
|
|
|
|
const Close = styled(NudeButton)`
|
|
position: absolute;
|
|
display: block;
|
|
top: 0;
|
|
right: 0;
|
|
margin: 12px;
|
|
opacity: 0.75;
|
|
color: ${(props) => props.theme.text};
|
|
width: auto;
|
|
height: auto;
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
${breakpoint("tablet")`
|
|
display: none;
|
|
`};
|
|
`;
|
|
|
|
const Back = styled(NudeButton)`
|
|
position: absolute;
|
|
display: none;
|
|
align-items: center;
|
|
top: ${Desktop.hasInsetTitlebar() ? "3rem" : "2rem"};
|
|
left: 2rem;
|
|
opacity: 0.75;
|
|
color: ${(props) => props.theme.text};
|
|
font-weight: 500;
|
|
width: auto;
|
|
height: auto;
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
${breakpoint("tablet")`
|
|
display: flex;
|
|
`};
|
|
`;
|
|
|
|
const Header = styled(Flex)`
|
|
color: ${(props) => props.theme.textSecondary};
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
font-weight: 600;
|
|
padding: 24px 24px 4px;
|
|
`;
|
|
|
|
const Small = styled.div`
|
|
animation: ${fadeAndScaleIn} 250ms ease;
|
|
|
|
margin: auto auto;
|
|
width: 30vw;
|
|
min-width: 350px;
|
|
max-width: 500px;
|
|
z-index: ${depths.modal};
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: flex-start;
|
|
background: ${(props) => props.theme.modalBackground};
|
|
transition: ${(props) => props.theme.backgroundTransition};
|
|
box-shadow: ${(props) => props.theme.modalShadow};
|
|
border-radius: 8px;
|
|
outline: none;
|
|
|
|
${NudeButton} {
|
|
&:hover,
|
|
&[aria-expanded="true"] {
|
|
background: ${(props) => props.theme.sidebarControlHoverBackground};
|
|
}
|
|
vertical-align: middle;
|
|
}
|
|
|
|
${Header} {
|
|
align-items: start;
|
|
}
|
|
`;
|
|
|
|
const SmallContent = styled(Scrollable)`
|
|
padding: 12px 24px 24px;
|
|
`;
|
|
|
|
export default observer(Modal);
|