Files
ThreadNet-Web/src/components/views/elements/CopyableText.tsx
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

66 lines
2.1 KiB
TypeScript
Raw Normal View History

2022-01-24 12:47:59 +01:00
/*
2024-09-09 14:57:16 +01:00
Copyright 2024 New Vector Ltd.
2022-01-24 12:47:59 +01:00
Copyright 2022 Šimon Brandner <simon.bra.ag@gmail.com>
2024-09-09 14:57:16 +01:00
Copyright 2019-2022 The Matrix.org Foundation C.I.C.
2022-01-24 12:47:59 +01:00
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
2024-09-09 14:57:16 +01:00
Please see LICENSE files in the repository root for full details.
2022-01-24 12:47:59 +01:00
*/
import React, { useState } from "react";
import classNames from "classnames";
2022-01-24 12:47:59 +01:00
import { _t } from "../../../languageHandler";
import { copyPlaintext } from "../../../utils/strings";
2025-02-05 13:25:06 +00:00
import AccessibleButton, { type ButtonEvent } from "./AccessibleButton";
2022-01-24 12:47:59 +01:00
interface IProps extends React.HTMLAttributes<HTMLDivElement> {
children?: React.ReactNode;
getTextToCopy: () => string | null;
border?: boolean;
className?: string;
2022-01-24 12:47:59 +01:00
}
export const CopyTextButton: React.FC<Pick<IProps, "getTextToCopy" | "className">> = ({ getTextToCopy, className }) => {
const [tooltip, setTooltip] = useState<string | undefined>(undefined);
2022-01-24 12:47:59 +01:00
const onCopyClickInternal = async (e: ButtonEvent): Promise<void> => {
2022-01-24 12:47:59 +01:00
e.preventDefault();
const text = getTextToCopy();
const successful = !!text && (await copyPlaintext(text));
setTooltip(successful ? _t("common|copied") : _t("error|failed_copy"));
2022-01-24 12:47:59 +01:00
};
const onHideTooltip = (): void => {
if (tooltip) {
setTooltip(undefined);
}
};
return (
<AccessibleButton
title={tooltip ?? _t("action|copy")}
onClick={onCopyClickInternal}
className={className}
onTooltipOpenChange={(open) => {
if (!open) onHideTooltip();
}}
/>
);
};
const CopyableText: React.FC<IProps> = ({ children, getTextToCopy, border = true, className, ...props }) => {
const combinedClassName = classNames("mx_CopyableText", className, {
mx_CopyableText_border: border,
});
return (
<div className={combinedClassName} {...props}>
2022-01-24 12:47:59 +01:00
{children}
<CopyTextButton getTextToCopy={getTextToCopy} className="mx_CopyableText_copyButton" />
2022-01-24 12:47:59 +01:00
</div>
);
};
export default CopyableText;