* fix: Margin on floating toolbar fix: Flash of toolbar on wide screens * fix: Nesting of comment marks * fix: Post button not visible when there is a draft comment, makes it look like the comment is saved fix: Styling of link editor results now matches other menus fix: Allow small link editor in comments sidebar * fix: Cannot use arrow keys to navigate suggested links Added animation to link suggestions Added mixin for text ellipsis * fix: Link input appears non-rounded when no creation option * Accidental removal
204 lines
5.1 KiB
TypeScript
204 lines
5.1 KiB
TypeScript
import { LocationDescriptor } from "history";
|
|
import { observer } from "mobx-react";
|
|
import * as React from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { Link } from "react-router-dom";
|
|
import styled from "styled-components";
|
|
import Document from "~/models/Document";
|
|
import DocumentBreadcrumb from "~/components/DocumentBreadcrumb";
|
|
import DocumentTasks from "~/components/DocumentTasks";
|
|
import Flex from "~/components/Flex";
|
|
import Time from "~/components/Time";
|
|
import useCurrentUser from "~/hooks/useCurrentUser";
|
|
import useStores from "~/hooks/useStores";
|
|
import { ellipsis } from "~/styles";
|
|
|
|
type Props = {
|
|
showCollection?: boolean;
|
|
showPublished?: boolean;
|
|
showLastViewed?: boolean;
|
|
showParentDocuments?: boolean;
|
|
document: Document;
|
|
replace?: boolean;
|
|
to?: LocationDescriptor;
|
|
};
|
|
|
|
const DocumentMeta: React.FC<Props> = ({
|
|
showPublished,
|
|
showCollection,
|
|
showLastViewed,
|
|
showParentDocuments,
|
|
document,
|
|
children,
|
|
replace,
|
|
to,
|
|
...rest
|
|
}) => {
|
|
const { t } = useTranslation();
|
|
const { collections } = useStores();
|
|
const user = useCurrentUser();
|
|
const {
|
|
modifiedSinceViewed,
|
|
updatedAt,
|
|
updatedBy,
|
|
createdAt,
|
|
publishedAt,
|
|
archivedAt,
|
|
deletedAt,
|
|
isDraft,
|
|
lastViewedAt,
|
|
isTasks,
|
|
isTemplate,
|
|
} = document;
|
|
|
|
// Prevent meta information from displaying if updatedBy is not available.
|
|
// Currently the situation where this is true is rendering share links.
|
|
if (!updatedBy) {
|
|
return null;
|
|
}
|
|
|
|
const collection = collections.get(document.collectionId);
|
|
const lastUpdatedByCurrentUser = user.id === updatedBy.id;
|
|
const userName = updatedBy.name;
|
|
let content;
|
|
|
|
if (deletedAt) {
|
|
content = (
|
|
<span>
|
|
{lastUpdatedByCurrentUser
|
|
? t("You deleted")
|
|
: t("{{ userName }} deleted", { userName })}{" "}
|
|
<Time dateTime={deletedAt} addSuffix />
|
|
</span>
|
|
);
|
|
} else if (archivedAt) {
|
|
content = (
|
|
<span>
|
|
{lastUpdatedByCurrentUser
|
|
? t("You archived")
|
|
: t("{{ userName }} archived", { userName })}{" "}
|
|
<Time dateTime={archivedAt} addSuffix />
|
|
</span>
|
|
);
|
|
} else if (createdAt === updatedAt) {
|
|
content = (
|
|
<span>
|
|
{lastUpdatedByCurrentUser
|
|
? t("You created")
|
|
: t("{{ userName }} created", { userName })}{" "}
|
|
<Time dateTime={updatedAt} addSuffix />
|
|
</span>
|
|
);
|
|
} else if (publishedAt && (publishedAt === updatedAt || showPublished)) {
|
|
content = (
|
|
<span>
|
|
{lastUpdatedByCurrentUser
|
|
? t("You published")
|
|
: t("{{ userName }} published", { userName })}{" "}
|
|
<Time dateTime={publishedAt} addSuffix />
|
|
</span>
|
|
);
|
|
} else if (isDraft) {
|
|
content = (
|
|
<span>
|
|
{lastUpdatedByCurrentUser
|
|
? t("You saved")
|
|
: t("{{ userName }} saved", { userName })}{" "}
|
|
<Time dateTime={updatedAt} addSuffix />
|
|
</span>
|
|
);
|
|
} else {
|
|
content = (
|
|
<Modified highlight={modifiedSinceViewed && !lastUpdatedByCurrentUser}>
|
|
{lastUpdatedByCurrentUser
|
|
? t("You updated")
|
|
: t("{{ userName }} updated", { userName })}{" "}
|
|
<Time dateTime={updatedAt} addSuffix />
|
|
</Modified>
|
|
);
|
|
}
|
|
|
|
const nestedDocumentsCount = collection
|
|
? collection.getDocumentChildren(document.id).length
|
|
: 0;
|
|
const canShowProgressBar = isTasks && !isTemplate;
|
|
|
|
const timeSinceNow = () => {
|
|
if (isDraft || !showLastViewed) {
|
|
return null;
|
|
}
|
|
|
|
if (!lastViewedAt) {
|
|
if (lastUpdatedByCurrentUser) {
|
|
return null;
|
|
}
|
|
return (
|
|
<Viewed>
|
|
• <Modified highlight>{t("Never viewed")}</Modified>
|
|
</Viewed>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Viewed>
|
|
• {t("Viewed")} <Time dateTime={lastViewedAt} addSuffix shorten />
|
|
</Viewed>
|
|
);
|
|
};
|
|
|
|
return (
|
|
<Container align="center" rtl={document.dir === "rtl"} {...rest} dir="ltr">
|
|
{to ? (
|
|
<Link to={to} replace={replace}>
|
|
{content}
|
|
</Link>
|
|
) : (
|
|
content
|
|
)}
|
|
{showCollection && collection && (
|
|
<span>
|
|
{t("in")}
|
|
<strong>
|
|
<DocumentBreadcrumb document={document} onlyText />
|
|
</strong>
|
|
</span>
|
|
)}
|
|
{showParentDocuments && nestedDocumentsCount > 0 && (
|
|
<span>
|
|
• {nestedDocumentsCount}{" "}
|
|
{t("nested document", {
|
|
count: nestedDocumentsCount,
|
|
})}
|
|
</span>
|
|
)}
|
|
{timeSinceNow()}
|
|
{canShowProgressBar && (
|
|
<>
|
|
•
|
|
<DocumentTasks document={document} />
|
|
</>
|
|
)}
|
|
{children}
|
|
</Container>
|
|
);
|
|
};
|
|
|
|
const Container = styled(Flex)<{ rtl?: boolean }>`
|
|
justify-content: ${(props) => (props.rtl ? "flex-end" : "flex-start")};
|
|
color: ${(props) => props.theme.textTertiary};
|
|
font-size: 13px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
min-width: 0;
|
|
`;
|
|
|
|
const Viewed = styled.span`
|
|
${ellipsis()}
|
|
`;
|
|
|
|
const Modified = styled.span<{ highlight?: boolean }>`
|
|
font-weight: ${(props) => (props.highlight ? "600" : "400")};
|
|
`;
|
|
|
|
export default observer(DocumentMeta);
|