64 lines
1.7 KiB
JavaScript
64 lines
1.7 KiB
JavaScript
// @flow
|
|
import * as React from 'react';
|
|
import { observable } from 'mobx';
|
|
import { inject, observer } from 'mobx-react';
|
|
import { Redirect } from 'react-router-dom';
|
|
import { MoreIcon, CollectionIcon, PrivateCollectionIcon } from 'outline-icons';
|
|
|
|
import { newDocumentUrl } from 'utils/routeHelpers';
|
|
import CollectionsStore from 'stores/CollectionsStore';
|
|
import { DropdownMenu, DropdownMenuItem } from 'components/DropdownMenu';
|
|
|
|
type Props = {
|
|
label?: React.Node,
|
|
collections: CollectionsStore,
|
|
};
|
|
|
|
@observer
|
|
class NewDocumentMenu extends React.Component<Props> {
|
|
@observable redirectTo: ?string;
|
|
|
|
handleNewDocument = collection => {
|
|
this.redirectTo = newDocumentUrl(collection);
|
|
};
|
|
|
|
onOpen = () => {
|
|
const { collections } = this.props;
|
|
|
|
if (collections.orderedData.length === 1) {
|
|
this.handleNewDocument(collections.orderedData[0]);
|
|
}
|
|
};
|
|
|
|
render() {
|
|
if (this.redirectTo) return <Redirect to={this.redirectTo} />;
|
|
|
|
const { collections, label, ...rest } = this.props;
|
|
|
|
return (
|
|
<DropdownMenu
|
|
label={label || <MoreIcon />}
|
|
onOpen={this.onOpen}
|
|
{...rest}
|
|
>
|
|
<DropdownMenuItem disabled>Choose a collection…</DropdownMenuItem>
|
|
{collections.orderedData.map(collection => (
|
|
<DropdownMenuItem
|
|
key={collection.id}
|
|
onClick={() => this.handleNewDocument(collection)}
|
|
>
|
|
{collection.private ? (
|
|
<PrivateCollectionIcon color={collection.color} />
|
|
) : (
|
|
<CollectionIcon color={collection.color} />
|
|
)}{' '}
|
|
{collection.name}
|
|
</DropdownMenuItem>
|
|
))}
|
|
</DropdownMenu>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default inject('collections')(NewDocumentMenu);
|