saleor-dashboard/src/collections/views/CollectionList/CollectionList.tsx

386 lines
14 KiB
TypeScript
Raw Normal View History

2019-06-19 14:40:52 +00:00
import Button from "@material-ui/core/Button";
import DialogContentText from "@material-ui/core/DialogContentText";
import IconButton from "@material-ui/core/IconButton";
import DeleteIcon from "@material-ui/icons/Delete";
2019-08-09 10:26:22 +00:00
import React from "react";
import { FormattedMessage, useIntl } from "react-intl";
2019-06-19 14:40:52 +00:00
import ActionDialog from "@saleor/components/ActionDialog";
2019-09-11 14:00:02 +00:00
import DeleteFilterTabDialog from "@saleor/components/DeleteFilterTabDialog";
import SaveFilterTabDialog, {
SaveFilterTabDialogFormData
} from "@saleor/components/SaveFilterTabDialog";
2019-06-19 14:40:52 +00:00
import useBulkActions from "@saleor/hooks/useBulkActions";
2019-08-09 11:14:35 +00:00
import useListSettings from "@saleor/hooks/useListSettings";
2019-06-19 14:40:52 +00:00
import useNavigator from "@saleor/hooks/useNavigator";
import useNotifier from "@saleor/hooks/useNotifier";
import usePaginator, {
createPaginationState
} from "@saleor/hooks/usePaginator";
import { commonMessages } from "@saleor/intl";
2019-08-09 11:14:35 +00:00
import { getMutationState, maybe } from "@saleor/misc";
import { ListViews } from "@saleor/types";
2019-09-11 14:00:02 +00:00
import CollectionListPage from "../../components/CollectionListPage/CollectionListPage";
2019-06-19 14:40:52 +00:00
import {
TypedCollectionBulkDelete,
TypedCollectionBulkPublish
2019-09-11 14:00:02 +00:00
} from "../../mutations";
import { TypedCollectionListQuery } from "../../queries";
import { CollectionBulkDelete } from "../../types/CollectionBulkDelete";
import { CollectionBulkPublish } from "../../types/CollectionBulkPublish";
2019-06-19 14:40:52 +00:00
import {
collectionAddUrl,
collectionListUrl,
CollectionListUrlDialog,
2019-09-11 14:28:42 +00:00
CollectionListUrlFilters,
2019-06-19 14:40:52 +00:00
CollectionListUrlQueryParams,
collectionUrl
2019-09-11 14:00:02 +00:00
} from "../../urls";
import {
areFiltersApplied,
deleteFilterTab,
getActiveFilters,
getFilterTabs,
getFilterVariables,
saveFilterTab
} from "./filter";
2019-06-19 14:40:52 +00:00
interface CollectionListProps {
params: CollectionListUrlQueryParams;
}
export const CollectionList: React.FC<CollectionListProps> = ({ params }) => {
2019-06-19 14:40:52 +00:00
const navigate = useNavigator();
const notify = useNotifier();
const paginate = usePaginator();
const { isSelected, listElements, reset, toggle, toggleAll } = useBulkActions(
params.ids
);
2019-08-09 11:14:35 +00:00
const { updateListSettings, settings } = useListSettings(
ListViews.COLLECTION_LIST
);
const intl = useIntl();
2019-06-19 14:40:52 +00:00
2019-09-11 14:00:02 +00:00
const tabs = getFilterTabs();
const currentTab =
params.activeTab === undefined
? areFiltersApplied(params)
? tabs.length + 1
: 0
: parseInt(params.activeTab, 0);
2019-09-11 14:28:42 +00:00
const changeFilterField = (filter: CollectionListUrlFilters) => {
2019-09-11 14:00:02 +00:00
reset();
navigate(
collectionListUrl({
...getActiveFilters(params),
...filter,
activeTab: undefined
})
);
};
2019-06-19 14:40:52 +00:00
const closeModal = () =>
navigate(
collectionListUrl({
...params,
action: undefined,
ids: undefined
}),
true
);
2019-09-11 14:00:02 +00:00
const openModal = (action: CollectionListUrlDialog, ids?: string[]) =>
2019-06-19 14:40:52 +00:00
navigate(
collectionListUrl({
2019-09-11 14:00:02 +00:00
...params,
2019-06-19 14:40:52 +00:00
action,
ids
})
);
2019-09-11 14:00:02 +00:00
const handleTabChange = (tab: number) => {
reset();
navigate(
collectionListUrl({
activeTab: tab.toString(),
...getFilterTabs()[tab - 1].data
})
);
};
const handleTabDelete = () => {
deleteFilterTab(currentTab);
reset();
navigate(collectionListUrl());
};
const handleTabSave = (data: SaveFilterTabDialogFormData) => {
saveFilterTab(data.name, getActiveFilters(params));
handleTabChange(tabs.length + 1);
};
2019-08-09 11:14:35 +00:00
const paginationState = createPaginationState(settings.rowNumber, params);
2019-09-11 14:00:02 +00:00
const queryVariables = React.useMemo(
() => ({
...paginationState,
filter: getFilterVariables(params)
}),
[params]
);
2019-06-19 14:40:52 +00:00
return (
2019-09-11 14:00:02 +00:00
<TypedCollectionListQuery displayLoader variables={queryVariables}>
2019-06-19 14:40:52 +00:00
{({ data, loading, refetch }) => {
const { loadNextPage, loadPreviousPage, pageInfo } = paginate(
maybe(() => data.collections.pageInfo),
paginationState,
params
);
const handleCollectionBulkDelete = (data: CollectionBulkDelete) => {
if (data.collectionBulkDelete.errors.length === 0) {
notify({
text: intl.formatMessage(commonMessages.savedChanges)
2019-06-19 14:40:52 +00:00
});
refetch();
reset();
closeModal();
}
};
const handleCollectionBulkPublish = (data: CollectionBulkPublish) => {
if (data.collectionBulkPublish.errors.length === 0) {
notify({
text: intl.formatMessage(commonMessages.savedChanges)
2019-06-19 14:40:52 +00:00
});
refetch();
reset();
closeModal();
}
};
return (
<TypedCollectionBulkDelete onCompleted={handleCollectionBulkDelete}>
{(collectionBulkDelete, collectionBulkDeleteOpts) => (
<TypedCollectionBulkPublish
onCompleted={handleCollectionBulkPublish}
>
{(collectionBulkPublish, collectionBulkPublishOpts) => {
const bulkDeleteTransitionState = getMutationState(
collectionBulkDeleteOpts.called,
collectionBulkDeleteOpts.loading,
maybe(
() =>
collectionBulkDeleteOpts.data.collectionBulkDelete
.errors
)
);
const bulkPublishTransitionState = getMutationState(
collectionBulkPublishOpts.called,
collectionBulkPublishOpts.loading,
maybe(
() =>
collectionBulkPublishOpts.data.collectionBulkPublish
.errors
)
);
return (
<>
<CollectionListPage
2019-09-11 14:00:02 +00:00
currentTab={currentTab}
initialSearch={params.query || ""}
onSearchChange={query => changeFilterField({ query })}
2019-06-19 14:40:52 +00:00
onAdd={() => navigate(collectionAddUrl)}
2019-09-11 14:00:02 +00:00
onAll={() => navigate(collectionListUrl())}
onTabChange={handleTabChange}
onTabDelete={() => openModal("delete-search")}
onTabSave={() => openModal("save-search")}
tabs={tabs.map(tab => tab.name)}
2019-06-19 14:40:52 +00:00
disabled={loading}
collections={maybe(() =>
data.collections.edges.map(edge => edge.node)
)}
2019-08-09 11:14:35 +00:00
settings={settings}
2019-06-19 14:40:52 +00:00
onNextPage={loadNextPage}
onPreviousPage={loadPreviousPage}
2019-08-09 11:14:35 +00:00
onUpdateListSettings={updateListSettings}
2019-06-19 14:40:52 +00:00
pageInfo={pageInfo}
onRowClick={id => () => navigate(collectionUrl(id))}
toolbar={
<>
<Button
color="primary"
onClick={() =>
openModal("unpublish", listElements)
}
>
<FormattedMessage
defaultMessage="Unpublish"
description="unpublish collections"
/>
2019-06-19 14:40:52 +00:00
</Button>
<Button
color="primary"
onClick={() => openModal("publish", listElements)}
>
<FormattedMessage
defaultMessage="Publish"
description="publish collections"
/>
2019-06-19 14:40:52 +00:00
</Button>
<IconButton
color="primary"
onClick={() => openModal("remove", listElements)}
>
<DeleteIcon />
</IconButton>
</>
}
isChecked={isSelected}
selected={listElements.length}
toggle={toggle}
toggleAll={toggleAll}
/>
<ActionDialog
open={
params.action === "publish" &&
maybe(() => params.ids.length > 0)
}
2019-06-19 14:40:52 +00:00
onClose={closeModal}
confirmButtonState={bulkPublishTransitionState}
onConfirm={() =>
collectionBulkPublish({
variables: {
ids: params.ids,
isPublished: true
}
})
}
variant="default"
title={intl.formatMessage({
defaultMessage: "Publish collections",
2019-08-22 16:19:16 +00:00
description: "dialog title"
})}
2019-06-19 14:40:52 +00:00
>
<DialogContentText>
<FormattedMessage
defaultMessage="Are you sure you want to publish {counter, plural,
one {this collection}
other {{displayQuantity} collections}
}?"
values={{
2019-08-21 12:44:29 +00:00
counter: maybe(() => params.ids.length),
displayQuantity: (
<strong>
{maybe(() => params.ids.length)}
</strong>
)
}}
/>
</DialogContentText>
2019-06-19 14:40:52 +00:00
</ActionDialog>
<ActionDialog
open={
params.action === "unpublish" &&
maybe(() => params.ids.length > 0)
}
2019-06-19 14:40:52 +00:00
onClose={closeModal}
confirmButtonState={bulkPublishTransitionState}
onConfirm={() =>
collectionBulkPublish({
variables: {
ids: params.ids,
isPublished: false
}
})
}
variant="default"
title={intl.formatMessage({
defaultMessage: "Unpublish collections",
2019-08-22 16:19:16 +00:00
description: "dialog title"
})}
2019-06-19 14:40:52 +00:00
>
<DialogContentText>
<FormattedMessage
defaultMessage="Are you sure you want to unpublish {counter, plural,
one {this collection}
other {{displayQuantity} collections}
}?"
values={{
2019-08-21 12:44:29 +00:00
counter: maybe(() => params.ids.length),
displayQuantity: (
<strong>
{maybe(() => params.ids.length)}
</strong>
)
}}
/>
</DialogContentText>
2019-06-19 14:40:52 +00:00
</ActionDialog>
<ActionDialog
open={
params.action === "remove" &&
maybe(() => params.ids.length > 0)
}
2019-06-19 14:40:52 +00:00
onClose={closeModal}
confirmButtonState={bulkDeleteTransitionState}
onConfirm={() =>
collectionBulkDelete({
variables: {
ids: params.ids
}
})
}
variant="delete"
title={intl.formatMessage({
defaultMessage: "Delete collections",
2019-08-22 16:19:16 +00:00
description: "dialog title"
})}
2019-06-19 14:40:52 +00:00
>
<DialogContentText>
<FormattedMessage
defaultMessage="Are you sure you want to delete {counter, plural,
one {this collection}
other {{displayQuantity} collections}
}?"
values={{
2019-08-21 12:44:29 +00:00
counter: maybe(() => params.ids.length),
displayQuantity: (
<strong>
{maybe(() => params.ids.length)}
</strong>
)
}}
/>
</DialogContentText>
2019-06-19 14:40:52 +00:00
</ActionDialog>
2019-09-11 14:00:02 +00:00
<SaveFilterTabDialog
open={params.action === "save-search"}
confirmButtonState="default"
onClose={closeModal}
onSubmit={handleTabSave}
/>
<DeleteFilterTabDialog
open={params.action === "delete-search"}
confirmButtonState="default"
onClose={closeModal}
onSubmit={handleTabDelete}
tabName={maybe(() => tabs[currentTab - 1].name, "...")}
/>
2019-06-19 14:40:52 +00:00
</>
);
}}
</TypedCollectionBulkPublish>
)}
</TypedCollectionBulkDelete>
);
}}
</TypedCollectionListQuery>
);
};
export default CollectionList;