mirror of
https://github.com/ente-io/ente.git
synced 2025-07-02 21:49:40 +00:00
This reverts commit 5b17711b55e9e8995454121e3a209ee5e8c9b3c1, reversing changes made to 85bf3eebcb5ac197ce6a5901cbc8db1d03be0113.
83 lines
2.4 KiB
TypeScript
83 lines
2.4 KiB
TypeScript
import { CenteredRow } from "@/base/components/containers";
|
|
import { ActivityIndicator } from "@/base/components/mui/ActivityIndicator";
|
|
import ContentCopyIcon from "@mui/icons-material/ContentCopy";
|
|
import DoneIcon from "@mui/icons-material/Done";
|
|
import { Box, IconButton, Tooltip, Typography } from "@mui/material";
|
|
import { t } from "i18next";
|
|
import React, { useState } from "react";
|
|
|
|
interface CodeBlockProps {
|
|
/**
|
|
* The code (an arbitrary string) to show.
|
|
*
|
|
* If not present, then an activity indicator will be shown.
|
|
*/
|
|
code: string | undefined;
|
|
}
|
|
|
|
/**
|
|
* A component that shows a "code" (e.g. the user's recovery key, or a 2FA setup
|
|
* code), alongwith a button to copy it.
|
|
*/
|
|
export const CodeBlock: React.FC<CodeBlockProps> = ({ code }) => {
|
|
if (!code) {
|
|
return (
|
|
<CenteredRow sx={{ minHeight: "80px" }}>
|
|
<ActivityIndicator />
|
|
</CenteredRow>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Box
|
|
sx={{
|
|
position: "relative",
|
|
bgcolor: "accent.dark",
|
|
borderRadius: 1,
|
|
}}
|
|
>
|
|
<Typography
|
|
sx={{
|
|
padding: "16px 44px 16px 16px",
|
|
wordBreak: "break-word",
|
|
color: "accent.contrastText",
|
|
// Increase the line height from the body default.
|
|
lineHeight: 1.5,
|
|
}}
|
|
>
|
|
{code}
|
|
</Typography>
|
|
<Box sx={{ position: "absolute", top: 0, right: 0, mt: 1 }}>
|
|
<CopyButton code={code} />
|
|
</Box>
|
|
</Box>
|
|
);
|
|
};
|
|
|
|
interface CopyButtonProps {
|
|
/**
|
|
* The code to copy when the button is clicked.
|
|
*/
|
|
code: string;
|
|
}
|
|
|
|
export const CopyButton: React.FC<CopyButtonProps> = ({ code }) => {
|
|
const [copied, setCopied] = useState(false);
|
|
|
|
const handleClick = () =>
|
|
void navigator.clipboard.writeText(code).then(() => {
|
|
setCopied(true);
|
|
setTimeout(() => setCopied(false), 1000);
|
|
});
|
|
|
|
const Icon = copied ? DoneIcon : ContentCopyIcon;
|
|
|
|
return (
|
|
<Tooltip arrow open={copied} title={t("copied")}>
|
|
<IconButton onClick={handleClick}>
|
|
<Icon sx={{ color: "accent.contrastText" }} fontSize="small" />
|
|
</IconButton>
|
|
</Tooltip>
|
|
);
|
|
};
|