* tweaking effect details * wrap work on this feature * adds correct color to drop cursor * simplify logic for early return * much better comment so Tom doesn't fire me * feat: Allow changing sort order of collections * refactor: Move validation to model feat: Make custom order the default (in prep for dnd) * feat: Add sort choice to edit collection modal fix: Improved styling of generic InputSelect * fix: Vertical space left after removing previous collection description * chore: Tweak language, menu contents, add auto-disclosure on sub menus * only show drop-to-reorder cursor when sort is set to manual Co-authored-by: Tom Moor <tom.moor@gmail.com>
261 lines
7.4 KiB
JavaScript
261 lines
7.4 KiB
JavaScript
// @flow
|
|
import { observable } from "mobx";
|
|
import { inject, observer } from "mobx-react";
|
|
import * as React from "react";
|
|
import { withTranslation, type TFunction } from "react-i18next";
|
|
import { withRouter, type RouterHistory } from "react-router-dom";
|
|
import DocumentsStore from "stores/DocumentsStore";
|
|
import PoliciesStore from "stores/PoliciesStore";
|
|
import UiStore from "stores/UiStore";
|
|
import Collection from "models/Collection";
|
|
import CollectionDelete from "scenes/CollectionDelete";
|
|
import CollectionEdit from "scenes/CollectionEdit";
|
|
import CollectionExport from "scenes/CollectionExport";
|
|
import CollectionMembers from "scenes/CollectionMembers";
|
|
import { DropdownMenu } from "components/DropdownMenu";
|
|
import DropdownMenuItems from "components/DropdownMenu/DropdownMenuItems";
|
|
import Modal from "components/Modal";
|
|
import VisuallyHidden from "components/VisuallyHidden";
|
|
import getDataTransferFiles from "utils/getDataTransferFiles";
|
|
import { newDocumentUrl } from "utils/routeHelpers";
|
|
|
|
type Props = {
|
|
position?: "left" | "right" | "center",
|
|
ui: UiStore,
|
|
policies: PoliciesStore,
|
|
documents: DocumentsStore,
|
|
collection: Collection,
|
|
history: RouterHistory,
|
|
showSort?: boolean,
|
|
onOpen?: () => void,
|
|
onClose?: () => void,
|
|
t: TFunction,
|
|
};
|
|
|
|
@observer
|
|
class CollectionMenu extends React.Component<Props> {
|
|
file: ?HTMLInputElement;
|
|
@observable showCollectionMembers = false;
|
|
@observable showCollectionEdit = false;
|
|
@observable showCollectionDelete = false;
|
|
@observable showCollectionExport = false;
|
|
|
|
onNewDocument = (ev: SyntheticEvent<>) => {
|
|
ev.preventDefault();
|
|
const { collection } = this.props;
|
|
this.props.history.push(newDocumentUrl(collection.id));
|
|
};
|
|
|
|
onImportDocument = (ev: SyntheticEvent<>) => {
|
|
ev.preventDefault();
|
|
ev.stopPropagation();
|
|
|
|
// simulate a click on the file upload input element
|
|
if (this.file) this.file.click();
|
|
};
|
|
|
|
onFilePicked = async (ev: SyntheticEvent<>) => {
|
|
const files = getDataTransferFiles(ev);
|
|
|
|
try {
|
|
const file = files[0];
|
|
const document = await this.props.documents.import(
|
|
file,
|
|
null,
|
|
this.props.collection.id,
|
|
{ publish: true }
|
|
);
|
|
this.props.history.push(document.url);
|
|
} catch (err) {
|
|
this.props.ui.showToast(err.message);
|
|
}
|
|
};
|
|
|
|
handleChangeSort = (field: string) => {
|
|
return this.props.collection.save({
|
|
sort: {
|
|
field,
|
|
direction: "asc",
|
|
},
|
|
});
|
|
};
|
|
|
|
handleEditCollectionOpen = (ev: SyntheticEvent<>) => {
|
|
ev.preventDefault();
|
|
this.showCollectionEdit = true;
|
|
};
|
|
|
|
handleEditCollectionClose = () => {
|
|
this.showCollectionEdit = false;
|
|
};
|
|
|
|
handleDeleteCollectionOpen = (ev: SyntheticEvent<>) => {
|
|
ev.preventDefault();
|
|
this.showCollectionDelete = true;
|
|
};
|
|
|
|
handleDeleteCollectionClose = () => {
|
|
this.showCollectionDelete = false;
|
|
};
|
|
|
|
handleExportCollectionOpen = (ev: SyntheticEvent<>) => {
|
|
ev.preventDefault();
|
|
this.showCollectionExport = true;
|
|
};
|
|
|
|
handleExportCollectionClose = () => {
|
|
this.showCollectionExport = false;
|
|
};
|
|
|
|
handleMembersModalOpen = (ev: SyntheticEvent<>) => {
|
|
ev.preventDefault();
|
|
this.showCollectionMembers = true;
|
|
};
|
|
|
|
handleMembersModalClose = () => {
|
|
this.showCollectionMembers = false;
|
|
};
|
|
|
|
render() {
|
|
const {
|
|
policies,
|
|
documents,
|
|
collection,
|
|
position,
|
|
showSort,
|
|
onOpen,
|
|
onClose,
|
|
t,
|
|
} = this.props;
|
|
const can = policies.abilities(collection.id);
|
|
|
|
return (
|
|
<>
|
|
<VisuallyHidden>
|
|
<input
|
|
type="file"
|
|
ref={(ref) => (this.file = ref)}
|
|
onChange={this.onFilePicked}
|
|
onClick={(ev) => ev.stopPropagation()}
|
|
accept={documents.importFileTypes.join(", ")}
|
|
/>
|
|
</VisuallyHidden>
|
|
|
|
<Modal
|
|
title={t("Collection permissions")}
|
|
onRequestClose={this.handleMembersModalClose}
|
|
isOpen={this.showCollectionMembers}
|
|
>
|
|
<CollectionMembers
|
|
collection={collection}
|
|
onSubmit={this.handleMembersModalClose}
|
|
handleEditCollectionOpen={this.handleEditCollectionOpen}
|
|
onEdit={this.handleEditCollectionOpen}
|
|
/>
|
|
</Modal>
|
|
<DropdownMenu onOpen={onOpen} onClose={onClose} position={position}>
|
|
<DropdownMenuItems
|
|
items={[
|
|
{
|
|
title: t("New document"),
|
|
visible: can.update,
|
|
onClick: this.onNewDocument,
|
|
},
|
|
{
|
|
title: t("Import document"),
|
|
visible: can.update,
|
|
onClick: this.onImportDocument,
|
|
},
|
|
{
|
|
type: "separator",
|
|
},
|
|
{
|
|
title: `${t("Edit")}…`,
|
|
visible: can.update,
|
|
onClick: this.handleEditCollectionOpen,
|
|
},
|
|
{
|
|
title: `${t("Permissions")}…`,
|
|
visible: can.update,
|
|
onClick: this.handleMembersModalOpen,
|
|
},
|
|
{
|
|
title: `${t("Export")}…`,
|
|
visible: !!(collection && can.export),
|
|
onClick: this.handleExportCollectionOpen,
|
|
},
|
|
{
|
|
type: "separator",
|
|
},
|
|
{
|
|
title: t("Sort in sidebar"),
|
|
visible: can.update && showSort,
|
|
hover: true,
|
|
style: {
|
|
left: 170,
|
|
position: "relative",
|
|
top: -40,
|
|
},
|
|
items: [
|
|
{
|
|
title: t("Alphabetical"),
|
|
onClick: () => this.handleChangeSort("title"),
|
|
selected: collection.sort.field === "title",
|
|
},
|
|
{
|
|
title: t("Manual sort"),
|
|
onClick: () => this.handleChangeSort("index"),
|
|
selected: collection.sort.field === "index",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: "separator",
|
|
},
|
|
{
|
|
title: `${t("Delete")}…`,
|
|
visible: !!(collection && can.delete),
|
|
onClick: this.handleDeleteCollectionOpen,
|
|
},
|
|
]}
|
|
/>
|
|
</DropdownMenu>
|
|
<Modal
|
|
title={t("Edit collection")}
|
|
isOpen={this.showCollectionEdit}
|
|
onRequestClose={this.handleEditCollectionClose}
|
|
>
|
|
<CollectionEdit
|
|
onSubmit={this.handleEditCollectionClose}
|
|
collection={collection}
|
|
/>
|
|
</Modal>
|
|
<Modal
|
|
title={t("Delete collection")}
|
|
isOpen={this.showCollectionDelete}
|
|
onRequestClose={this.handleDeleteCollectionClose}
|
|
>
|
|
<CollectionDelete
|
|
onSubmit={this.handleDeleteCollectionClose}
|
|
collection={collection}
|
|
/>
|
|
</Modal>
|
|
<Modal
|
|
title={t("Export collection")}
|
|
isOpen={this.showCollectionExport}
|
|
onRequestClose={this.handleExportCollectionClose}
|
|
>
|
|
<CollectionExport
|
|
onSubmit={this.handleExportCollectionClose}
|
|
collection={collection}
|
|
/>
|
|
</Modal>
|
|
</>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default withTranslation()<CollectionMenu>(
|
|
inject("ui", "documents", "policies")(withRouter(CollectionMenu))
|
|
);
|