import { useCallback } from 'react' import ActionButton from 'components/common/Button/ActionButton' import { Plus } from 'components/common/Icons' import Text from 'components/common/Text' import { Tooltip } from 'components/common/Tooltip' import ConditionalWrapper from 'hocs/ConditionalWrapper' import useCurrentAccount from 'hooks/accounts/useCurrentAccount' import useStore from 'store' export const BORROW_BUTTON_META = { accessorKey: 'borrow', enableSorting: false, header: '', } interface Props { data: LendingMarketTableData } export default function BorrowButton(props: Props) { const account = useCurrentAccount() const address = useStore((s) => s.address) const hasNoDeposits = !account?.deposits?.length && !account?.lends?.length && !!address const borrowHandler = useCallback(() => { if (!props.data.asset) return null useStore.setState({ borrowModal: { asset: props.data.asset, marketData: props.data } }) }, [props.data]) return (
( {`You don’t have any collateral. Please first deposit into your Credit Account before borrowing.`} } contentClassName='max-w-[200px]' className='ml-auto' > {children} )} > } disabled={hasNoDeposits} color='tertiary' onClick={(e) => { borrowHandler() e.stopPropagation() }} text='Borrow' />
) }