2021-11-25 02:41:03 -06:00
|
|
|
import { css } from '@emotion/css';
|
2022-04-22 08:33:13 -05:00
|
|
|
import React, { HTMLAttributes } from 'react';
|
|
|
|
|
2021-11-25 02:41:03 -06:00
|
|
|
import { GrafanaTheme2 } from '@grafana/data';
|
|
|
|
import { Icon, IconName, useStyles2 } from '@grafana/ui';
|
|
|
|
|
|
|
|
interface Props extends HTMLAttributes<HTMLButtonElement> {
|
|
|
|
icon: IconName;
|
|
|
|
onClick: () => void;
|
|
|
|
children: React.ReactNode;
|
|
|
|
}
|
|
|
|
|
|
|
|
export const CardButton = React.forwardRef<HTMLButtonElement, Props>(
|
|
|
|
({ icon, children, onClick, ...restProps }, ref) => {
|
|
|
|
const styles = useStyles2(getStyles);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<button {...restProps} className={styles.action} onClick={onClick}>
|
|
|
|
<Icon name={icon} size="xl" />
|
|
|
|
{children}
|
|
|
|
</button>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
CardButton.displayName = 'CardButton';
|
|
|
|
|
|
|
|
const getStyles = (theme: GrafanaTheme2) => {
|
|
|
|
return {
|
|
|
|
action: css`
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
justify-self: center;
|
|
|
|
cursor: pointer;
|
|
|
|
background: ${theme.colors.background.secondary};
|
|
|
|
border-radius: ${theme.shape.borderRadius(1)};
|
|
|
|
color: ${theme.colors.text.primary};
|
|
|
|
border: unset;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: ${theme.colors.emphasize(theme.colors.background.secondary)};
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
};
|
|
|
|
};
|