Revert "Merge branch 'main' of https://github.com/Shuffle/Shuffle"

This reverts commit 268ac2d2f6, reversing
changes made to b96b526b82.
This commit is contained in:
lalitdeore
2024-02-15 11:40:32 +05:30
parent 268ac2d2f6
commit e04864d6ba
+4 -61
View File
@@ -13,11 +13,6 @@ import {
//import { useAlert
import { ToastContainer, toast } from "react-toastify"
import { FileCopy, Visibility, VisibilityOff } from "@mui/icons-material";
import IconButton from "@mui/material/IconButton";
import { Tooltip } from "@mui/material";
const Settings = (props) => {
const { globalUrl, isLoaded, userdata, setUserData } = props;
//const alert = useAlert();
@@ -49,17 +44,6 @@ const Settings = (props) => {
const [userSettings, setUserSettings] = useState({});
const [showApiKey, setShowApiKey] = useState(false);
const [apiKeyCopied, setApiKeyCopied] = useState(false);
const handleCopyApiKey = () => {
navigator.clipboard.writeText(userSettings.apikey);
setApiKeyCopied(true);
setTimeout(() => {
setApiKeyCopied(false);
}, 2000);
}
/*
const [userdata.eth_info, setEthInfo] = useState(userdata.eth_info !== undefined && userdata.eth_info.account !== undefined && userdata.eth_info.account.length > 0 ? userdata.eth_info : {
"account": "",
@@ -483,7 +467,7 @@ const Settings = (props) => {
>
What is the API key used for?
</a>
{/* <TextField
<TextField
style={{ backgroundColor: theme.palette.inputColor, flex: "1" }}
InputProps={{
style: {
@@ -500,43 +484,7 @@ const Settings = (props) => {
id="standard-required"
margin="normal"
variant="outlined"
/> */}
<TextField
style={{ backgroundColor: theme.palette.inputColor, flex: "1" }}
InputProps={{
style: {
height: "50px",
color: "white",
},
endAdornment: (
<>
<Tooltip title={showApiKey ? "Hide API Key" : "Show API Key"}>
<IconButton
onClick={() => setShowApiKey(!showApiKey)}
>
{showApiKey ? <VisibilityOff /> : <Visibility />}
</IconButton>
</Tooltip>
<Tooltip title={apiKeyCopied ? "API Key copied!" : "Copy API Key"}>
<IconButton
onClick={handleCopyApiKey}
>
<FileCopy />
</IconButton>
</Tooltip>
</>
),
}}
color="primary"
value={showApiKey ? userSettings.apikey : '*'.repeat(36)} // Show API key if showApiKey is true, else show asterisks
required
disabled
fullWidth
placeholder="APIKEY"
id="standard-required"
margin="normal"
variant="outlined"
/>
/>
<Button
style={{ width: "100%", height: "40px", marginTop: "10px" }}
variant="outlined"
@@ -728,13 +676,8 @@ const Settings = (props) => {
Submit password change
</Button>
<h3>{passwordFormMessage}</h3>
{isCloud && (
<>
<Divider style={{ marginTop: "40px" }} />
<h2>Creator Incentive Program</h2>
</>
)}
<Divider style={{ marginTop: "40px" }} />
<h2>Creator Incentive Program</h2>
<div style={{ display: runFlex ? "flex" : "", width: "100%" }}>
<div>
{isCloud ?