1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/dashboard/client/components/add-remove-buttons/add-remove-buttons.tsx
Sebastian Malton b1ff34879a cleanup Lens repo with tighter linting
Signed-off-by: Sebastian Malton <smalton@mirantis.com>
2020-07-09 17:00:23 -04:00

53 lines
1.3 KiB
TypeScript

import "./add-remove-buttons.scss";
import * as React from "react";
import { cssNames } from "../../utils";
import { Button } from "../button";
import { Icon } from "../icon";
export interface AddRemoveButtonsProps extends React.HTMLAttributes<any> {
onAdd?: () => void;
onRemove?: () => void;
addTooltip?: React.ReactNode;
removeTooltip?: React.ReactNode;
}
export class AddRemoveButtons extends React.PureComponent<AddRemoveButtonsProps> {
renderButtons(): JSX.Element[] {
const { onRemove, onAdd, addTooltip, removeTooltip } = this.props;
const buttons = [
{
onClick: onRemove,
className: "remove-button",
icon: "remove",
tooltip: removeTooltip,
},
{
onClick: onAdd,
className: "add-button",
icon: "add",
tooltip: addTooltip,
},
];
return buttons.map(button => {
if (!button.onClick) {
return null;
}
const { onClick, className, icon, tooltip } = button;
return (
<Button key={icon} big round primary onClick={onClick} className={className} tooltip={tooltip}>
<Icon material={icon}/>
</Button>
);
});
}
render(): JSX.Element {
return (
<div className={cssNames("AddRemoveButtons flex gaps", this.props.className)}>
{this.renderButtons()}
</div>
);
}
}