291 lines
6.7 KiB
TypeScript
291 lines
6.7 KiB
TypeScript
import {
|
|
useFocusEffect,
|
|
useRovingTabIndex,
|
|
} from "@getoutline/react-roving-tabindex";
|
|
import { observer } from "mobx-react";
|
|
import * as React from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { Link } from "react-router-dom";
|
|
import styled, { css } from "styled-components";
|
|
import breakpoint from "styled-components-breakpoint";
|
|
import EventBoundary from "@shared/components/EventBoundary";
|
|
import { s } from "@shared/styles";
|
|
import Document from "~/models/Document";
|
|
import Badge from "~/components/Badge";
|
|
import DocumentMeta from "~/components/DocumentMeta";
|
|
import Flex from "~/components/Flex";
|
|
import Highlight from "~/components/Highlight";
|
|
import Icon from "~/components/Icon";
|
|
import NudeButton from "~/components/NudeButton";
|
|
import StarButton, { AnimatedStar } from "~/components/Star";
|
|
import Tooltip from "~/components/Tooltip";
|
|
import useBoolean from "~/hooks/useBoolean";
|
|
import useCurrentUser from "~/hooks/useCurrentUser";
|
|
import DocumentMenu from "~/menus/DocumentMenu";
|
|
import { hover } from "~/styles";
|
|
import { documentPath } from "~/utils/routeHelpers";
|
|
|
|
type Props = {
|
|
document: Document;
|
|
highlight?: string | undefined;
|
|
context?: string | undefined;
|
|
showParentDocuments?: boolean;
|
|
showCollection?: boolean;
|
|
showPublished?: boolean;
|
|
showPin?: boolean;
|
|
showDraft?: boolean;
|
|
showTemplate?: boolean;
|
|
};
|
|
|
|
const SEARCH_RESULT_REGEX = /<b\b[^>]*>(.*?)<\/b>/gi;
|
|
|
|
function replaceResultMarks(tag: string) {
|
|
// don't use SEARCH_RESULT_REGEX directly here as it causes an infinite loop
|
|
return tag.replace(new RegExp(SEARCH_RESULT_REGEX.source), "$1");
|
|
}
|
|
|
|
function DocumentListItem(
|
|
props: Props,
|
|
ref: React.RefObject<HTMLAnchorElement>
|
|
) {
|
|
const { t } = useTranslation();
|
|
const user = useCurrentUser();
|
|
const [menuOpen, handleMenuOpen, handleMenuClose] = useBoolean();
|
|
|
|
let itemRef: React.Ref<HTMLAnchorElement> =
|
|
React.useRef<HTMLAnchorElement>(null);
|
|
if (ref) {
|
|
itemRef = ref;
|
|
}
|
|
|
|
const { focused, ...rovingTabIndex } = useRovingTabIndex(itemRef, false);
|
|
useFocusEffect(focused, itemRef);
|
|
|
|
const {
|
|
document,
|
|
showParentDocuments,
|
|
showCollection,
|
|
showPublished,
|
|
showPin,
|
|
showDraft = true,
|
|
showTemplate,
|
|
highlight,
|
|
context,
|
|
...rest
|
|
} = props;
|
|
const queryIsInTitle =
|
|
!!highlight &&
|
|
!!document.title.toLowerCase().includes(highlight.toLowerCase());
|
|
const canStar =
|
|
!document.isDraft && !document.isArchived && !document.isTemplate;
|
|
|
|
return (
|
|
<DocumentLink
|
|
ref={itemRef}
|
|
dir={document.dir}
|
|
role="menuitem"
|
|
$isStarred={document.isStarred}
|
|
$menuOpen={menuOpen}
|
|
to={{
|
|
pathname: documentPath(document),
|
|
state: {
|
|
title: document.titleWithDefault,
|
|
},
|
|
}}
|
|
onContextMenu={(e) => {
|
|
if (menuOpen) {
|
|
return;
|
|
}
|
|
e.preventDefault();
|
|
handleMenuOpen();
|
|
}}
|
|
{...rest}
|
|
{...rovingTabIndex}
|
|
>
|
|
<Content>
|
|
<Heading dir={document.dir}>
|
|
{document.icon && (
|
|
<>
|
|
<Icon value={document.icon} color={document.color ?? undefined} />
|
|
|
|
</>
|
|
)}
|
|
<Title
|
|
text={document.titleWithDefault}
|
|
highlight={highlight}
|
|
dir={document.dir}
|
|
/>
|
|
{document.isBadgedNew && document.createdBy?.id !== user.id && (
|
|
<Badge yellow>{t("New")}</Badge>
|
|
)}
|
|
{canStar && (
|
|
<StarPositioner>
|
|
<StarButton document={document} />
|
|
</StarPositioner>
|
|
)}
|
|
{document.isDraft && showDraft && (
|
|
<Tooltip
|
|
content={t("Only visible to you")}
|
|
delay={500}
|
|
placement="top"
|
|
>
|
|
<Badge>{t("Draft")}</Badge>
|
|
</Tooltip>
|
|
)}
|
|
{document.isTemplate && showTemplate && (
|
|
<Badge primary>{t("Template")}</Badge>
|
|
)}
|
|
</Heading>
|
|
|
|
{!queryIsInTitle && (
|
|
<ResultContext
|
|
text={context}
|
|
highlight={highlight ? SEARCH_RESULT_REGEX : undefined}
|
|
processResult={replaceResultMarks}
|
|
/>
|
|
)}
|
|
<DocumentMeta
|
|
document={document}
|
|
showCollection={showCollection}
|
|
showPublished={showPublished}
|
|
showParentDocuments={showParentDocuments}
|
|
showLastViewed
|
|
/>
|
|
</Content>
|
|
<Actions>
|
|
<DocumentMenu
|
|
document={document}
|
|
showPin={showPin}
|
|
visible={menuOpen}
|
|
onOpen={handleMenuOpen}
|
|
onClose={handleMenuClose}
|
|
modal={false}
|
|
/>
|
|
</Actions>
|
|
</DocumentLink>
|
|
);
|
|
}
|
|
|
|
const Content = styled.div`
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
min-width: 0;
|
|
`;
|
|
|
|
const Actions = styled(EventBoundary)`
|
|
display: none;
|
|
align-items: center;
|
|
margin: 8px;
|
|
flex-shrink: 0;
|
|
flex-grow: 0;
|
|
color: ${s("textSecondary")};
|
|
|
|
${NudeButton} {
|
|
&: ${hover}, &[aria-expanded= "true"] {
|
|
background: ${s("sidebarControlHoverBackground")};
|
|
}
|
|
}
|
|
|
|
${breakpoint("tablet")`
|
|
display: flex;
|
|
`};
|
|
`;
|
|
|
|
const DocumentLink = styled(Link)<{
|
|
$isStarred?: boolean;
|
|
$menuOpen?: boolean;
|
|
}>`
|
|
display: flex;
|
|
align-items: center;
|
|
margin: 10px -8px;
|
|
padding: 6px 8px;
|
|
border-radius: 8px;
|
|
max-height: 50vh;
|
|
width: calc(100vw - 8px);
|
|
cursor: var(--pointer);
|
|
|
|
&:focus-visible {
|
|
outline: none;
|
|
}
|
|
|
|
${breakpoint("tablet")`
|
|
width: auto;
|
|
`};
|
|
|
|
${Actions} {
|
|
opacity: 0;
|
|
}
|
|
|
|
${AnimatedStar} {
|
|
opacity: ${(props) => (props.$isStarred ? "1 !important" : 0)};
|
|
}
|
|
|
|
&:${hover},
|
|
&:active,
|
|
&:focus,
|
|
&:focus-within {
|
|
background: ${s("listItemHoverBackground")};
|
|
|
|
${Actions} {
|
|
opacity: 1;
|
|
}
|
|
|
|
${AnimatedStar} {
|
|
opacity: 0.5;
|
|
|
|
&:${hover} {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
${(props) =>
|
|
props.$menuOpen &&
|
|
css`
|
|
background: ${s("listItemHoverBackground")};
|
|
|
|
${Actions} {
|
|
opacity: 1;
|
|
}
|
|
|
|
${AnimatedStar} {
|
|
opacity: 0.5;
|
|
}
|
|
`}
|
|
`;
|
|
|
|
const Heading = styled.h3<{ rtl?: boolean }>`
|
|
display: flex;
|
|
justify-content: ${(props) => (props.rtl ? "flex-end" : "flex-start")};
|
|
align-items: center;
|
|
margin-top: 0;
|
|
margin-bottom: 0.25em;
|
|
white-space: nowrap;
|
|
color: ${s("text")};
|
|
font-family: ${s("fontFamily")};
|
|
font-weight: 500;
|
|
`;
|
|
|
|
const StarPositioner = styled(Flex)`
|
|
margin-left: 4px;
|
|
align-items: center;
|
|
`;
|
|
|
|
const Title = styled(Highlight)`
|
|
max-width: 90%;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
`;
|
|
|
|
const ResultContext = styled(Highlight)`
|
|
display: block;
|
|
color: ${s("textSecondary")};
|
|
font-size: 15px;
|
|
margin-top: -0.25em;
|
|
margin-bottom: 0.25em;
|
|
max-height: 90px;
|
|
overflow: hidden;
|
|
`;
|
|
|
|
export default observer(React.forwardRef(DocumentListItem));
|