2022-04-14 21:25:24 +00:00
|
|
|
import { ChevronDownIcon, DotsHorizontalIcon } from "@heroicons/react/solid";
|
2022-03-13 22:09:39 +00:00
|
|
|
import React, { FC } from "react";
|
2021-09-29 21:33:18 +00:00
|
|
|
|
2022-03-16 23:36:43 +00:00
|
|
|
import Button from "@calcom/ui/Button";
|
2022-03-16 19:55:18 +00:00
|
|
|
import Dropdown, { DropdownMenuTrigger, DropdownMenuContent, DropdownMenuItem } from "@calcom/ui/Dropdown";
|
|
|
|
|
2021-09-29 21:33:18 +00:00
|
|
|
import { SVGComponent } from "@lib/types/SVGComponent";
|
|
|
|
|
2021-10-12 13:11:33 +00:00
|
|
|
export type ActionType = {
|
2021-09-29 21:33:18 +00:00
|
|
|
id: string;
|
2022-04-14 21:25:24 +00:00
|
|
|
icon?: SVGComponent;
|
2021-09-29 21:33:18 +00:00
|
|
|
label: string;
|
|
|
|
disabled?: boolean;
|
2021-09-30 10:46:39 +00:00
|
|
|
color?: "primary" | "secondary";
|
2022-04-14 21:25:24 +00:00
|
|
|
} & ({ href?: never; onClick: () => any } | { href?: string; onClick?: never }) & {
|
|
|
|
actions?: ActionType[];
|
|
|
|
};
|
2021-09-29 21:33:18 +00:00
|
|
|
|
|
|
|
interface Props {
|
|
|
|
actions: ActionType[];
|
|
|
|
}
|
|
|
|
|
2022-04-14 21:25:24 +00:00
|
|
|
const DropdownActions = ({ actions, actionTrigger }: { actions: ActionType[]; actionTrigger?: any }) => {
|
|
|
|
return (
|
|
|
|
<Dropdown>
|
|
|
|
{!actionTrigger ? (
|
|
|
|
<DropdownMenuTrigger className="h-[38px] w-[38px] cursor-pointer rounded-sm border border-transparent text-neutral-500 hover:border-gray-300 hover:text-neutral-900">
|
|
|
|
<DotsHorizontalIcon className="h-5 w-5 group-hover:text-gray-800" />
|
|
|
|
</DropdownMenuTrigger>
|
|
|
|
) : (
|
|
|
|
<DropdownMenuTrigger asChild>{actionTrigger}</DropdownMenuTrigger>
|
|
|
|
)}
|
|
|
|
<DropdownMenuContent portalled>
|
|
|
|
{actions.map((action) => (
|
|
|
|
<DropdownMenuItem key={action.id} className="focus-visible:outline-none">
|
|
|
|
<Button
|
|
|
|
type="button"
|
|
|
|
size="sm"
|
|
|
|
color="minimal"
|
|
|
|
className="w-full rounded-none font-normal"
|
|
|
|
href={action.href}
|
|
|
|
StartIcon={action.icon}
|
|
|
|
onClick={action.onClick}
|
|
|
|
data-testid={action.id}>
|
|
|
|
{action.label}
|
|
|
|
</Button>
|
|
|
|
</DropdownMenuItem>
|
|
|
|
))}
|
|
|
|
</DropdownMenuContent>
|
|
|
|
</Dropdown>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2021-09-29 21:33:18 +00:00
|
|
|
const TableActions: FC<Props> = ({ actions }) => {
|
2022-04-17 15:37:16 +00:00
|
|
|
const mobileActions = actions.flatMap((action) => {
|
|
|
|
if (action.actions) {
|
|
|
|
return action.actions;
|
|
|
|
}
|
|
|
|
return action;
|
|
|
|
});
|
2021-09-29 21:33:18 +00:00
|
|
|
return (
|
|
|
|
<>
|
2022-02-09 00:05:13 +00:00
|
|
|
<div className="hidden space-x-2 rtl:space-x-reverse lg:block">
|
2022-04-14 21:25:24 +00:00
|
|
|
{actions.map((action) => {
|
|
|
|
const button = (
|
|
|
|
<Button
|
|
|
|
key={action.id}
|
|
|
|
data-testid={action.id}
|
|
|
|
href={action.href}
|
|
|
|
onClick={action.onClick}
|
|
|
|
StartIcon={action.icon}
|
|
|
|
{...(action?.actions ? { EndIcon: ChevronDownIcon } : null)}
|
|
|
|
disabled={action.disabled}
|
|
|
|
color={action.color || "secondary"}>
|
|
|
|
{action.label}
|
|
|
|
</Button>
|
|
|
|
);
|
|
|
|
if (!action.actions) {
|
|
|
|
return button;
|
|
|
|
}
|
|
|
|
return <DropdownActions key={action.id} actions={action.actions} actionTrigger={button} />;
|
|
|
|
})}
|
2021-09-29 21:33:18 +00:00
|
|
|
</div>
|
2022-03-13 22:09:39 +00:00
|
|
|
<div className="inline-block text-left lg:hidden">
|
2022-04-17 15:37:16 +00:00
|
|
|
<DropdownActions actions={mobileActions} />
|
2022-03-13 22:09:39 +00:00
|
|
|
</div>
|
2021-09-29 21:33:18 +00:00
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default TableActions;
|