Skip to content

Commit

Permalink
copy btc info
Browse files Browse the repository at this point in the history
  • Loading branch information
Adesojisouljay committed Nov 16, 2024
1 parent fd9654e commit 2c95f38
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/common/components/profile-card/_index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@
.b-info{
background-color: rgb(14, 13, 13);
padding: 5px;
cursor: pointer;
// background-color: black;
}
}
Expand Down
22 changes: 19 additions & 3 deletions src/common/components/profile-card/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ import { getRelationshipBetweenAccounts } from "../../api/bridge";
import { Skeleton } from "../skeleton";
import { ResourceCreditsInfo } from "../resource-credits";
import { getBtcWalletBalance, getUserByUsername } from "../../api/breakaway";
import { copyContent } from "../../img/svg";
import { Button } from "react-bootstrap";
import { success } from "../feedback";

interface Props {
global: Global;
Expand Down Expand Up @@ -172,6 +175,16 @@ export const ProfileCard = (props: Props) => {

const formatString = (str: string) => str?.length <= 20 ? str : str?.slice(0, 10) + "..." + str?.slice(-10);

const copyToClipboard = (text: string) => {
const textField = document.createElement('textarea');
textField.innerText = text;
document.body.appendChild(textField);
textField.select();
document.execCommand('copy');
textField.remove();
success("Copied to clipboard");
}

const vPower = votingPower(account);

const isMyProfile = activeUser && activeUser.username === account.name && activeUser.data.__loaded && activeUser.data.profile;
Expand Down Expand Up @@ -212,19 +225,22 @@ export const ProfileCard = (props: Props) => {
<h5>BTC info</h5>
<div className="btc-info">
<span>Address:</span>
<span className="b-info">{formatString(jsonMetaData?.bitcoin.address)}</span>
<span className="b-info" onClick={()=> copyToClipboard(jsonMetaData?.bitcoin.address)}>{formatString(jsonMetaData?.bitcoin.address)}{copyContent}</span>
</div>
<div className="btc-info">
<span>Btc Balance:</span>
<span className="b-info">{btcBalance?.toFixed(2)}</span>
</div>
<div className="btc-info">
<span>Message:</span>
<span className="b-info">{jsonMetaData?.bitcoin.message}</span>
<span className="b-info" onClick={()=> copyToClipboard(jsonMetaData?.bitcoin.message)}>{jsonMetaData?.bitcoin.message}{copyContent}</span>
</div>
<div className="btc-info">
<span>Signature:</span>
<span className="b-info">{formatString(jsonMetaData?.bitcoin.signature)}</span>
<span className="b-info" onClick={()=> copyToClipboard(jsonMetaData?.bitcoin.signature)}>{formatString(jsonMetaData?.bitcoin.signature)}{copyContent}</span>
<a href="https://www.verifybitcoinmessage.com/" target="_blank" rel="noopener noreferrer">
Click to Verify signature
</a>
</div>
</div> : <></>) }

Expand Down

0 comments on commit 2c95f38

Please sign in to comment.