mirror of
https://github.com/outline/outline.git
synced 2026-06-26 01:34:23 +03:00
1285efc49a
* feat: i18n
* Changing language single source of truth from TEAM to USER
* Changes according to @tommoor comments on PR
* Changed package.json for build:i18n and translation label
* Finished 1st MVP of i18n for outline
* new translation labels & Portuguese from Portugal translation
* Fixes from PR request
* Described language dropdown as an experimental feature
* Set keySeparator to false in order to cowork with html keys
* Added useTranslation to Breadcrumb
* Repositioned <strong> element
* Removed extra space from TemplatesMenu
* Fortified the test suite for i18n
* Fixed trans component problematic
* Check if selected language is available
* Update yarn.lock
* Removed unused Trans
* Removing debug variable from i18n init
* Removed debug variable
* test: update snapshots
* flow: Remove decorator usage to get proper flow typing
It's a shame, but hopefully we'll move to Typescript in the next 6 months and we can forget this whole Flow mistake ever happened
* translate: Drafts
* More translatable strings
* Mo translation strings
* translation: Search
* async translations loading
* cache translations in client
* Revert "cache translations in client"
This reverts commit 08fb61ce36.
* Revert localStorage cache for cache headers
* Update Crowdin configuration file
* Moved translation files to locales folder and fixed english text
* Added CONTRIBUTING File for CrowdIn
* chore: Move translations again to please CrowdIn
* fix: loading paths
chore: Add strings for editor
* fix: Improve validation on documents.import endpoint
* test: mock bull
* fix: Unknown mimetype should fallback to Markdown parsing if markdown extension (#1678)
* closes #1675
* Update CONTRIBUTING
* chore: Add link to translation portal from app UI
* refactor: Centralize language config
* fix: Ensure creation of i18n directory in build
* feat: Add language prompt
* chore: Improve contributing guidelines, add link from README
* chore: Normalize tab header casing
* chore: More string externalization
* fix: Language prompt in dark mode
Co-authored-by: André Glatzl <andreglatzl@gmail.com>
213 lines
4.6 KiB
JavaScript
213 lines
4.6 KiB
JavaScript
// @flow
|
|
import { observer } from "mobx-react";
|
|
import {
|
|
ArchiveIcon,
|
|
EditIcon,
|
|
GoToIcon,
|
|
MoreIcon,
|
|
PadlockIcon,
|
|
ShapesIcon,
|
|
TrashIcon,
|
|
} from "outline-icons";
|
|
import * as React from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { Link } from "react-router-dom";
|
|
import styled from "styled-components";
|
|
import breakpoint from "styled-components-breakpoint";
|
|
|
|
import CollectionsStore from "stores/CollectionsStore";
|
|
import Document from "models/Document";
|
|
import CollectionIcon from "components/CollectionIcon";
|
|
import Flex from "components/Flex";
|
|
import BreadcrumbMenu from "./BreadcrumbMenu";
|
|
import useStores from "hooks/useStores";
|
|
import { collectionUrl } from "utils/routeHelpers";
|
|
|
|
type Props = {
|
|
document: Document,
|
|
collections: CollectionsStore,
|
|
onlyText: boolean,
|
|
};
|
|
|
|
function Icon({ document }) {
|
|
const { t } = useTranslation();
|
|
|
|
if (document.isDeleted) {
|
|
return (
|
|
<>
|
|
<CollectionName to="/trash">
|
|
<TrashIcon color="currentColor" />
|
|
|
|
<span>{t("Trash")}</span>
|
|
</CollectionName>
|
|
<Slash />
|
|
</>
|
|
);
|
|
}
|
|
if (document.isArchived) {
|
|
return (
|
|
<>
|
|
<CollectionName to="/archive">
|
|
<ArchiveIcon color="currentColor" />
|
|
|
|
<span>{t("Archive")}</span>
|
|
</CollectionName>
|
|
<Slash />
|
|
</>
|
|
);
|
|
}
|
|
if (document.isDraft) {
|
|
return (
|
|
<>
|
|
<CollectionName to="/drafts">
|
|
<EditIcon color="currentColor" />
|
|
|
|
<span>{t("Drafts")}</span>
|
|
</CollectionName>
|
|
<Slash />
|
|
</>
|
|
);
|
|
}
|
|
if (document.isTemplate) {
|
|
return (
|
|
<>
|
|
<CollectionName to="/templates">
|
|
<ShapesIcon color="currentColor" />
|
|
|
|
<span>{t("Templates")}</span>
|
|
</CollectionName>
|
|
<Slash />
|
|
</>
|
|
);
|
|
}
|
|
return null;
|
|
}
|
|
|
|
const Breadcrumb = ({ document, onlyText }: Props) => {
|
|
const { collections } = useStores();
|
|
const { t } = useTranslation();
|
|
|
|
let collection = collections.get(document.collectionId);
|
|
if (!collection) {
|
|
if (!document.deletedAt) return <div />;
|
|
|
|
collection = {
|
|
id: document.collectionId,
|
|
name: t("Deleted Collection"),
|
|
color: "currentColor",
|
|
};
|
|
}
|
|
|
|
const path = collection.pathToDocument
|
|
? collection.pathToDocument(document).slice(0, -1)
|
|
: [];
|
|
|
|
if (onlyText === true) {
|
|
return (
|
|
<>
|
|
{collection.private && (
|
|
<>
|
|
<SmallPadlockIcon color="currentColor" size={16} />{" "}
|
|
</>
|
|
)}
|
|
{collection.name}
|
|
{path.map((n) => (
|
|
<React.Fragment key={n.id}>
|
|
<SmallSlash />
|
|
{n.title}
|
|
</React.Fragment>
|
|
))}
|
|
</>
|
|
);
|
|
}
|
|
|
|
const isNestedDocument = path.length > 1;
|
|
const lastPath = path.length ? path[path.length - 1] : undefined;
|
|
const menuPath = isNestedDocument ? path.slice(0, -1) : [];
|
|
|
|
return (
|
|
<Wrapper justify="flex-start" align="center">
|
|
<Icon document={document} />
|
|
<CollectionName to={collectionUrl(collection.id)}>
|
|
<CollectionIcon collection={collection} expanded />
|
|
|
|
<span>{collection.name}</span>
|
|
</CollectionName>
|
|
{isNestedDocument && (
|
|
<>
|
|
<Slash /> <BreadcrumbMenu label={<Overflow />} path={menuPath} />
|
|
</>
|
|
)}
|
|
{lastPath && (
|
|
<>
|
|
<Slash />{" "}
|
|
<Crumb to={lastPath.url} title={lastPath.title}>
|
|
{lastPath.title}
|
|
</Crumb>
|
|
</>
|
|
)}
|
|
</Wrapper>
|
|
);
|
|
};
|
|
|
|
const Wrapper = styled(Flex)`
|
|
display: none;
|
|
|
|
${breakpoint("tablet")`
|
|
display: flex;
|
|
`};
|
|
`;
|
|
|
|
const SmallPadlockIcon = styled(PadlockIcon)`
|
|
display: inline-block;
|
|
vertical-align: sub;
|
|
`;
|
|
|
|
const SmallSlash = styled(GoToIcon)`
|
|
width: 15px;
|
|
height: 10px;
|
|
flex-shrink: 0;
|
|
opacity: 0.25;
|
|
`;
|
|
|
|
export const Slash = styled(GoToIcon)`
|
|
flex-shrink: 0;
|
|
fill: ${(props) => props.theme.divider};
|
|
`;
|
|
|
|
const Overflow = styled(MoreIcon)`
|
|
flex-shrink: 0;
|
|
transition: opacity 100ms ease-in-out;
|
|
fill: ${(props) => props.theme.divider};
|
|
|
|
&:active,
|
|
&:hover {
|
|
fill: ${(props) => props.theme.text};
|
|
}
|
|
`;
|
|
|
|
const Crumb = styled(Link)`
|
|
color: ${(props) => props.theme.text};
|
|
font-size: 15px;
|
|
height: 24px;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
`;
|
|
|
|
const CollectionName = styled(Link)`
|
|
display: flex;
|
|
flex-shrink: 0;
|
|
color: ${(props) => props.theme.text};
|
|
font-size: 15px;
|
|
font-weight: 500;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
`;
|
|
|
|
export default observer(Breadcrumb);
|