305 lines
13 KiB
TypeScript
305 lines
13 KiB
TypeScript
import { useRouter } from "next/router";
|
|
import { useEffect, useState } from "react";
|
|
import { getAccessToken, getEmbeddedConnectedWallet, usePrivy, useWallets } from "@privy-io/react-auth";
|
|
import Head from "next/head";
|
|
import { useBalance } from 'wagmi';
|
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
|
|
import {faDiscord, faGoogle, faMeta, faTwitter, faXTwitter } from "@fortawesome/free-brands-svg-icons";
|
|
import {faAdd, faFileExport, faLink, faTrash, faUnlink, faWallet } from "@fortawesome/free-solid-svg-icons";
|
|
import { useSetActiveWallet } from "@privy-io/wagmi";
|
|
|
|
async function verifyToken() {
|
|
const url = "/api/verify";
|
|
const accessToken = await getAccessToken();
|
|
const result = await fetch(url, {
|
|
headers: {
|
|
...(accessToken ? { Authorization: `Bearer ${accessToken}` } : undefined),
|
|
},
|
|
});
|
|
|
|
return await result.json();
|
|
}
|
|
|
|
export default function DashboardPage() {
|
|
const [verifyResult, setVerifyResult] = useState(0);
|
|
const [username, setUsername] = useState('');
|
|
const [vaultData, setVaultData] = useState({ prehp: "0", vc: "0" });
|
|
const router = useRouter();
|
|
|
|
const { ready, authenticated, user, logout,exportWallet, linkWallet,unlinkWallet, linkDiscord, unlinkDiscord, linkTwitter, unlinkTwitter,linkGoogle, unlinkGoogle } = usePrivy();
|
|
const { wallets } = useWallets();
|
|
const { data: balanceData } = useBalance({
|
|
address: user?.wallet?.address as `0x${string}`,
|
|
});
|
|
const balance = balanceData?.formatted;
|
|
const token = balanceData?.symbol;
|
|
|
|
useEffect(() => {
|
|
if (ready && !authenticated) {
|
|
router.push("/");
|
|
}
|
|
if(ready){
|
|
if(username == "-1"){
|
|
router.push("/logincomplete");
|
|
}
|
|
}
|
|
|
|
}, [ready, authenticated, router, username]);
|
|
|
|
useEffect(() => {
|
|
async function fetchUsername() {
|
|
if (ready) {
|
|
try {
|
|
const response = await fetch(`https://vps.playpoolstudios.com/metahunt/api/launcher/get_display_name_public.php?id=${user?.id}`);
|
|
const data = await response.text();
|
|
setUsername(data); // Assuming the response contains the display name under `display_name`
|
|
} catch (error) {
|
|
console.error("Error fetching username:", error);
|
|
}
|
|
}
|
|
}
|
|
|
|
async function fetchVaultData() {
|
|
if (user?.id) {
|
|
try {
|
|
const response = await fetch(`http://vps.playpoolstudios.com/metahunt/api/launcher/get_vault.php?id=${user?.id}`);
|
|
const data = await response.json();
|
|
setVaultData({ prehp: data.prehp, vc: data.vc });
|
|
} catch (error) {
|
|
console.error("Error fetching vault data:", error);
|
|
}
|
|
}
|
|
}
|
|
|
|
fetchUsername();
|
|
fetchVaultData();
|
|
}, [ready]);
|
|
|
|
const numAccounts = user?.linkedAccounts?.length || 0;
|
|
const canRemoveAccount = numAccounts > 1;
|
|
|
|
const email = user?.email;
|
|
const phone = user?.phone;
|
|
const wallet = user?.wallet;
|
|
|
|
const googleSubject = user?.google?.subject || null;
|
|
const twitterSubject = user?.twitter?.subject || null;
|
|
const discordSubject = user?.discord?.subject || null;
|
|
|
|
function ToggleDiscord(){
|
|
if(user?.discord){
|
|
unlinkDiscord(user?.discord.subject);
|
|
}else{
|
|
linkDiscord();
|
|
}
|
|
}
|
|
|
|
function ToggleTwitter(){
|
|
if(user?.twitter){
|
|
unlinkTwitter(user?.twitter.subject);
|
|
}else{
|
|
linkTwitter();
|
|
}
|
|
}
|
|
|
|
function ToggleGoogle(){
|
|
if(user?.google){
|
|
unlinkGoogle(user?.google.subject);
|
|
}else{
|
|
linkGoogle();
|
|
}
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>W3B Games Dashboard</title>
|
|
</Head>
|
|
|
|
<main className="flex flex-col min-h-screen px-4 sm:px-20 py-6 sm:py-10 bg-black text-white">
|
|
{ready && authenticated ? (
|
|
<>
|
|
<div className="flex flex-row justify-between">
|
|
<h1 className="text-2xl font-semibold text-white">Welcome {username || "User"},</h1>
|
|
<button
|
|
onClick={logout}
|
|
className="text-sm bg-red-500 hover:bg-red-700 py-2 px-4 rounded-md text-violet-100"
|
|
>
|
|
Logout
|
|
</button>
|
|
</div>
|
|
<div className="flex flex-wrap items-center justify-center">
|
|
<div className="items-center justify-center p-20">
|
|
<h1 className="text-s">Vault Credits</h1>
|
|
<h1 className="text-4xl flex justify-center">{vaultData.vc || "0"} VC</h1>
|
|
</div>
|
|
<div className="items-center justify-center p-20">
|
|
{/* <h1 className="text-xs">{user?.wallet?.address}</h1>
|
|
<h1 className="text-4xl flex justify-center">{balance || 0} {token}</h1> */}
|
|
</div>
|
|
<div className="items-center justify-center p-20">
|
|
<h1 className="text-s">Pre-hunt Points</h1>
|
|
<h1 className="text-4xl flex justify-center">{vaultData.prehp || "0"} PHP</h1>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="grid grid-cols-2 gap-10 ">
|
|
<div className="bg-opacity-40 bg-gray-900 rounded-3xl h-[250px] itmes-center justify-center p-5 grid ">
|
|
<h1 className="text-xl flex justify-center">Socials</h1>
|
|
<div className="h-5"></div>
|
|
|
|
<div className="flex h-12 items-center">
|
|
<FontAwesomeIcon className="p-2 w-12" icon={faXTwitter} size={'2x'}/>
|
|
<p className="w-16">Twitter</p>
|
|
<div className="px-5"></div>
|
|
<div className={`bg-gray-${user?.twitter ? "8" : "7"}00 rounded-xl items-center justify-center flex w-64 p-1`}>
|
|
<p>{user?.twitter ? "@"+user?.twitter.username : "-"}</p>
|
|
</div>
|
|
<div className="p-5" />
|
|
<button className={`rounded-full ${user?.twitter ? "bg-red-700" : "bg-green-700"} px-4 py-1`} onClick={ToggleTwitter}>
|
|
{user?.twitter ? "Unlink" : "Link"}
|
|
</button>
|
|
</div>
|
|
<div className="flex h-12 items-center">
|
|
<FontAwesomeIcon className="p-2 w-12" icon={faDiscord} size={'2x'}/>
|
|
<p className="w-16">Discord</p>
|
|
<div className="px-5"></div>
|
|
<div className={`bg-gray-${user?.discord ? "8" : "7"}00 rounded-xl items-center justify-center flex w-64 p-1`}>
|
|
<p>{user?.discord ? "@"+user?.discord?.username : "-"}</p>
|
|
</div>
|
|
<div className="p-5" />
|
|
<button className={`rounded-full ${user?.discord ? "bg-red-700" : "bg-green-700"} px-4 py-1`} onClick={ToggleDiscord}>
|
|
{user?.discord ? "Unlink" : "Link"}
|
|
</button>
|
|
</div>
|
|
<div className="flex h-12 items-center">
|
|
<FontAwesomeIcon className="p-2 w-12" icon={faGoogle} size={'2x'}/>
|
|
<p className="w-16">Google</p>
|
|
<div className="px-5"></div>
|
|
<div className={`bg-gray-${user?.google ? "8" : "7"}00 rounded-xl items-center justify-center flex w-64 p-1`}>
|
|
<p>{user?.google ? "@"+user?.google?.email : "-"}</p>
|
|
</div>
|
|
<div className="p-5" />
|
|
<button className={`rounded-full ${user?.google ? "bg-red-700" : "bg-green-700"} px-4 py-1`} onClick={ToggleGoogle}>
|
|
{user?.google ? "Unlink" : "Link"}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="bg-opacity-40 bg-gray-900 rounded-3xl itmes-center justify-center p-5 grid">
|
|
<h1 className="text-xl flex justify-center mb-5">Wallets</h1>
|
|
<div>
|
|
<div>
|
|
<div className={`grid grid-cols-6 bg-gray-600 rounded-full py-2 px-20 items-center h-20`}>
|
|
<button className="w-12">
|
|
<FontAwesomeIcon icon={faLink}/>
|
|
</button>
|
|
<div className="grid col-span-4">
|
|
<p className="flex justify-center items-center">W3B Wallet</p>
|
|
<div className="h-2"></div>
|
|
<p>{getEmbeddedConnectedWallet(wallets)?.address }</p>
|
|
|
|
</div>
|
|
{/* <button className="justify-center items-center flex bg-red-400 ml-8 rounded-full h-10" onClick={()=>{unlinkWallet(wallet.address)}}>
|
|
<FontAwesomeIcon icon={faUnlink}/>
|
|
</button> */}
|
|
<button className="justify-center items-center flex bg-purple-400 ml-8 rounded-full h-10" onClick={exportWallet}>
|
|
<FontAwesomeIcon icon={faFileExport} className="w-6"/>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="h-7"></div>
|
|
<div className="grid gap-2 p-2">
|
|
{
|
|
wallets.map((wallet)=>{
|
|
if(wallet.connectorType == "embedded"){return "";}
|
|
return (
|
|
<div>
|
|
<div className={`grid grid-cols-6 ${wallet.linked ? "bg-gray-800" : "bg-gray-900 bg-opacity-30 text-gray-600"} rounded-full py-2 px-20 items-center h-20`}>
|
|
<button className="w-8">
|
|
<FontAwesomeIcon icon={faWallet}/>
|
|
</button>
|
|
<div className="grid col-span-4">
|
|
<p className="flex justify-center items-center">{wallet.walletClientType}</p>
|
|
<div className="h-2"></div>
|
|
<p>{wallet.address}</p>
|
|
|
|
</div>
|
|
{ wallet.linked ? <button className="justify-center items-center flex bg-red-400 ml-8 rounded-full h-10" onClick={()=>{unlinkWallet(wallet.address)}}>
|
|
<FontAwesomeIcon icon={faUnlink} className="w-6"/>
|
|
</button> :
|
|
<FontAwesomeIcon icon={faUnlink} className="w-6 justify-center items-center flex ml-8 rounded-full h-10"/>
|
|
}
|
|
|
|
</div>
|
|
</div>
|
|
);
|
|
})
|
|
}
|
|
</div>
|
|
<div className="h-5"></div>
|
|
<button onClick={linkWallet} className="justify-center bg-green-700 flex rounded-full w-96 h-10 items-center mx-auto">
|
|
<div className="flex">
|
|
<div className="">
|
|
<FontAwesomeIcon icon={faAdd} />
|
|
</div>
|
|
<div className="px-10">
|
|
+ Connect New Wallet
|
|
</div>
|
|
</div>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
{/* <div className="mt-12 flex gap-4 flex-wrap">
|
|
|
|
|
|
{discordSubject ? (
|
|
<button
|
|
onClick={() => {
|
|
unlinkDiscord(discordSubject);
|
|
}}
|
|
className="text-sm border border-violet-600 hover:border-violet-700 py-2 px-4 rounded-md text-violet-600 hover:text-violet-700 disabled:border-gray-500 disabled:text-gray-500 hover:disabled:text-gray-500"
|
|
disabled={!canRemoveAccount}
|
|
>
|
|
Unlink Discord
|
|
</button>
|
|
) : (
|
|
<button
|
|
className="text-sm bg-violet-600 hover:bg-violet-700 py-2 px-4 rounded-md text-white"
|
|
onClick={() => {
|
|
linkDiscord();
|
|
}}
|
|
>
|
|
Link Discord
|
|
</button>
|
|
)}
|
|
{wallet ? (
|
|
<button
|
|
onClick={() => {
|
|
unlinkWallet(wallet.address);
|
|
}}
|
|
className="text-sm border border-violet-600 hover:border-violet-700 py-2 px-4 rounded-md text-violet-600 hover:text-violet-700 disabled:border-gray-500 disabled:text-gray-500 hover:disabled:text-gray-500"
|
|
disabled={!canRemoveAccount}
|
|
>
|
|
Unlink wallet
|
|
</button>
|
|
) : (
|
|
<button
|
|
onClick={linkWallet}
|
|
className="text-sm bg-violet-600 hover:bg-violet-700 py-2 px-4 rounded-md text-white border-none"
|
|
>
|
|
Connect wallet
|
|
</button>
|
|
)}
|
|
<button onClick={linkWallet}>
|
|
Wallet
|
|
</button>
|
|
</div> */}
|
|
</>
|
|
) : null}
|
|
</main>
|
|
</>
|
|
);
|
|
}
|