
* Update to new design theme (#1631) * Update macaw to 0.3.0 (#1623) * Update macaw to 0.3 * Use proper pagination component * Fix type errors * Remove leftover import * Remove variant and color from confirm button * Remove alias * Update macaw * Fix button type * Random fixes (#1633) * Improve layout components * Use colored svgs * Minor fixes * Fix autocomplete loaders * Fix padding * Fix button variant * Remove codegen file * Fixes after bumping macaw to 0.3 part 2 (#1638) * Fix various visual bugs * Fix type errors * Bump macaw * Random fixes part 3 (#1647) * wip * Fix mismatched paddings * Fix actions container padding * Put story in the right directory * Fix shipping zone picker * Fix minor visual bugs * Remove unused imports * Move styles to separate file * Random fixes part 4 (#1641) * Fix various visual bugs * Fix type errors * Fix last table item padding * Add outline on hover * Fix spaces * Fix spaces * Remove dead code * Fix elevation * Remove dead code * Fix shadows * Add outline to expand button * Fix spacing * Fix spacings * Fix selectable tables hover * Use proper delete icon * Fix ConfirmButtonTransitionState imports * Update src/apps/components/CustomApps/CustomApps.tsx Co-authored-by: Wojciech Mista <wojciech.mista@saleor.io> Co-authored-by: Wojciech Mista <wojciech.mista@saleor.io> * Rework error page (#1670) * Remake error page * Fix types * Update error id styles * Fix types * Login page rework (#1703) * Rework login page * Remove outline * Fix logo and footer placement * Sort imports * Random fixes part 5 (#1669) * Fix text color in dark mode * Update password reset pages (#1714) * Update password reset pages * Update src/auth/components/ResetPasswordPage/ResetPasswordPage.tsx Co-authored-by: Jakub Majorek <majorek.jakub@gmail.com> Co-authored-by: Jakub Majorek <majorek.jakub@gmail.com> * Fix collection page * Update dark mode logo * Bring back "create app" button * Fix spacings * Fix selects * Fix login e2e test * Fix not found page displaying * Update selector * Add missing package * Let dropdown overflow through card * Fix scroll * Fix scroll * Fix overflow on grid element * Fix e2e tests * Fix data-test-id * Update snapshots * Update messages * Update macaw * Update snapshots * Use stable macaw version Co-authored-by: Wojciech Mista <wojciech.mista@saleor.io> Co-authored-by: Jakub Majorek <majorek.jakub@gmail.com> * Update to new design theme (#1631) * Update macaw to 0.3.0 (#1623) * Update macaw to 0.3 * Use proper pagination component * Fix type errors * Remove leftover import * Remove variant and color from confirm button * Remove alias * Update macaw * Fix button type * Random fixes (#1633) * Improve layout components * Use colored svgs * Minor fixes * Fix autocomplete loaders * Fix padding * Fix button variant * Remove codegen file * Fixes after bumping macaw to 0.3 part 2 (#1638) * Fix various visual bugs * Fix type errors * Bump macaw * Random fixes part 3 (#1647) * wip * Fix mismatched paddings * Fix actions container padding * Put story in the right directory * Fix shipping zone picker * Fix minor visual bugs * Remove unused imports * Move styles to separate file * Random fixes part 4 (#1641) * Fix various visual bugs * Fix type errors * Fix last table item padding * Add outline on hover * Fix spaces * Fix spaces * Remove dead code * Fix elevation * Remove dead code * Fix shadows * Add outline to expand button * Fix spacing * Fix spacings * Fix selectable tables hover * Use proper delete icon * Fix ConfirmButtonTransitionState imports * Update src/apps/components/CustomApps/CustomApps.tsx Co-authored-by: Wojciech Mista <wojciech.mista@saleor.io> Co-authored-by: Wojciech Mista <wojciech.mista@saleor.io> * Rework error page (#1670) * Remake error page * Fix types * Update error id styles * Fix types * Login page rework (#1703) * Rework login page * Remove outline * Fix logo and footer placement * Sort imports * Random fixes part 5 (#1669) * Fix text color in dark mode * Update password reset pages (#1714) * Update password reset pages * Update src/auth/components/ResetPasswordPage/ResetPasswordPage.tsx Co-authored-by: Jakub Majorek <majorek.jakub@gmail.com> Co-authored-by: Jakub Majorek <majorek.jakub@gmail.com> * Fix collection page * Update dark mode logo * Bring back "create app" button * Fix spacings * Fix selects * Fix login e2e test * Fix not found page displaying * Update selector * Add missing package * Let dropdown overflow through card * Fix scroll * Fix scroll * Fix overflow on grid element * Fix e2e tests * Fix data-test-id * Update snapshots * Update messages * Update macaw * Update snapshots * Use stable macaw version Co-authored-by: Wojciech Mista <wojciech.mista@saleor.io> Co-authored-by: Jakub Majorek <majorek.jakub@gmail.com> * Fix visual bugs and artifacts * Fix dropdown menus being clipped (#1762) * wip * Fix clipped select menus * Remove unused import * Fix spacing * Fix tests * Fix select content appearing under dialogs (#1777) * Fix type errors * Fix bulk delete button placement * Fix filter arrow buttons * Fix messages * Remove backling from pages list * Move status above events * Update messages and snapshots Co-authored-by: Wojciech Mista <wojciech.mista@saleor.io> Co-authored-by: Jakub Majorek <majorek.jakub@gmail.com>
134 lines
3.8 KiB
TypeScript
134 lines
3.8 KiB
TypeScript
import { Card } from "@material-ui/core";
|
|
import CardMenu from "@saleor/components/CardMenu";
|
|
import Container from "@saleor/components/Container";
|
|
import FilterBar from "@saleor/components/FilterBar";
|
|
import PageHeader from "@saleor/components/PageHeader";
|
|
import { RefreshLimits_shop_limits } from "@saleor/components/Shop/types/RefreshLimits";
|
|
import { sectionNames } from "@saleor/intl";
|
|
import { Button, makeStyles } from "@saleor/macaw-ui";
|
|
import { OrderListUrlSortField } from "@saleor/orders/urls";
|
|
import { FilterPageProps, PageListProps, SortPage } from "@saleor/types";
|
|
import { hasLimits, isLimitReached } from "@saleor/utils/limits";
|
|
import React from "react";
|
|
import { FormattedMessage, useIntl } from "react-intl";
|
|
|
|
import { OrderList_orders_edges_node } from "../../types/OrderList";
|
|
import OrderLimitReached from "../OrderLimitReached";
|
|
import OrderList from "../OrderList";
|
|
import {
|
|
createFilterStructure,
|
|
OrderFilterKeys,
|
|
OrderListFilterOpts
|
|
} from "./filters";
|
|
|
|
export interface OrderListPageProps
|
|
extends PageListProps,
|
|
FilterPageProps<OrderFilterKeys, OrderListFilterOpts>,
|
|
SortPage<OrderListUrlSortField> {
|
|
limits: RefreshLimits_shop_limits;
|
|
orders: OrderList_orders_edges_node[];
|
|
onSettingsOpen: () => void;
|
|
}
|
|
|
|
const useStyles = makeStyles(
|
|
theme => ({
|
|
settings: {
|
|
marginRight: theme.spacing(2)
|
|
}
|
|
}),
|
|
{ name: "OrderListPage" }
|
|
);
|
|
|
|
const OrderListPage: React.FC<OrderListPageProps> = ({
|
|
currentTab,
|
|
initialSearch,
|
|
filterOpts,
|
|
limits,
|
|
tabs,
|
|
onAdd,
|
|
onAll,
|
|
onSearchChange,
|
|
onSettingsOpen,
|
|
onFilterChange,
|
|
onTabChange,
|
|
onTabDelete,
|
|
onTabSave,
|
|
...listProps
|
|
}) => {
|
|
const intl = useIntl();
|
|
const classes = useStyles({});
|
|
const filterStructure = createFilterStructure(intl, filterOpts);
|
|
const limitsReached = isLimitReached(limits, "orders");
|
|
|
|
return (
|
|
<Container>
|
|
<PageHeader
|
|
title={intl.formatMessage(sectionNames.orders)}
|
|
limitText={
|
|
hasLimits(limits, "orders") &&
|
|
intl.formatMessage(
|
|
{
|
|
defaultMessage: "{count}/{max} orders",
|
|
description: "placed order counter"
|
|
},
|
|
{
|
|
count: limits.currentUsage.orders,
|
|
max: limits.allowedUsage.orders
|
|
}
|
|
)
|
|
}
|
|
>
|
|
{!!onSettingsOpen && (
|
|
<CardMenu
|
|
className={classes.settings}
|
|
menuItems={[
|
|
{
|
|
label: intl.formatMessage({
|
|
defaultMessage: "Order Settings",
|
|
description: "button"
|
|
}),
|
|
onSelect: onSettingsOpen
|
|
}
|
|
]}
|
|
/>
|
|
)}
|
|
<Button
|
|
disabled={limitsReached}
|
|
variant="primary"
|
|
onClick={onAdd}
|
|
data-test-id="create-order-button"
|
|
>
|
|
<FormattedMessage
|
|
defaultMessage="Create order"
|
|
description="button"
|
|
/>
|
|
</Button>
|
|
</PageHeader>
|
|
{limitsReached && <OrderLimitReached />}
|
|
<Card>
|
|
<FilterBar
|
|
currentTab={currentTab}
|
|
initialSearch={initialSearch}
|
|
onAll={onAll}
|
|
onFilterChange={onFilterChange}
|
|
onSearchChange={onSearchChange}
|
|
onTabChange={onTabChange}
|
|
onTabDelete={onTabDelete}
|
|
onTabSave={onTabSave}
|
|
tabs={tabs}
|
|
allTabLabel={intl.formatMessage({
|
|
defaultMessage: "All Orders",
|
|
description: "tab name"
|
|
})}
|
|
filterStructure={filterStructure}
|
|
searchPlaceholder={intl.formatMessage({
|
|
defaultMessage: "Search Orders..."
|
|
})}
|
|
/>
|
|
<OrderList {...listProps} />
|
|
</Card>
|
|
</Container>
|
|
);
|
|
};
|
|
OrderListPage.displayName = "OrderListPage";
|
|
export default OrderListPage;
|