// @flow import { observer } from "mobx-react"; import { GoToIcon } from "outline-icons"; import * as React from "react"; import styled from "styled-components"; import type { DocumentPath } from "stores/CollectionsStore"; import Collection from "models/Collection"; import Document from "models/Document"; import CollectionIcon from "components/CollectionIcon"; import Flex from "components/Flex"; type Props = { result: DocumentPath, document?: ?Document, collection: ?Collection, onSuccess?: () => void, style?: Object, ref?: (?React.ElementRef<"div">) => void, }; @observer class PathToDocument extends React.Component { handleClick = async (ev: SyntheticEvent<>) => { ev.preventDefault(); const { document, result, onSuccess } = this.props; if (!document) return; if (result.type === "document") { await document.move(result.collectionId, result.id); } else { await document.move(result.collectionId, null); } if (onSuccess) onSuccess(); }; render() { const { result, collection, document, ref, style } = this.props; const Component = document ? ResultWrapperLink : ResultWrapper; if (!result) return
; return ( {collection && }   {result.path .map((doc) => {doc.title}) .reduce((prev, curr) => [prev, , curr])} {document && ( {" "} {document.title} )} ); } } const DocumentTitle = styled(Flex)``; const Title = styled.span` white-space: nowrap; overflow: hidden; text-overflow: ellipsis; `; const StyledGoToIcon = styled(GoToIcon)` fill: ${(props) => props.theme.divider}; `; const ResultWrapper = styled.div` display: flex; margin-bottom: 10px; user-select: none; color: ${(props) => props.theme.text}; cursor: default; svg { flex-shrink: 0; } `; const ResultWrapperLink = styled(ResultWrapper.withComponent("a"))` padding: 8px 4px; ${DocumentTitle} { display: none; } svg { flex-shrink: 0; } &:hover, &:active, &:focus { background: ${(props) => props.theme.listItemHoverBackground}; outline: none; ${DocumentTitle} { display: flex; } } `; export default PathToDocument;