1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-23 15:29:42 +02:00

feat(ui): add icon to button [EE-3662] (#7204)

This commit is contained in:
Chaim Lev-Ari 2022-07-06 17:05:00 +03:00 committed by GitHub
parent b4acbfc9e1
commit 88c4a43a19
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 104 additions and 27 deletions

View file

@ -1,8 +1,16 @@
import { AriaAttributes, MouseEventHandler, PropsWithChildren } from 'react';
import {
AriaAttributes,
ComponentType,
MouseEventHandler,
PropsWithChildren,
ReactNode,
} from 'react';
import clsx from 'clsx';
import { AutomationTestingProps } from '@/types';
import { Icon } from '@@/Icon';
type Type = 'submit' | 'button' | 'reset';
type Color =
| 'default'
@ -17,6 +25,9 @@ type Color =
type Size = 'xsmall' | 'small' | 'medium' | 'large';
export interface Props extends AriaAttributes, AutomationTestingProps {
icon?: ReactNode | ComponentType<unknown>;
featherIcon?: boolean;
color?: Color;
size?: Size;
disabled?: boolean;
@ -34,7 +45,10 @@ export function Button({
className,
onClick,
title,
icon,
featherIcon,
children,
...ariaProps
}: PropsWithChildren<Props>) {
return (
@ -42,17 +56,46 @@ export function Button({
/* eslint-disable-next-line react/button-has-type */
type={type}
disabled={disabled}
className={clsx('btn', `btn-${color}`, sizeClass(size), className)}
className={clsx(
{
'opacity-60': disabled,
},
`btn btn-${color}`,
sizeClass(size),
className
)}
onClick={onClick}
title={title}
// eslint-disable-next-line react/jsx-props-no-spreading
{...ariaProps}
>
{icon && (
<Icon
icon={icon}
size={getIconSize(size)}
className="inline-flex"
feather={featherIcon}
/>
)}
{children}
</button>
);
}
function getIconSize(size: Size) {
switch (size) {
case 'xsmall':
return 'xs';
case 'medium':
return 'md';
case 'large':
return 'lg';
case 'small':
default:
return 'sm';
}
}
function sizeClass(size?: Size) {
switch (size) {
case 'large':