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.

60 lines
1.8 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
2024-09-09 14:57:16 +01:00
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
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";
import AccessibleButton, { 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
}
const CopyableText: React.FC<IProps> = ({ children, getTextToCopy, border = true, className, ...props }) => {
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);
}
};
const combinedClassName = classNames("mx_CopyableText", className, {
mx_CopyableText_border: border,
});
return (
<div className={combinedClassName} {...props}>
2022-01-24 12:47:59 +01:00
{children}
<AccessibleButton
title={tooltip ?? _t("action|copy")}
2022-01-24 12:47:59 +01:00
onClick={onCopyClickInternal}
className="mx_CopyableText_copyButton"
onTooltipOpenChange={(open) => {
if (!open) onHideTooltip();
}}
2022-01-24 12:47:59 +01:00
/>
</div>
);
};
export default CopyableText;