// @flow 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 Breadcrumb from "components/Breadcrumb"; import Flex from "components/Flex"; import Time from "components/Time"; import useStores from "hooks/useStores"; const Container = styled(Flex)` color: ${(props) => props.theme.textTertiary}; font-size: 13px; white-space: nowrap; overflow: hidden; min-width: 0; `; const Modified = styled.span` color: ${(props) => props.theme.textTertiary}; font-weight: ${(props) => (props.highlight ? "600" : "400")}; `; type Props = {| showCollection?: boolean, showPublished?: boolean, showLastViewed?: boolean, showNestedDocuments?: boolean, document: Document, children: React.Node, to?: string, |}; function DocumentMeta({ showPublished, showCollection, showLastViewed, showNestedDocuments, document, children, to, ...rest }: Props) { const { t } = useTranslation(); const { collections, auth } = useStores(); const { modifiedSinceViewed, updatedAt, updatedBy, createdAt, publishedAt, archivedAt, deletedAt, isDraft, lastViewedAt, } = 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; } let content; if (deletedAt) { content = ( {t("deleted")} ); } else if (archivedAt) { content = ( {t("archived")} ); } else if (createdAt === updatedAt) { content = ( {t("created")} ); } else if (publishedAt && (publishedAt === updatedAt || showPublished)) { content = ( {t("published")} ); } else if (isDraft) { content = ( {t("saved")} ); } else { content = ( {t("updated")} ); } const collection = collections.get(document.collectionId); const updatedByMe = auth.user && auth.user.id === updatedBy.id; const timeSinceNow = () => { if (isDraft || !showLastViewed) { return null; } if (!lastViewedAt) { return ( <> • {t("Never viewed")} ); } return ( • {t("Viewed")} ); }; const nestedDocumentsCount = collection ? collection.getDocumentChildren(document.id).length : 0; return ( {updatedByMe ? t("You") : updatedBy.name}  {to ? {content} : content} {showCollection && collection && (  {t("in")}  )} {showNestedDocuments && nestedDocumentsCount > 0 && (  · {nestedDocumentsCount}{" "} {t("nested document", { count: nestedDocumentsCount })} )}  {timeSinceNow()} {children} ); } export default observer(DocumentMeta);