You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
2.1 KiB
TypeScript
93 lines
2.1 KiB
TypeScript
import React, { forwardRef, useState } from "react";
|
|
import clsx from "clsx";
|
|
|
|
import "./FilledButton.scss";
|
|
import { AbortError } from "../errors";
|
|
import Spinner from "./Spinner";
|
|
import { isPromiseLike } from "../utils";
|
|
|
|
export type ButtonVariant = "filled" | "outlined" | "icon";
|
|
export type ButtonColor = "primary" | "danger" | "warning" | "muted";
|
|
export type ButtonSize = "medium" | "large";
|
|
|
|
export type FilledButtonProps = {
|
|
label: string;
|
|
|
|
children?: React.ReactNode;
|
|
onClick?: (event: React.MouseEvent) => void;
|
|
|
|
variant?: ButtonVariant;
|
|
color?: ButtonColor;
|
|
size?: ButtonSize;
|
|
className?: string;
|
|
fullWidth?: boolean;
|
|
|
|
icon?: React.ReactNode;
|
|
};
|
|
|
|
export const FilledButton = forwardRef<HTMLButtonElement, FilledButtonProps>(
|
|
(
|
|
{
|
|
children,
|
|
icon,
|
|
onClick,
|
|
label,
|
|
variant = "filled",
|
|
color = "primary",
|
|
size = "medium",
|
|
fullWidth,
|
|
className,
|
|
},
|
|
ref,
|
|
) => {
|
|
const [isLoading, setIsLoading] = useState(false);
|
|
|
|
const _onClick = async (event: React.MouseEvent) => {
|
|
const ret = onClick?.(event);
|
|
|
|
if (isPromiseLike(ret)) {
|
|
try {
|
|
setIsLoading(true);
|
|
await ret;
|
|
} catch (error: any) {
|
|
if (!(error instanceof AbortError)) {
|
|
throw error;
|
|
} else {
|
|
console.warn(error);
|
|
}
|
|
} finally {
|
|
setIsLoading(false);
|
|
}
|
|
}
|
|
};
|
|
|
|
return (
|
|
<button
|
|
className={clsx(
|
|
"ExcButton",
|
|
`ExcButton--color-${color}`,
|
|
`ExcButton--variant-${variant}`,
|
|
`ExcButton--size-${size}`,
|
|
{ "ExcButton--fullWidth": fullWidth },
|
|
className,
|
|
)}
|
|
onClick={_onClick}
|
|
type="button"
|
|
aria-label={label}
|
|
ref={ref}
|
|
disabled={isLoading}
|
|
>
|
|
<div className="ExcButton__contents">
|
|
{isLoading && <Spinner />}
|
|
{icon && (
|
|
<div className="ExcButton__icon" aria-hidden>
|
|
{icon}
|
|
</div>
|
|
)}
|
|
{variant !== "icon" && (children ?? label)}
|
|
</div>
|
|
</button>
|
|
);
|
|
},
|
|
);
|