mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
106 lines
2.8 KiB
TypeScript
106 lines
2.8 KiB
TypeScript
import { observer } from "mobx-react";
|
||
import { DisconnectedIcon } from "outline-icons";
|
||
import { useTranslation } from "react-i18next";
|
||
import styled from "styled-components";
|
||
import breakpoint from "styled-components-breakpoint";
|
||
import {
|
||
AuthenticationFailed,
|
||
AuthorizationFailed,
|
||
DocumentTooLarge,
|
||
EditorUpdateError,
|
||
TooManyConnections,
|
||
} from "@shared/collaboration/CloseEvents";
|
||
import Fade from "~/components/Fade";
|
||
import NudeButton from "~/components/NudeButton";
|
||
import Tooltip from "~/components/Tooltip";
|
||
import useStores from "~/hooks/useStores";
|
||
|
||
function ConnectionStatus() {
|
||
const { ui } = useStores();
|
||
const { t } = useTranslation();
|
||
|
||
const codeToMessage = {
|
||
[DocumentTooLarge.code]: {
|
||
title: t("Document is too large"),
|
||
body: t(
|
||
"This document has reached the maximum size and can no longer be edited"
|
||
),
|
||
},
|
||
[AuthenticationFailed.code]: {
|
||
title: t("Authentication failed"),
|
||
body: t("Please try logging out and back in again"),
|
||
},
|
||
[AuthorizationFailed.code]: {
|
||
title: t("Authorization failed"),
|
||
body: t("You may have lost access to this document, try reloading"),
|
||
},
|
||
[TooManyConnections.code]: {
|
||
title: t("Too many users connected to document"),
|
||
body: t("Your edits will sync once other users leave the document"),
|
||
},
|
||
[EditorUpdateError.code]: {
|
||
title: t("New version available"),
|
||
body: t("Please reload the page to update to the latest version"),
|
||
},
|
||
};
|
||
|
||
const message = ui.multiplayerErrorCode
|
||
? codeToMessage[ui.multiplayerErrorCode as keyof typeof codeToMessage]
|
||
: undefined;
|
||
|
||
return ui.multiplayerStatus === "connecting" ||
|
||
ui.multiplayerStatus === "disconnected" ? (
|
||
<Tooltip
|
||
content={
|
||
message ? (
|
||
<Centered>
|
||
<strong>{message.title}</strong>
|
||
<br />
|
||
{message.body}
|
||
</Centered>
|
||
) : (
|
||
<Centered>
|
||
<strong>{t("Server connection lost")}</strong>
|
||
<br />
|
||
{t("Edits you make will sync once you’re online")}
|
||
</Centered>
|
||
)
|
||
}
|
||
placement="bottom"
|
||
>
|
||
<Fade>
|
||
<Button width="auto">
|
||
{message?.title ?? t("Offline")}
|
||
<DisconnectedIcon />
|
||
</Button>
|
||
</Fade>
|
||
</Tooltip>
|
||
) : null;
|
||
}
|
||
|
||
const Button = styled(NudeButton)`
|
||
display: none;
|
||
background: ${(props) => props.theme.backgroundTertiary};
|
||
color: ${(props) => props.theme.textSecondary};
|
||
font-size: 14px;
|
||
font-weight: 500;
|
||
padding-left: 6px;
|
||
padding-right: 6px;
|
||
|
||
${breakpoint("tablet")`
|
||
display: flex;
|
||
gap: 4px;
|
||
align-items: center;
|
||
`};
|
||
|
||
@media print {
|
||
display: none;
|
||
}
|
||
`;
|
||
|
||
const Centered = styled.div`
|
||
text-align: center;
|
||
`;
|
||
|
||
export default observer(ConnectionStatus);
|