@helpwave/hightide
Version:
helpwave's component and theming library
187 lines (183 loc) • 6.12 kB
JavaScript
// src/components/loading-states/LoadingButton.tsx
import clsx3 from "clsx";
// src/components/user-action/Button.tsx
import { forwardRef } from "react";
import clsx from "clsx";
import { jsx, jsxs } from "react/jsx-runtime";
var ButtonColorUtil = {
solid: ["primary", "secondary", "tertiary", "positive", "warning", "negative", "neutral"],
text: ["primary", "negative", "neutral"],
outline: ["primary"]
};
var IconButtonUtil = {
icon: [...ButtonColorUtil.solid, "transparent"]
};
var paddingMapping = {
small: "btn-sm",
medium: "btn-md",
large: "btn-lg"
};
var iconPaddingMapping = {
tiny: "icon-btn-xs",
small: "icon-btn-sm",
medium: "icon-btn-md",
large: "icon-btn-lg"
};
var ButtonUtil = {
paddingMapping,
iconPaddingMapping
};
var SolidButton = forwardRef(function SolidButton2({
children,
color = "primary",
size = "medium",
startIcon,
endIcon,
onClick,
className,
...restProps
}, ref) {
const colorClasses = {
primary: "not-disabled:bg-button-solid-primary-background not-disabled:text-button-solid-primary-text",
secondary: "not-disabled:bg-button-solid-secondary-background not-disabled:text-button-solid-secondary-text",
tertiary: "not-disabled:bg-button-solid-tertiary-background not-disabled:text-button-solid-tertiary-text",
positive: "not-disabled:bg-button-solid-positive-background not-disabled:text-button-solid-positive-text",
warning: "not-disabled:bg-button-solid-warning-background not-disabled:text-button-solid-warning-text",
negative: "not-disabled:bg-button-solid-negative-background not-disabled:text-button-solid-negative-text",
neutral: "not-disabled:bg-button-solid-neutral-background not-disabled:text-button-solid-neutral-text"
}[color];
const iconColorClasses = {
primary: "not-group-disabled:text-button-solid-primary-icon",
secondary: "not-group-disabled:text-button-solid-secondary-icon",
tertiary: "not-group-disabled:text-button-solid-tertiary-icon",
positive: "not-group-disabled:text-button-solid-positive-icon",
warning: "not-group-disabled:text-button-solid-warning-icon",
negative: "not-group-disabled:text-button-solid-negative-icon",
neutral: "not-group-disabled:text-button-solid-neutral-icon"
}[color];
return /* @__PURE__ */ jsxs(
"button",
{
ref,
onClick,
className: clsx(
"group font-semibold",
colorClasses,
"not-disabled:hover:brightness-90",
"disabled:text-disabled-text disabled:bg-disabled-background",
ButtonUtil.paddingMapping[size],
className
),
...restProps,
children: [
startIcon && /* @__PURE__ */ jsx(
"span",
{
className: clsx(
iconColorClasses,
"group-disabled:text-disabled-icon"
),
children: startIcon
}
),
children,
endIcon && /* @__PURE__ */ jsx(
"span",
{
className: clsx(
iconColorClasses,
"group-disabled:text-disabled-icon"
),
children: endIcon
}
)
]
}
);
});
// src/util/noop.ts
var noop = () => void 0;
// src/components/icons-and-geometry/Helpwave.tsx
import { clsx as clsx2 } from "clsx";
import { jsx as jsx2, jsxs as jsxs2 } from "react/jsx-runtime";
var Helpwave = ({
color = "currentColor",
animate = "none",
size = 64,
...props
}) => {
const isLoadingAnimation = animate === "loading";
let svgAnimationKey = "";
if (animate === "pulse") {
svgAnimationKey = "animate-pulse";
} else if (animate === "bounce") {
svgAnimationKey = "animate-bounce";
}
if (size < 0) {
console.error("size cannot be less than 0");
size = 64;
}
return /* @__PURE__ */ jsx2(
"svg",
{
width: size,
height: size,
viewBox: "0 0 888 888",
fill: "none",
strokeLinecap: "round",
strokeWidth: 48,
...props,
children: /* @__PURE__ */ jsxs2("g", { className: clsx2(svgAnimationKey), children: [
/* @__PURE__ */ jsx2(
"path",
{
className: clsx2({ "animate-wave-big-left-up": isLoadingAnimation }),
d: "M144 543.235C144 423.259 232.164 326 340.92 326",
stroke: color,
strokeDasharray: "1000"
}
),
/* @__PURE__ */ jsx2(
"path",
{
className: clsx2({ "animate-wave-big-right-down": isLoadingAnimation }),
d: "M537.84 544.104C429.084 544.104 340.92 446.844 340.92 326.869",
stroke: color,
strokeDasharray: "1000"
}
),
/* @__PURE__ */ jsx2(
"path",
{
className: clsx2({ "animate-wave-small-left-up": isLoadingAnimation }),
d: "M462.223 518.035C462.223 432.133 525.348 362.495 603.217 362.495",
stroke: color,
strokeDasharray: "1000"
}
),
/* @__PURE__ */ jsx2(
"path",
{
className: clsx2({ "animate-wave-small-right-down": isLoadingAnimation }),
d: "M745.001 519.773C666.696 519.773 603.218 450.136 603.218 364.233",
stroke: color,
strokeDasharray: "1000"
}
)
] })
}
);
};
// src/components/loading-states/LoadingButton.tsx
import { jsx as jsx3, jsxs as jsxs3 } from "react/jsx-runtime";
var LoadingButton = ({ isLoading = false, size = "medium", onClick, ...rest }) => {
const paddingClass = ButtonUtil.paddingMapping[size];
return /* @__PURE__ */ jsxs3("div", { className: "inline-block relative", children: [
isLoading && /* @__PURE__ */ jsx3("div", { className: clsx3("flex-row-2 absolute inset-0 items-center justify-center bg-white/40", paddingClass), children: /* @__PURE__ */ jsx3(Helpwave, { animate: "loading", className: "text-white" }) }),
/* @__PURE__ */ jsx3(SolidButton, { ...rest, disabled: rest.disabled, onClick: isLoading ? noop : onClick })
] });
};
export {
LoadingButton
};
//# sourceMappingURL=LoadingButton.mjs.map