mirror of
https://github.com/RoboSats/robosats.git
synced 2025-01-05 14:00:09 +00:00
81 lines
1.9 KiB
TypeScript
81 lines
1.9 KiB
TypeScript
|
import React from "react";
|
||
|
import { useTranslation } from "react-i18next";
|
||
|
import {
|
||
|
Dialog,
|
||
|
DialogTitle,
|
||
|
Tooltip,
|
||
|
IconButton,
|
||
|
TextField,
|
||
|
DialogActions,
|
||
|
DialogContent,
|
||
|
DialogContentText,
|
||
|
Button,
|
||
|
Grid,
|
||
|
} from "@mui/material"
|
||
|
import { getCookie } from "../../utils/cookies";
|
||
|
import ContentCopy from "@mui/icons-material/ContentCopy";
|
||
|
|
||
|
type Props = {
|
||
|
open: boolean;
|
||
|
onClose: () => void;
|
||
|
copyIconColor: string;
|
||
|
onClickCopy: () => void;
|
||
|
onClickBack: () => void;
|
||
|
onClickDone: () => void;
|
||
|
}
|
||
|
|
||
|
const StoreTokenDialog = ({
|
||
|
open,
|
||
|
onClose,
|
||
|
copyIconColor,
|
||
|
onClickCopy,
|
||
|
onClickBack,
|
||
|
onClickDone,
|
||
|
}: Props): JSX.Element => {
|
||
|
const { t } = useTranslation();
|
||
|
|
||
|
return (
|
||
|
<Dialog
|
||
|
open={open}
|
||
|
onClose={onClose}
|
||
|
>
|
||
|
<DialogTitle >
|
||
|
{t("Store your robot token")}
|
||
|
</DialogTitle>
|
||
|
|
||
|
<DialogContent>
|
||
|
<DialogContentText>
|
||
|
{t("You might need to recover your robot avatar in the future: store it safely. You can simply copy it into another application.")}
|
||
|
</DialogContentText>
|
||
|
<br/>
|
||
|
<Grid align="center">
|
||
|
<TextField
|
||
|
sx={{width:"100%", maxWidth:"550px"}}
|
||
|
disabled
|
||
|
label={t("Back it up!")}
|
||
|
value={getCookie("robot_token")}
|
||
|
variant='filled'
|
||
|
size='small'
|
||
|
InputProps={{
|
||
|
endAdornment:
|
||
|
<Tooltip disableHoverListener enterTouchDelay={0} title={t("Copied!")}>
|
||
|
<IconButton onClick={onClickCopy}>
|
||
|
<ContentCopy color={copyIconColor}/>
|
||
|
</IconButton>
|
||
|
</Tooltip>,
|
||
|
}}
|
||
|
/>
|
||
|
</Grid>
|
||
|
</DialogContent>
|
||
|
|
||
|
<DialogActions>
|
||
|
<Button onClick={onClickBack} autoFocus>{t("Go back")}</Button>
|
||
|
<Button onClick={onClickDone}>{t("Done")}</Button>
|
||
|
</DialogActions>
|
||
|
|
||
|
</Dialog>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default StoreTokenDialog;
|