@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
59 lines • 3.28 kB
JavaScript
var __rest = (this && this.__rest) || function (s, e) {
var t = {};
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
t[p] = s[p];
if (s != null && typeof Object.getOwnPropertySymbols === "function")
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
t[p[i]] = s[p[i]];
}
return t;
};
import React, { forwardRef, useState } from "react";
import { CheckmarkIcon, FilesIcon } from "@navikt/aksel-icons";
import { Button } from "../button/index.js";
import { cl, clipboardCopy, composeEventHandlers } from "../utils/helpers/index.js";
import { useTimeout } from "../utils/hooks/index.js";
import { useI18n } from "../utils/i18n/i18n.hooks.js";
/**
* A button component that copies text to the clipboard when clicked.
*
* @see [📝 Documentation](https://aksel.nav.no/komponenter/core/copybutton)
* @see 🏷️ {@link CopyButtonProps}
*
* @example
* ```jsx
<CopyButton copyText="3.14" />
* ```
*/
export const CopyButton = forwardRef((_a, ref) => {
var _b;
var { className, copyText, text, activeText, variant, "data-color": dataColor = "neutral", onActiveChange, icon, activeIcon, activeDuration = 2000, title, iconPosition = "left", onClick, size = "medium" } = _a, rest = __rest(_a, ["className", "copyText", "text", "activeText", "variant", "data-color", "onActiveChange", "icon", "activeIcon", "activeDuration", "title", "iconPosition", "onClick", "size"]);
const [active, setActive] = useState(false);
const translate = useI18n("CopyButton");
const timeout = useTimeout();
const handleClick = () => {
clipboardCopy(copyText);
setActive(true);
onActiveChange === null || onActiveChange === void 0 ? void 0 : onActiveChange(true);
timeout.start(activeDuration, () => {
setActive(false);
onActiveChange === null || onActiveChange === void 0 ? void 0 : onActiveChange(false);
});
};
const activeString = activeText || translate("activeText");
return (React.createElement(Button, Object.assign({ ref: ref, type: "button", className: cl("aksel-copybutton", className) }, rest, { variant: "tertiary", "data-color": (_b = variantToDataColor(variant)) !== null && _b !== void 0 ? _b : dataColor, onClick: composeEventHandlers(onClick, handleClick), iconPosition: iconPosition, icon: active
? (activeIcon !== null && activeIcon !== void 0 ? activeIcon : (React.createElement(CheckmarkIcon, { "aria-hidden": !!text, title: text ? undefined : activeString, className: "aksel-copybutton__icon" })))
: (icon !== null && icon !== void 0 ? icon : (React.createElement(FilesIcon, { "aria-hidden": !!text, title: text ? undefined : title || translate("title"), className: "aksel-copybutton__icon" }))), "data-active": active, size: size }), text ? (active ? activeString : text) : null));
});
function variantToDataColor(variant) {
if (variant === "action") {
return "accent";
}
if (variant === "neutral") {
return "neutral";
}
return undefined;
}
export default CopyButton;
//# sourceMappingURL=CopyButton.js.map