This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/app/components/Layout.js

165 lines
4.3 KiB
JavaScript
Raw Normal View History

2017-05-12 00:23:56 +00:00
// @flow
import { observable } from "mobx";
import { observer, inject } from "mobx-react";
import * as React from "react";
import { Helmet } from "react-helmet";
import keydown from "react-keydown";
import { Switch, Route, Redirect } from "react-router-dom";
import styled, { withTheme } from "styled-components";
import breakpoint from "styled-components-breakpoint";
import AuthStore from "stores/AuthStore";
import DocumentsStore from "stores/DocumentsStore";
import UiStore from "stores/UiStore";
import ErrorSuspended from "scenes/ErrorSuspended";
import KeyboardShortcuts from "scenes/KeyboardShortcuts";
import Analytics from "components/Analytics";
import DocumentHistory from "components/DocumentHistory";
import { GlobalStyles } from "components/DropToImport";
import Flex from "components/Flex";
import { LoadingIndicatorBar } from "components/LoadingIndicator";
import Modal from "components/Modal";
import Sidebar from "components/Sidebar";
import SettingsSidebar from "components/Sidebar/Settings";
import {
homeUrl,
searchUrl,
matchDocumentSlug as slug,
} from "utils/routeHelpers";
2017-05-12 00:23:56 +00:00
type Props = {
documents: DocumentsStore,
2018-05-05 23:16:08 +00:00
children?: ?React.Node,
actions?: ?React.Node,
title?: ?React.Node,
2017-05-30 02:08:03 +00:00
auth: AuthStore,
2017-06-16 03:39:08 +00:00
ui: UiStore,
2018-05-05 23:16:08 +00:00
notifications?: React.Node,
2019-03-13 04:35:35 +00:00
theme: Object,
2017-05-12 00:23:56 +00:00
};
2017-11-10 22:14:30 +00:00
@observer
2018-05-05 23:16:08 +00:00
class Layout extends React.Component<Props> {
2017-10-15 18:42:03 +00:00
scrollable: ?HTMLDivElement;
2019-01-19 08:23:39 +00:00
@observable redirectTo: ?string;
@observable keyboardShortcutsOpen: boolean = false;
2019-01-19 08:23:39 +00:00
constructor(props) {
super();
this.updateBackground(props);
2019-03-13 04:35:35 +00:00
}
2019-01-19 08:23:39 +00:00
componentDidUpdate() {
this.updateBackground(this.props);
2019-03-13 04:35:35 +00:00
2019-01-19 08:23:39 +00:00
if (this.redirectTo) {
this.redirectTo = undefined;
}
}
2016-07-18 03:59:32 +00:00
updateBackground(props) {
// ensure the wider page color always matches the theme
window.document.body.style.background = props.theme.background;
}
@keydown("shift+/")
handleOpenKeyboardShortcuts() {
if (this.props.ui.editMode) return;
this.keyboardShortcutsOpen = true;
}
handleCloseKeyboardShortcuts = () => {
this.keyboardShortcutsOpen = false;
};
@keydown(["t", "/", "meta+k"])
goToSearch(ev) {
if (this.props.ui.editMode) return;
ev.preventDefault();
ev.stopPropagation();
2019-01-19 08:23:39 +00:00
this.redirectTo = searchUrl();
2016-07-23 20:12:56 +00:00
}
2016-07-19 07:31:01 +00:00
@keydown("d")
goToDashboard() {
if (this.props.ui.editMode) return;
2019-01-19 08:23:39 +00:00
this.redirectTo = homeUrl();
}
2017-05-30 02:08:03 +00:00
render() {
2017-11-19 23:56:50 +00:00
const { auth, ui } = this.props;
2017-09-04 00:08:56 +00:00
const { user, team } = auth;
2017-11-19 23:56:50 +00:00
const showSidebar = auth.authenticated && user && team;
2017-05-17 07:11:13 +00:00
2018-03-05 06:38:14 +00:00
if (auth.isSuspended) return <ErrorSuspended />;
if (this.redirectTo) return <Redirect to={this.redirectTo} push />;
2016-04-29 05:25:37 +00:00
return (
<Container column auto>
2017-10-22 23:33:10 +00:00
<Helmet>
2020-07-14 02:41:42 +00:00
<title>{team && team.name ? team.name : "Outline"}</title>
2017-10-22 23:33:10 +00:00
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
</Helmet>
2017-11-09 08:17:55 +00:00
<Analytics />
2016-06-06 06:57:58 +00:00
2017-06-30 05:44:15 +00:00
{this.props.ui.progressBarVisible && <LoadingIndicatorBar />}
2017-04-27 05:18:36 +00:00
{this.props.notifications}
<Container auto>
{showSidebar && (
<Switch>
<Route path="/settings" component={SettingsSidebar} />
<Route component={Sidebar} />
</Switch>
)}
2017-06-16 03:39:08 +00:00
2017-06-25 07:29:40 +00:00
<Content auto justify="center" editMode={ui.editMode}>
2017-06-16 03:39:08 +00:00
{this.props.children}
</Content>
<Switch>
<Route
path={`/doc/${slug}/history/:revisionId?`}
component={DocumentHistory}
/>
</Switch>
</Container>
<Modal
isOpen={this.keyboardShortcutsOpen}
onRequestClose={this.handleCloseKeyboardShortcuts}
title="Keyboard shortcuts"
>
<KeyboardShortcuts />
</Modal>
<GlobalStyles />
</Container>
2016-04-29 05:25:37 +00:00
);
}
}
const Container = styled(Flex)`
background: ${(props) => props.theme.background};
transition: ${(props) => props.theme.backgroundTransition};
2017-06-09 06:32:08 +00:00
position: relative;
width: 100%;
min-height: 100%;
`;
const Content = styled(Flex)`
margin: 0;
transition: margin-left 100ms ease-out;
2017-12-03 00:27:45 +00:00
@media print {
margin: 0;
2017-12-03 00:27:45 +00:00
}
${breakpoint("tablet")`
margin-left: ${(props) => (props.editMode ? 0 : props.theme.sidebarWidth)};
`};
`;
export default inject("auth", "ui", "documents")(withTheme(Layout));