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

166 lines
4.3 KiB
JavaScript
Raw Normal View History

2017-05-12 00:23:56 +00:00
// @flow
2018-05-05 23:16:08 +00:00
import * as React from 'react';
2019-01-19 08:23:39 +00:00
import { Switch, Route, Redirect } from 'react-router-dom';
2017-10-22 23:33:10 +00:00
import { Helmet } from 'react-helmet';
2019-03-13 04:35:35 +00:00
import styled, { withTheme } from 'styled-components';
import breakpoint from 'styled-components-breakpoint';
2019-01-19 08:23:39 +00:00
import { observable } from 'mobx';
2017-04-27 05:18:36 +00:00
import { observer, inject } from 'mobx-react';
Slate editor (#38) * WIP: Slate editor * WIP * Focus at start / end working * ah ha * Super basic floating toolbar * Nested list editing * Pulling more logic into plugins * inline code markdown * Backspace at end of code block should remove mark * Ensure there is always an empty line at editor end * Add keyboard shortcuts for bold, italic, underline * Add strikethrough shortcode and toolbar * Toolbar to declarative Fixed paragraph styling Removed unused stuffs * Super basic link editing * Split Toolbar, now possible to edit and remove links * Add new link to selection from toolbar working * Ensure toolbar doesn't extend off screen * Fix minor js issues, disable formatting of document title * Boom, icons * Remove codemirror, fix MD parsing issues * CMD+S now saves inplace * Add --- shortcut for horizontal rule * Improved styling for link editor * Add header anchors in readOnly * More readable core text color * Restored image file uploading :tada: * Add support for inline md syntax, ** __ etc * Centered * Flooooow * Checklist support * Upgrade edit list plugin * Finally. Allow keydown within rich textarea * Update Markdown serializer * Cleanup, remove async editor loading * Editor > MarkdownEditor Fixed unsaved changes warning triggered when all changes are saved * MOAR typing * Combine edit and view * Fixed checkboxes still editable in readOnly * wip * Breadcrumb Restored scroll * Move document scene actions to menu * Added: Support for code blocks, syntax highlighting * Cleanup * > styled component * Prevent CMD+Enter from adding linebreak * Show image uploading in layout activity indicator * Upgrade editor deps * Improve link toolbar. Only one scenario where it's not working now
2017-05-18 02:36:31 +00:00
import keydown from 'react-keydown';
2018-11-18 03:44:57 +00:00
import Analytics from 'components/Analytics';
import Flex from 'shared/components/Flex';
import {
homeUrl,
searchUrl,
matchDocumentSlug as slug,
} from 'utils/routeHelpers';
2017-09-04 00:27:12 +00:00
2017-06-30 05:44:15 +00:00
import { LoadingIndicatorBar } from 'components/LoadingIndicator';
import { GlobalStyles } from 'components/DropToImport';
2017-11-19 23:56:50 +00:00
import Sidebar from 'components/Sidebar';
import SettingsSidebar from 'components/Sidebar/Settings';
2017-11-19 23:56:50 +00:00
import Modals from 'components/Modals';
import DocumentHistory from 'components/DocumentHistory';
import Modal from 'components/Modal';
import KeyboardShortcuts from 'scenes/KeyboardShortcuts';
import ErrorSuspended from 'scenes/ErrorSuspended';
2017-05-30 02:08:03 +00:00
import AuthStore from 'stores/AuthStore';
2017-06-16 03:39:08 +00:00
import UiStore from 'stores/UiStore';
import DocumentsStore from 'stores/DocumentsStore';
2016-04-30 18:46:32 +00:00
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
2019-03-13 04:35:35 +00:00
componentWillMount() {
this.updateBackground();
}
2019-01-19 08:23:39 +00:00
componentDidUpdate() {
2019-03-13 04:35:35 +00:00
this.updateBackground();
2019-01-19 08:23:39 +00:00
if (this.redirectTo) {
this.redirectTo = undefined;
}
}
2016-07-18 03:59:32 +00:00
updateBackground() {
// ensure the wider page color always matches the theme
window.document.body.style.background = this.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>
2017-11-09 08:20:22 +00:00
<title>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>
2017-09-10 05:12:59 +00:00
<Modals ui={ui} />
<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)`
2019-03-13 04:35:35 +00:00
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')`
2018-06-10 02:10:30 +00:00
margin-left: ${props => (props.editMode ? 0 : props.theme.sidebarWidth)};
`};
`;
2019-03-13 04:35:35 +00:00
export default inject('auth', 'ui', 'documents')(withTheme(Layout));