import { observer } from "mobx-react"; import { CheckmarkIcon } from "outline-icons"; import * as React from "react"; import { useTranslation } from "react-i18next"; import { useTheme } from "styled-components"; import Share from "~/models/Share"; import Avatar from "~/components/Avatar"; import Flex from "~/components/Flex"; import TableFromParams from "~/components/TableFromParams"; import Time from "~/components/Time"; import ShareMenu from "~/menus/ShareMenu"; type Props = Omit, "columns"> & { data: Share[]; canManage: boolean; }; function SharesTable({ canManage, ...rest }: Props) { const { t } = useTranslation(); const theme = useTheme(); const columns = React.useMemo( () => [ { id: "documentTitle", Header: t("Document"), accessor: "documentTitle", disableSortBy: true, Cell: observer(({ value }: { value: string }) => <>{value}), }, { id: "createdAt", Header: t("Date shared"), accessor: "createdAt", Cell: observer( ({ value, row }: { value: string; row: { original: Share } }) => value ? ( {row.original.createdBy && ( )} ) : null ), }, { id: "lastAccessedAt", Header: t("Last accessed"), accessor: "lastAccessedAt", Cell: observer(({ value }: { value: string }) => value ?