import { sectionNames } from "@dashboard/intl";
import { asSortParams } from "@dashboard/utils/sort";
import { parse as parseQs } from "qs";
import React from "react";
import { useIntl } from "react-intl";
import { Route, RouteComponentProps, Switch } from "react-router-dom";
import { WindowTitle } from "../components/WindowTitle";
import {
orderDraftListPath,
OrderDraftListUrlQueryParams,
OrderDraftListUrlSortField,
orderFulfillPath,
OrderFulfillUrlQueryParams,
orderGrantRefundEditPath,
orderGrantRefundPath,
orderListPath,
OrderListUrlQueryParams,
OrderListUrlSortField,
orderPath,
orderPaymentRefundPath,
orderReturnPath,
orderSendRefundPath,
orderSettingsPath,
OrderUrlQueryParams,
} from "./urls";
import OrderDetailsComponent from "./views/OrderDetails";
import OrderDraftListComponent from "./views/OrderDraftList";
import OrderGrantRefundEditComponent from "./views/OrderEditGrantRefund";
import OrderFulfillComponent from "./views/OrderFulfill";
import OrderGrantRefundComponent from "./views/OrderGrantRefund";
import OrderListComponent from "./views/OrderList";
import OrderRefundComponent from "./views/OrderRefund";
import OrderReturnComponent from "./views/OrderReturn";
import OrderSendRefundComponent from "./views/OrderSendRefund";
import OrderSettings from "./views/OrderSettings";
const OrderList: React.FC<RouteComponentProps<any>> = ({ location }) => {
const qs = parseQs(location.search.substr(1));
const params: OrderListUrlQueryParams = asSortParams(
qs,
OrderListUrlSortField.number,
false,
);
return <OrderListComponent params={params} />;
};
const OrderDraftList: React.FC<RouteComponentProps<any>> = ({ location }) => {
const params: OrderDraftListUrlQueryParams = asSortParams(
OrderDraftListUrlSortField.number,
return <OrderDraftListComponent params={params} />;
const OrderDetails: React.FC<RouteComponentProps<any>> = ({
location,
match,
}) => {
const params: OrderUrlQueryParams = qs;
const id = match.params.id;
return <OrderDetailsComponent id={decodeURIComponent(id)} params={params} />;
const OrderFulfill: React.FC<RouteComponentProps<any>> = ({
const params: OrderFulfillUrlQueryParams = qs;
return (
<OrderFulfillComponent
orderId={decodeURIComponent(match.params.id)}
params={params}
/>
const OrderPaymentRefund: React.FC<RouteComponentProps<any>> = ({ match }) => (
<OrderRefundComponent orderId={decodeURIComponent(match.params.id)} />
const OrderSendRefund: React.FC<RouteComponentProps<any>> = ({ match }) => (
<OrderSendRefundComponent orderId={decodeURIComponent(match.params.id)} />
const OrderReturn: React.FC<RouteComponentProps<any>> = ({ match }) => (
<OrderReturnComponent orderId={decodeURIComponent(match.params.id)} />
const OrderGrantRefund: React.FC<RouteComponentProps<any>> = ({ match }) => (
<OrderGrantRefundComponent orderId={decodeURIComponent(match.params.id)} />
const OrderGrantRefundEdit: React.FC<RouteComponentProps<any>> = ({
}) => (
<OrderGrantRefundEditComponent
orderId={decodeURIComponent(match.params.orderId)}
grantRefundId={decodeURIComponent(match.params.refundId)}
const Component = () => {
const intl = useIntl();
<>
<WindowTitle title={intl.formatMessage(sectionNames.orders)} />
<Switch>
<Route exact path={orderSettingsPath} component={OrderSettings} />
<Route exact path={orderDraftListPath} component={OrderDraftList} />
<Route exact path={orderListPath} component={OrderList} />
<Route path={orderFulfillPath(":id")} component={OrderFulfill} />
<Route path={orderReturnPath(":id")} component={OrderReturn} />
<Route
path={orderPaymentRefundPath(":id")}
component={OrderPaymentRefund}
<Route path={orderSendRefundPath(":id")} component={OrderSendRefund} />
path={orderGrantRefundEditPath(":orderId", ":refundId")}
component={OrderGrantRefundEdit}
path={orderGrantRefundPath(":id")}
component={OrderGrantRefund}
<Route path={orderPath(":id")} component={OrderDetails} />
</Switch>
</>
export default Component;