84 lines
2.5 KiB
JavaScript
84 lines
2.5 KiB
JavaScript
// @flow
|
|
import * as React from 'react';
|
|
import { observable } from 'mobx';
|
|
import { observer, inject } from 'mobx-react';
|
|
import { NewDocumentIcon } from 'outline-icons';
|
|
|
|
import NewDocumentMenu from 'menus/NewDocumentMenu';
|
|
import DocumentsStore from 'stores/DocumentsStore';
|
|
import Actions, { Action } from 'components/Actions';
|
|
import CenteredContent from 'components/CenteredContent';
|
|
import DocumentList from 'components/DocumentList';
|
|
import PageTitle from 'components/PageTitle';
|
|
import Subheading from 'components/Subheading';
|
|
import { ListPlaceholder } from 'components/LoadingPlaceholder';
|
|
|
|
type Props = {
|
|
documents: DocumentsStore,
|
|
};
|
|
|
|
@observer
|
|
class Dashboard extends React.Component<Props> {
|
|
@observable isLoaded: boolean = false;
|
|
|
|
componentDidMount() {
|
|
this.loadContent();
|
|
}
|
|
|
|
loadContent = async () => {
|
|
await Promise.all([
|
|
this.props.documents.fetchRecentlyModified({ limit: 5 }),
|
|
this.props.documents.fetchRecentlyViewed({ limit: 5 }),
|
|
]);
|
|
this.isLoaded = true;
|
|
};
|
|
|
|
render() {
|
|
const { documents } = this.props;
|
|
const hasRecentlyViewed = documents.recentlyViewed.length > 0;
|
|
const hasRecentlyEdited = documents.recentlyEdited.length > 0;
|
|
const showContent =
|
|
this.isLoaded || (hasRecentlyViewed && hasRecentlyEdited);
|
|
|
|
return (
|
|
<CenteredContent>
|
|
<PageTitle title="Home" />
|
|
<h1>Home</h1>
|
|
{showContent ? (
|
|
<React.Fragment>
|
|
{hasRecentlyViewed && (
|
|
<React.Fragment>
|
|
<Subheading key="viewed">Recently viewed</Subheading>
|
|
<DocumentList
|
|
key="viewedDocuments"
|
|
documents={documents.recentlyViewed}
|
|
showCollection
|
|
/>
|
|
</React.Fragment>
|
|
)}
|
|
{hasRecentlyEdited && (
|
|
<React.Fragment>
|
|
<Subheading key="edited">Recently edited</Subheading>
|
|
<DocumentList
|
|
key="editedDocuments"
|
|
documents={documents.recentlyEdited}
|
|
showCollection
|
|
/>
|
|
</React.Fragment>
|
|
)}
|
|
<Actions align="center" justify="flex-end">
|
|
<Action>
|
|
<NewDocumentMenu label={<NewDocumentIcon />} />
|
|
</Action>
|
|
</Actions>
|
|
</React.Fragment>
|
|
) : (
|
|
<ListPlaceholder count={5} />
|
|
)}
|
|
</CenteredContent>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default inject('documents')(Dashboard);
|