User feedback (#575)

* feat: added debt indicator and adjusted the borrowModal

* fix: wallet interaction fix
This commit is contained in:
Linkie Link 2023-10-24 09:18:23 +02:00 committed by GitHub
parent 29169f14f9
commit d0d87e75e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 39 additions and 16 deletions

View File

@ -64,6 +64,7 @@ export default function Index(props: Props) {
return (
<Text size='xs'>
{row.original.symbol}
{row.original.type === 'borrowing' && <span className='ml-1 text-loss'>(debt)</span>}
{row.original.type === 'lending' && <span className='ml-1 text-profit'>(lent)</span>}
{row.original.type === 'vault' && <span className='ml-1 text-profit'>(farm)</span>}
</Text>

View File

@ -24,7 +24,7 @@ import { getDepositAndLendCoinsToSpend } from 'hooks/useUpdatedAccount/functions
import useStore from 'store'
import { BNCoin } from 'types/classes/BNCoin'
import { byDenom } from 'utils/array'
import { formatPercent, formatValue } from 'utils/formatters'
import { formatPercent } from 'utils/formatters'
import { BN } from 'utils/helpers'
import { getDebtAmountWithInterest } from 'utils/tokens'
@ -204,15 +204,32 @@ function BorrowModal(props: Props) {
title={formatPercent(modal.marketData.borrowRate || '0')}
sub={'Borrow rate'}
/>
{totalDebt.isGreaterThan(0) && (
<>
<div className='h-100 w-[1px] bg-white/10' />
<TitleAndSubCell
title={formatValue(getDebtAmount(modal), {
abbreviated: false,
<div className='flex flex-col gap-0.5'>
<div className='flex gap-2'>
<FormattedNumber
className='text-xs'
amount={totalDebt.toNumber()}
options={{
decimals: asset.decimals,
maxDecimals: asset.decimals,
})}
sub={'Borrowed'}
abbreviated: false,
suffix: ` ${asset.symbol}`,
}}
/>
<DisplayCurrency
className='text-xs'
coin={BNCoin.fromDenomAndBigNumber(asset.denom, totalDebt)}
parentheses
/>
</div>
<Text size='xs' className='text-white/50' tag='span'>
Borrowed
</Text>
</div>
</>
)}
<div className='h-100 w-[1px] bg-white/10' />
<div className='flex flex-col gap-0.5'>
<div className='flex gap-2'>

View File

@ -61,9 +61,15 @@ export default function WalletConnectedButton() {
}, [network, address])
const onDisconnectWallet = () => {
if (!currentWallet) return
disconnectWallet(currentWallet)
useStore.setState({ client: undefined, address: undefined, accounts: null, balances: [] })
if (currentWallet) disconnectWallet(currentWallet)
useStore.setState({
client: undefined,
address: undefined,
accounts: null,
balances: [],
focusComponent: null,
})
if (focusComponent) {
useStore.setState({

View File

@ -11,11 +11,10 @@ export default function Wallet() {
const { disconnectWallet } = useShuttle()
const currentWallet = useCurrentWallet()
const address = useStore((s) => s.address)
const focusComponent = useStore((s) => s.focusComponent)
useEffect(() => {
if (!currentWallet) return
if (currentWallet.account.address === address || focusComponent) return
if (currentWallet.account.address === address) return
useStore.setState({
address: undefined,
client: undefined,
@ -33,7 +32,7 @@ export default function Wallet() {
},
},
})
}, [currentWallet, address, focusComponent, disconnectWallet])
}, [currentWallet, address, disconnectWallet])
return address ? <WalletConnectedButton /> : <WalletConnectButton />
}