Files
outline/app/menus/FileOperationMenu.tsx

51 lines
1.3 KiB
TypeScript

import { DownloadIcon, TrashIcon } from "outline-icons";
import * as React from "react";
import { useTranslation } from "react-i18next";
import { useMenuState } from "reakit/Menu";
import ContextMenu from "~/components/ContextMenu";
import OverflowMenuButton from "~/components/ContextMenu/OverflowMenuButton";
import Template from "~/components/ContextMenu/Template";
type Props = {
id: string;
onDelete: (ev: React.SyntheticEvent) => Promise<void>;
};
function FileOperationMenu({ id, onDelete }: Props) {
const { t } = useTranslation();
const menu = useMenuState({
modal: true,
});
return (
<>
<OverflowMenuButton aria-label={t("Show menu")} {...menu} />
<ContextMenu {...menu} aria-label={t("Export options")}>
<Template
{...menu}
items={[
{
type: "link",
title: t("Download"),
icon: <DownloadIcon />,
href: "/api/fileOperations.redirect?id=" + id,
},
{
type: "separator",
},
{
type: "button",
title: t("Delete"),
icon: <TrashIcon />,
dangerous: true,
onClick: onDelete,
},
]}
/>
</ContextMenu>
</>
);
}
export default FileOperationMenu;