
* Require trailing commas * Add trailing commas * Add trailing commas in testUtils dir * Add trailing commas
48 lines
1.5 KiB
TypeScript
48 lines
1.5 KiB
TypeScript
import { Backlink } from "@saleor/components/Backlink";
|
|
import { Button } from "@saleor/components/Button";
|
|
import Container from "@saleor/components/Container";
|
|
import PageHeader from "@saleor/components/PageHeader";
|
|
import { configurationMenuUrl } from "@saleor/configuration";
|
|
import { MenuFragment } from "@saleor/graphql";
|
|
import { sectionNames } from "@saleor/intl";
|
|
import { menuListUrl, MenuListUrlSortField } from "@saleor/navigation/urls";
|
|
import { ListActions, PageListProps, SortPage } from "@saleor/types";
|
|
import React from "react";
|
|
import { FormattedMessage, useIntl } from "react-intl";
|
|
|
|
import MenuList from "../MenuList";
|
|
|
|
export interface MenuListPageProps
|
|
extends PageListProps,
|
|
ListActions,
|
|
SortPage<MenuListUrlSortField> {
|
|
menus: MenuFragment[];
|
|
onDelete: (id: string) => void;
|
|
}
|
|
|
|
const MenuListPage: React.FC<MenuListPageProps> = ({ ...listProps }) => {
|
|
const intl = useIntl();
|
|
const addUrl = menuListUrl({
|
|
action: "add",
|
|
});
|
|
|
|
return (
|
|
<Container>
|
|
<Backlink href={configurationMenuUrl}>
|
|
{intl.formatMessage(sectionNames.configuration)}
|
|
</Backlink>
|
|
<PageHeader title={intl.formatMessage(sectionNames.navigation)}>
|
|
<Button variant="primary" href={addUrl} data-test-id="add-menu">
|
|
<FormattedMessage
|
|
id="JXRYQg"
|
|
defaultMessage="Create Menu"
|
|
description="button"
|
|
/>
|
|
</Button>
|
|
</PageHeader>
|
|
<MenuList {...listProps} />
|
|
</Container>
|
|
);
|
|
};
|
|
MenuListPage.displayName = "MenuListPage";
|
|
export default MenuListPage;
|