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/scenes/Drafts.js

52 lines
1.4 KiB
JavaScript
Raw Normal View History

// @flow
import * as React from "react";
import { observer, inject } from "mobx-react";
import Heading from "components/Heading";
import CenteredContent from "components/CenteredContent";
import Empty from "components/Empty";
import PageTitle from "components/PageTitle";
import PaginatedDocumentList from "components/PaginatedDocumentList";
import Subheading from "components/Subheading";
import InputSearch from "components/InputSearch";
import NewDocumentMenu from "menus/NewDocumentMenu";
import Actions, { Action } from "components/Actions";
import DocumentsStore from "stores/DocumentsStore";
2018-05-05 23:16:08 +00:00
type Props = {
documents: DocumentsStore,
};
2018-05-05 23:16:08 +00:00
@observer
class Drafts extends React.Component<Props> {
render() {
const { fetchDrafts, drafts } = this.props.documents;
return (
<CenteredContent column auto>
<PageTitle title="Drafts" />
2018-08-07 06:22:20 +00:00
<Heading>Drafts</Heading>
<PaginatedDocumentList
heading={<Subheading>Documents</Subheading>}
empty={<Empty>Youve not got any drafts at the moment.</Empty>}
fetch={fetchDrafts}
documents={drafts}
showDraft={false}
showCollection
/>
<Actions align="center" justify="flex-end">
<Action>
<InputSearch />
</Action>
<Action>
<NewDocumentMenu />
</Action>
</Actions>
</CenteredContent>
);
}
}
export default inject("documents")(Drafts);