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.
Files
outline/app/components/Sidebar/Main.js
Tom Moor 642c11ff7d Document Archive (#921)
* WIP: Archive

* WIP

* Finishing up archive endpoints

* WIP

* Update docs

* Flow

* Stash

* Add toast message confirmations

* Redirect handling, fixed publishhing info for archived docs

* Redirect to collection instead of home, remove unused pub info

* Account for deleted parent

* Trash -> Archive
Allow reading of archived docs

* Dont overload deletedAt

* Fixes

* 💚

* ParentDocumentId wipe for unarchived sub docs

* Fix: CMD+S exits editing
Fix: Duplicate user name on published but unedited docs

* Improve jank on paginated lists

* Prevent editing when archived

* 💚
Separate lint / flow steps
2019-04-06 16:20:27 -07:00

122 lines
3.2 KiB
JavaScript

// @flow
import * as React from 'react';
import { observer, inject } from 'mobx-react';
import {
ArchiveIcon,
HomeIcon,
EditIcon,
SearchIcon,
StarredIcon,
} from 'outline-icons';
import Flex from 'shared/components/Flex';
import AccountMenu from 'menus/AccountMenu';
import Sidebar from './Sidebar';
import Scrollable from 'components/Scrollable';
import Section from './components/Section';
import Collections from './components/Collections';
import SidebarLink from './components/SidebarLink';
import HeaderBlock from './components/HeaderBlock';
import Bubble from './components/Bubble';
import AuthStore from 'stores/AuthStore';
import DocumentsStore from 'stores/DocumentsStore';
import UiStore from 'stores/UiStore';
type Props = {
auth: AuthStore,
documents: DocumentsStore,
ui: UiStore,
};
@observer
class MainSidebar extends React.Component<Props> {
componentDidMount() {
this.props.documents.fetchDrafts();
}
handleCreateCollection = () => {
this.props.ui.setActiveModal('collection-new');
};
render() {
const { auth, documents } = this.props;
const { user, team } = auth;
if (!user || !team) return null;
const draftDocumentsCount = documents.drafts.length;
return (
<Sidebar>
<AccountMenu
label={
<HeaderBlock
subheading={user.name}
teamName={team.name}
logoUrl={team.avatarUrl}
showDisclosure
/>
}
/>
<Flex auto column>
<Scrollable shadow>
<Section>
<SidebarLink
to="/dashboard"
icon={<HomeIcon />}
exact={false}
label="Home"
/>
<SidebarLink
to={{
pathname: '/search',
state: { fromMenu: true },
}}
icon={<SearchIcon />}
label="Search"
exact={false}
/>
<SidebarLink
to="/starred"
icon={<StarredIcon />}
exact={false}
label="Starred"
/>
<SidebarLink
to="/drafts"
icon={
draftDocumentsCount > 0 && draftDocumentsCount < 10 ? (
<Bubble count={draftDocumentsCount} />
) : (
<EditIcon />
)
}
label="Drafts"
active={
documents.active ? !documents.active.publishedAt : undefined
}
/>
</Section>
<Section>
<Collections onCreateCollection={this.handleCreateCollection} />
</Section>
<Section>
<SidebarLink
to="/archive"
icon={<ArchiveIcon />}
exact={false}
label="Archive"
active={
documents.active ? documents.active.isArchived : undefined
}
/>
</Section>
</Scrollable>
</Flex>
</Sidebar>
);
}
}
export default inject('documents', 'auth', 'ui')(MainSidebar);