mango-v4-ui/components/modals/UserSetupModal.tsx

343 lines
13 KiB
TypeScript
Raw Normal View History

2022-07-20 21:50:56 -07:00
import { Transition } from '@headlessui/react'
import { useTranslation } from 'next-i18next'
2022-07-21 22:09:04 -07:00
import { ChangeEvent, useEffect, useState } from 'react'
2022-07-20 21:50:56 -07:00
import { ModalProps } from '../../types/modal'
import { PROFILE_CATEGORIES } from '../../utils/profile'
import Input from '../forms/Input'
import Label from '../forms/Label'
import Select from '../forms/Select'
import Button, { LinkButton } from '../shared/Button'
import InlineNotification from '../shared/InlineNotification'
import Modal from '../shared/Modal'
import useLocalStorageState from '../../hooks/useLocalStorageState'
2022-07-28 19:51:50 -07:00
import { CheckCircleIcon, PencilIcon } from '@heroicons/react/solid'
2022-07-21 22:09:04 -07:00
import { useWallet } from '@solana/wallet-adapter-react'
import { handleWalletConnect } from '../../utils/wallet'
import mangoStore from '../../store/state'
2022-07-26 19:45:27 -07:00
import { IS_ONBOARDED_KEY } from '../Layout'
2022-07-22 23:15:51 -07:00
import DepositTokenList from '../shared/DepositTokenList'
2022-07-28 19:51:50 -07:00
import { EnterRightExitLeft, FadeInFadeOut } from '../shared/Transitions'
2022-07-27 23:35:18 -07:00
import Image from 'next/image'
2022-07-28 03:51:36 -07:00
import BounceLoader from '../shared/BounceLoader'
2022-07-28 19:51:50 -07:00
import { notify } from '../../utils/notifications'
2022-07-20 21:50:56 -07:00
const UserSetupModal = ({ isOpen, onClose }: ModalProps) => {
const { t } = useTranslation()
2022-07-27 23:35:18 -07:00
const { select, wallet, wallets } = useWallet()
const mangoAccount = mangoStore((s) => s.mangoAccount.current)
const mangoAccountLoading = mangoStore((s) => s.mangoAccount.loading)
2022-07-20 21:50:56 -07:00
const [profileName, setProfileName] = useState('')
const [profileCategory, setProfileCategory] = useState('')
2022-07-21 22:09:04 -07:00
const [showSetupStep, setShowSetupStep] = useState(0)
2022-07-26 18:21:17 -07:00
// const [acceptRisks, setAcceptRisks] = useState(false)
2022-07-21 22:09:04 -07:00
const [depositToken, setDepositToken] = useState('')
2022-07-28 19:51:50 -07:00
const [depositAmount, setDepositAmount] = useState('')
const [submitDeposit, setSubmitDeposit] = useState(false)
const [, setIsOnboarded] = useLocalStorageState(IS_ONBOARDED_KEY)
2022-07-21 22:09:04 -07:00
const handleNextStep = () => {
setShowSetupStep(showSetupStep + 1)
}
2022-07-20 21:50:56 -07:00
const handleSaveProfile = () => {
2022-07-21 22:09:04 -07:00
// save profile details to db then:
2022-07-27 23:35:18 -07:00
setShowSetupStep(2)
2022-07-20 21:50:56 -07:00
}
2022-07-21 22:09:04 -07:00
const handleEndOnboarding = () => {
setIsOnboarded(true)
2022-07-20 21:50:56 -07:00
onClose()
}
2022-07-27 23:35:18 -07:00
const connectWallet = async () => {
2022-07-21 22:09:04 -07:00
if (wallet) {
handleWalletConnect(wallet)
}
}
useEffect(() => {
2022-07-27 23:35:18 -07:00
if (mangoAccount) {
setShowSetupStep(3)
2022-07-21 22:09:04 -07:00
}
2022-07-27 23:35:18 -07:00
}, [mangoAccount])
2022-07-21 22:09:04 -07:00
2022-07-28 19:51:50 -07:00
const handleDeposit = async () => {
const client = mangoStore.getState().client
const group = mangoStore.getState().group
const actions = mangoStore.getState().actions
const mangoAccount = mangoStore.getState().mangoAccount.current
if (!mangoAccount || !group) return
try {
setSubmitDeposit(true)
const tx = await client.tokenDeposit(
group,
mangoAccount,
depositToken,
parseFloat(depositAmount)
)
notify({
title: 'Transaction confirmed',
type: 'success',
txid: tx,
})
await actions.reloadAccount()
setIsOnboarded(true)
onClose()
setSubmitDeposit(false)
} catch (e: any) {
notify({
title: 'Transaction failed',
description: e.message,
txid: e?.txid,
type: 'error',
})
setSubmitDeposit(false)
console.log('Error depositing:', e)
}
}
2022-07-20 21:50:56 -07:00
return (
<Modal isOpen={isOpen} onClose={onClose} hideClose>
2022-07-23 04:20:08 -07:00
<div className="absolute top-0 left-0 flex h-0.5 w-full flex-grow bg-th-bkg-4">
2022-07-22 04:22:35 -07:00
<div
style={{
2022-07-27 23:35:18 -07:00
width: `${(showSetupStep / 3) * 100}%`,
2022-07-22 04:22:35 -07:00
}}
2022-07-23 04:20:08 -07:00
className="default-transition flex rounded bg-th-primary"
2022-07-22 04:22:35 -07:00
></div>
</div>
<div className="h-[392px]">
2022-07-21 22:09:04 -07:00
<Transition
appear={true}
2022-07-23 04:20:08 -07:00
className="absolute top-0.5 left-0 z-20 h-full w-full bg-th-bkg-1 p-6"
2022-07-21 22:09:04 -07:00
show={showSetupStep === 0}
enter="transition-all ease-in duration-500"
enterFrom="opacity-0"
enterTo="opacity-100"
leave="transition-all ease-out duration-500"
leaveFrom="transform translate-x-0"
leaveTo="transform -translate-x-full"
>
<h2 className="mb-1">Welcome.</h2>
<p className="mb-4">
2022-07-22 10:53:23 -07:00
{
"You're seconds away from trading the most liquid dex markets on Solana."
}
2022-07-20 21:50:56 -07:00
</p>
2022-07-21 22:09:04 -07:00
<div className="mb-6 space-y-2 border-y border-th-bkg-4 py-4">
<div className="flex items-center space-x-2">
<CheckCircleIcon className="h-5 w-5 text-th-green" />
<p className="text-th-fgd-1">Trusted by 1,000s of DeFi users</p>
</div>
<div className="flex items-center space-x-2">
<CheckCircleIcon className="h-5 w-5 text-th-green" />
<p className="text-th-fgd-1">Deeply liquid markets</p>
2022-07-20 21:50:56 -07:00
</div>
2022-07-21 22:09:04 -07:00
<div className="flex items-center space-x-2">
<CheckCircleIcon className="h-5 w-5 text-th-green" />
<p className="text-th-fgd-1">
Up to 20x leverage across 100s of tokens
</p>
</div>
<div className="flex items-center space-x-2">
<CheckCircleIcon className="h-5 w-5 text-th-green" />
<p className="text-th-fgd-1">Earn interest on your deposits</p>
</div>
<div className="flex items-center space-x-2">
<CheckCircleIcon className="h-5 w-5 text-th-green" />
<p className="text-th-fgd-1">
Borrow 100s of tokens with many collateral options
</p>
2022-07-20 21:50:56 -07:00
</div>
</div>
2022-07-21 22:09:04 -07:00
<Button className="w-full" onClick={handleNextStep} size="large">
2022-07-22 10:53:23 -07:00
{"Let's Go"}
2022-07-21 22:09:04 -07:00
</Button>
</Transition>
2022-07-23 04:20:08 -07:00
<EnterRightExitLeft
className="absolute top-0.5 left-0 z-20 w-full bg-th-bkg-1 p-6"
2022-07-21 22:09:04 -07:00
show={showSetupStep === 1}
2022-07-23 04:20:08 -07:00
style={{ height: 'calc(100% - 12px)' }}
2022-07-21 22:09:04 -07:00
>
2022-07-27 23:35:18 -07:00
{mangoAccountLoading ? (
<div className="flex h-full items-center justify-center">
2022-07-28 03:51:36 -07:00
<BounceLoader />
2022-07-21 22:09:04 -07:00
</div>
2022-07-27 23:35:18 -07:00
) : (
<div className="flex h-full flex-col justify-between">
<div>
<div className="mb-4">
<h2 className="mb-1">Connect Wallet</h2>
<p>
If you don&apos;t have a Mango Account yet, we&apos;ll
create one for you.
</p>
</div>
<p className="mb-2 font-bold">Choose Wallet</p>
<div className="thin-scroll grid max-h-56 grid-flow-row grid-cols-3 gap-2 overflow-y-auto">
{wallets?.map((w) => (
<button
className={`col-span-1 rounded-md border py-3 px-4 text-base font-normal focus:outline-none md:hover:cursor-pointer md:hover:border-th-fgd-4 ${
w.adapter.name === wallet?.adapter.name
? 'border-th-primary md:hover:border-th-primary'
: 'border-th-bkg-4'
}`}
onClick={() => {
select(w.adapter.name)
}}
key={w.adapter.name}
>
<div className="flex items-center">
<img
src={w.adapter.icon}
className="mr-2 h-5 w-5"
alt={`${w.adapter.name} icon`}
/>
{w.adapter.name}
</div>
</button>
))}
</div>
</div>
<div>
<InlineNotification type="info" desc={t('insufficient-sol')} />
<Button
className="mt-4 w-full"
onClick={connectWallet}
size="large"
>
Connect Wallet
</Button>
</div>
</div>
)}
2022-07-23 04:20:08 -07:00
</EnterRightExitLeft>
<EnterRightExitLeft
className="absolute top-0.5 left-0 z-20 w-full bg-th-bkg-1 p-6"
2022-07-21 22:09:04 -07:00
show={showSetupStep === 2}
2022-07-23 04:20:08 -07:00
style={{ height: 'calc(100% - 12px)' }}
2022-07-21 22:09:04 -07:00
>
<div className="flex h-full flex-col justify-between">
<div>
<div className="pb-4">
<h2 className="mb-1">Create Profile</h2>
<p>Your public facing identity on Mango...</p>
</div>
<div className="pb-4">
<Label text="Profile Name" />
<Input
type="text"
value={profileName}
onChange={(e: ChangeEvent<HTMLInputElement>) =>
setProfileName(e.target.value)
}
/>
</div>
<div className="pb-6">
<Label text="Profile Category" />
<Select
value={profileCategory}
onChange={(cat: string) => setProfileCategory(cat)}
className="w-full"
>
{PROFILE_CATEGORIES.map((cat) => (
<Select.Option key={cat} value={cat}>
{cat}
</Select.Option>
))}
</Select>
</div>
</div>
<div className="flex flex-col items-center">
<Button
2022-07-22 04:22:35 -07:00
className="mb-4 w-full"
2022-07-21 22:09:04 -07:00
onClick={handleSaveProfile}
size="large"
>
Save Profile
</Button>
<LinkButton onClick={handleNextStep}>Skip for now</LinkButton>
</div>
</div>
2022-07-23 04:20:08 -07:00
</EnterRightExitLeft>
<EnterRightExitLeft
className="absolute top-0.5 left-0 z-20 w-full bg-th-bkg-1 p-6"
2022-07-21 22:09:04 -07:00
show={showSetupStep === 3}
2022-07-23 04:20:08 -07:00
style={{ height: 'calc(100% - 12px)' }}
2022-07-21 22:09:04 -07:00
>
2022-07-28 19:51:50 -07:00
{submitDeposit ? (
<div className="flex h-full items-center justify-center">
<BounceLoader />
2022-07-21 22:09:04 -07:00
</div>
2022-07-28 19:51:50 -07:00
) : (
<div className="flex h-full flex-col justify-between">
<div>
<h2 className="mb-4">Fund Your Account</h2>
<FadeInFadeOut className="relative" show={!!depositToken}>
<Label text="Amount" />
<div className="grid grid-cols-2">
<button
className="col-span-1 flex items-center rounded-lg rounded-r-none border border-r-0 border-th-bkg-4 bg-th-bkg-1 px-4 hover:bg-th-bkg-2"
onClick={() => setDepositToken('')}
>
<div className="ml-1.5 flex w-full items-center justify-between">
<div className="flex items-center">
<Image
alt=""
width="20"
height="20"
src={`/icons/${depositToken.toLowerCase()}.svg`}
/>
<p className="ml-1.5 text-xl font-bold text-th-fgd-1">
{depositToken}
</p>
</div>
<PencilIcon className="ml-2 h-5 w-5 text-th-fgd-3" />
</div>
</button>
<Input
className="col-span-1 w-full rounded-lg rounded-l-none border border-th-bkg-4 bg-th-bkg-1 p-3 text-right text-xl font-bold tracking-wider text-th-fgd-1 focus:outline-none"
type="text"
name="deposit"
id="deposit"
placeholder="0.00"
value={depositAmount}
onChange={(e: ChangeEvent<HTMLInputElement>) =>
setDepositAmount(e.target.value)
}
/>
</div>
</FadeInFadeOut>
{!depositToken ? (
<div className="absolute top-16 mt-2">
<DepositTokenList onSelect={setDepositToken} />
</div>
) : null}
</div>
<div className="flex flex-col items-center">
<Button
className="mb-4 w-full"
disabled={!depositAmount || !depositToken}
onClick={handleDeposit}
size="large"
>
Deposit
</Button>
<LinkButton onClick={handleEndOnboarding}>
Skip for now
</LinkButton>
</div>
2022-07-21 22:09:04 -07:00
</div>
2022-07-28 19:51:50 -07:00
)}
2022-07-23 04:20:08 -07:00
</EnterRightExitLeft>
2022-07-21 22:09:04 -07:00
</div>
2022-07-20 21:50:56 -07:00
</Modal>
)
}
export default UserSetupModal