mirror of
				https://github.com/Instadapp/assembly.git
				synced 2024-07-29 22:37:06 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			311 lines
		
	
	
		
			9.8 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			311 lines
		
	
	
		
			9.8 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <div
 | |
|     class="flex-shrink-0 bg-white rounded-lg relative flex flex-col flex-1 px-4 pt-4 pb-6 dark:bg-dark-500"
 | |
|     style="box-shadow: -1px -3px 10px rgba(12, 25, 91, 0.03), 2px 4px 12px rgba(12, 25, 91, 0.05)"
 | |
|   >
 | |
|     <div class="flex items-center h-14">
 | |
|       <div class="flex mr-4 -space-x-3 overflow-hidden">
 | |
|         <IconCurrency :currency="tokenKey" class="w-12 h-12" no-height />
 | |
|       </div>
 | |
| 
 | |
|       <div
 | |
|         v-if="type === 'supply' || type === 'no'"
 | |
|         class="flex flex-col flex-grow"
 | |
|       >
 | |
|         <div class="mb-1 font-medium leading-none whitespace-no-wrap text-19">
 | |
|           {{ formatUsd(supplyUsd) }}
 | |
|         </div>
 | |
|         <div class="flex leading-none whitespace-no-wrap">
 | |
|           <span class="text-grey-pure text-14"
 | |
|             >{{ formatDecimal(supply) }} {{ symbol }}</span
 | |
|           >
 | |
|           <Info
 | |
|             :text="`${formatUsd(priceInUsd, 2)}/${symbol}`"
 | |
|             icon="price"
 | |
|             class="ml-1"
 | |
|           />
 | |
|         </div>
 | |
|       </div>
 | |
| 
 | |
|       <div v-if="type === 'borrow'" class="flex flex-col flex-grow">
 | |
|         <div class="mb-1 font-medium leading-none whitespace-no-wrap text-19">
 | |
|           {{ formatUsd(computedBorrowUsd) }}
 | |
|         </div>
 | |
|         <div class="flex leading-none whitespace-no-wrap">
 | |
|           <span class="text-grey-pure text-14"
 | |
|             >{{ formatDecimal(computedBorrowAmount) }} {{ symbol }}</span
 | |
|           >
 | |
|           <Info
 | |
|             :text="`${formatUsd(priceInUsd, 2)}/${symbol}`"
 | |
|             icon="price"
 | |
|             class="ml-1"
 | |
|           />
 | |
|         </div>
 | |
|       </div>
 | |
| 
 | |
|       <div
 | |
|         v-if="variousRateTypes.length && type === 'borrow'"
 | |
|         class="self-start"
 | |
|       >
 | |
|         <ToggleButtonVertical
 | |
|           v-model="borrowRateType"
 | |
|           :values="variousRateTypes"
 | |
|         />
 | |
|       </div>
 | |
|     </div>
 | |
| 
 | |
|     <div class="grid w-full grid-cols-3 gap-4 mt-4">
 | |
|       <Badge v-if="type === 'no'" color="grey">No Position</Badge>
 | |
|       <Badge v-if="type === 'supply'" color="green">Supplied</Badge>
 | |
|       <Badge v-if="type === 'borrow'" color="yellow">Borrowed</Badge>
 | |
|       <Badge
 | |
|         v-tooltip="
 | |
|           'Collateral Factor is the power to borrow against a particular token. Eg:- if collateral factor of ETH is 0.75 that means for every $100 of ETH you can borrow $75 worth of other assets.'
 | |
|         "
 | |
|         color="blue"
 | |
|         >C.F: {{ cf }}</Badge
 | |
|       >
 | |
|       <Badge
 | |
|         v-if="ll !== null"
 | |
|         v-tooltip="
 | |
|           'Liquidation Limit is the point where position is subject to liquidate. Eg:- if liquidation limit of ETH is 0.8 that means for every $100 of ETH if the debt crosses $80 position will get liquidate.'
 | |
|         "
 | |
|         color="blue"
 | |
|         >L.L: {{ ll }}</Badge
 | |
|       >
 | |
|     </div>
 | |
| 
 | |
|     <hr class="mt-4" />
 | |
| 
 | |
|     <div class="flex items-center justify-around mt-4">
 | |
|       <div class="flex-col flex-1 text-center">
 | |
|         <div class="flex items-center mb-2 justify-evenly">
 | |
|           <div
 | |
|             class="font-medium leading-none text-navi-pure-light dark:text-light text-16"
 | |
|           >
 | |
|             {{ formatPercent(supplyRate) }}
 | |
|           </div>
 | |
|           <RewardsRateBadge
 | |
|             v-if="supplyRewardsSupported"
 | |
|             protocol-name="Aave Market"
 | |
|             :token-name="rewardTokenName"
 | |
|             :currency="rewardCurrency"
 | |
|             :rate="supplyRewardRate"
 | |
|           />
 | |
|         </div>
 | |
|         <div class="leading-none whitespace-no-wrap text-grey-pure">Supply</div>
 | |
|       </div>
 | |
|       <Divider vertical class="h-6" />
 | |
|       <div class="flex-col flex-1 text-center">
 | |
|         <div class="flex items-center mb-2 justify-evenly">
 | |
|           <div
 | |
|             class="font-medium leading-none text-navi-pure-light dark:text-light text-16"
 | |
|           >
 | |
|             {{ formatPercent(computedBorrowRate) }}
 | |
|           </div>
 | |
|           <RewardsRateBadge
 | |
|             v-if="borrowRewardsSupported"
 | |
|             protocol-name="Aave Market"
 | |
|             :token-name="rewardTokenName"
 | |
|             :currency="rewardCurrency"
 | |
|             :rate="borrowRewardRate"
 | |
|           />
 | |
|         </div>
 | |
|         <div class="leading-none whitespace-no-wrap text-grey-pure">Borrow</div>
 | |
|       </div>
 | |
|     </div>
 | |
| 
 | |
|     <hr class="mt-4" />
 | |
| 
 | |
|     <div
 | |
|       v-if="type === 'no'"
 | |
|       class="flex items-center justify-around mt-6"
 | |
|     >
 | |
|       <button
 | |
|         class="mr-4 h-10 w-full bg-primary-blue-dark shadow text-white rounded-[4px] hover:bg-primary-blue-hover"
 | |
|         @click="showSupply"
 | |
|       >
 | |
|         Supply
 | |
|       </button>
 | |
|       <button
 | |
|         class="h-10 w-full text-primary-blue-dark shadow border border-primary-blue-dark hover:border-primary-blue-hover rounded-[4px] hover:text-primary-blue-hover"
 | |
|         @click="showBorrow"
 | |
|       >
 | |
|         Borrow
 | |
|       </button>
 | |
|     </div>
 | |
| 
 | |
|     <div
 | |
|       v-if="type === 'supply'"
 | |
|       class="flex items-center justify-around mt-6"
 | |
|     >
 | |
|       <button
 | |
|         class="mr-4 h-10 w-full bg-primary-blue-dark shadow text-white rounded-[4px] hover:bg-primary-blue-hover"
 | |
|         @click="showSupply"
 | |
|       >
 | |
|         Supply
 | |
|       </button>
 | |
|       <button
 | |
|         class="h-10 w-full text-primary-blue-dark shadow border border-primary-blue-dark hover:border-primary-blue-hover rounded-[4px] hover:text-primary-blue-hover"
 | |
|         @click="showWithdraw"
 | |
|       >
 | |
|         Withdraw
 | |
|       </button>
 | |
|     </div>
 | |
| 
 | |
|     <div
 | |
|       v-if="type === 'borrow'"
 | |
|       class="flex items-center justify-around mt-6"
 | |
|     >
 | |
|       <button
 | |
|         class="mr-4 h-10 w-full bg-primary-blue-dark shadow text-white rounded-[4px] hover:bg-primary-blue-hover"
 | |
|         @click="showBorrow"
 | |
|       >
 | |
|         Borrow
 | |
|       </button>
 | |
|       <button
 | |
|         class="h-10 w-full text-primary-blue-dark shadow border border-primary-blue-dark hover:border-primary-blue-hover rounded-[4px] hover:text-primary-blue-hover"
 | |
|         @click="showPayback"
 | |
|       >
 | |
|         Payback
 | |
|       </button>
 | |
|     </div>
 | |
|   </div>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| import { computed, defineComponent, ref, useContext, watch } from '@nuxtjs/composition-api'
 | |
| import { useBigNumber } from '~/composables/useBigNumber'
 | |
| import { useFormatting } from '~/composables/useFormatting'
 | |
| import { useToken } from '~/composables/useToken'
 | |
| 
 | |
| export default defineComponent({
 | |
|   props: {
 | |
|     tokenKey: { type: String, required: true },
 | |
|     tokenId: { type: String, default: null },
 | |
|     supply: { type: String, required: true },
 | |
|     supplyUsd: { type: String, required: true },
 | |
|     borrow: { type: String, required: true },
 | |
|     borrowStable: { type: String, default: '0' },
 | |
|     borrowUsd: { type: String, required: true },
 | |
|     borrowStableUsd: { type: String, default: '0' },
 | |
|     supplyRate: { type: String, required: true },
 | |
|     borrowRate: { type: String, required: true },
 | |
|     borrowStableRate: { type: String, default: '0' },
 | |
|     supplyRewardRate: { type: String, default: '0' },
 | |
|     borrowRewardRate: { type: String, default: '0' },
 | |
|     type: { type: String, required: true },
 | |
|     cf: { type: String, required: true },
 | |
|     ll: { type: String, default: null },
 | |
|     borrowEnabled: { type: Boolean, default: true },
 | |
|     variousRateTypes: { type: Array, default: () => [] },
 | |
|     rewardTokenName: { type: String, default: '0' },
 | |
|     rewardCurrency: { type: String, default: '0' },
 | |
|     priceInUsd: { type: String, default: '0' },
 | |
|   },
 | |
| 
 | |
|   setup(props) {
 | |
|     const { app } = useContext()
 | |
|     const { formatPercent, formatUsd, formatDecimal } = useFormatting()
 | |
|     const { isZero } = useBigNumber()
 | |
|     const { getTokenByKey } = useToken()
 | |
| 
 | |
|     const borrowRateType = ref({})
 | |
|     const supplyRewardsSupported = computed(() => !isZero(props.supplyRewardRate))
 | |
|     const borrowRewardsSupported = computed(() => !isZero(props.borrowRewardRate))
 | |
|     const symbol = computed(() => getTokenByKey(props.tokenKey)?.symbol || props.tokenKey)
 | |
| 
 | |
|     watch(
 | |
|       [() => props.borrow, () => props.borrowStable],
 | |
|       ([updBorrow, updBorrowStable]) => {
 | |
|         if (Array.isArray(props.variousRateTypes)) {
 | |
|           borrowRateType.value = isZero(props.borrowStable) ? props.variousRateTypes[0] : props.variousRateTypes[1]
 | |
|         }
 | |
|       },
 | |
|       { immediate: true }
 | |
|     )
 | |
| 
 | |
|     const computedBorrowUsd = computed(() => {
 | |
|       if (borrowRateType.value?.value === 'stable') {
 | |
|         return props.borrowStableUsd
 | |
|       }
 | |
|       return props.borrowUsd
 | |
|     })
 | |
| 
 | |
|     const computedBorrowRate = computed(() => {
 | |
|       if (borrowRateType.value?.value === 'stable') {
 | |
|         return props.borrowStableRate
 | |
|       }
 | |
|       return props.borrowRate
 | |
|     })
 | |
| 
 | |
|     const computedBorrowAmount = computed(() => {
 | |
|       if (borrowRateType.value?.value === 'stable') {
 | |
|         return props.borrowStable
 | |
|       }
 | |
|       return props.borrow
 | |
|     })
 | |
| 
 | |
|     function showSupply() {
 | |
|       if (props.tokenId) {
 | |
|         app.router.push({ hash: `supply?tokenId=${props.tokenId}` })
 | |
|       } else {
 | |
|         app.router.push({ hash: `supply?tokenKey=${props.tokenKey}` })
 | |
|       }
 | |
|     }
 | |
| 
 | |
|     function showBorrow() {
 | |
|       if (props.borrowEnabled) {
 | |
|         if (props.tokenId) {
 | |
|           app.router.push({ hash: `borrow?tokenId=${props.tokenId}` })
 | |
|         } else {
 | |
|           app.router.push({ hash: `borrow?tokenKey=${props.tokenKey}` })
 | |
|         }
 | |
|       } else {
 | |
|         // showWarning('Borrow Disabled', `Borrowing ${props.tokenKey.toUpperCase()} is disabled`)
 | |
|       }
 | |
|     }
 | |
| 
 | |
|     function showPayback() {
 | |
|       if (props.tokenId) {
 | |
|         app.router.push({ hash: `payback?tokenId=${props.tokenId}` })
 | |
|       } else {
 | |
|         app.router.push({ hash: `payback?tokenKey=${props.tokenKey}` })
 | |
|       }
 | |
|     }
 | |
| 
 | |
|     function showWithdraw() {
 | |
|       if (props.tokenId) {
 | |
|         app.router.push({ hash: `withdraw?tokenId=${props.tokenId}` })
 | |
|       } else {
 | |
|         app.router.push({ hash: `withdraw?tokenKey=${props.tokenKey}` })
 | |
|       }
 | |
|     }
 | |
| 
 | |
|     return {
 | |
|       showSupply,
 | |
|       showBorrow,
 | |
|       showPayback,
 | |
|       showWithdraw,
 | |
|       formatPercent,
 | |
|       formatUsd,
 | |
|       formatDecimal,
 | |
|       borrowRateType,
 | |
|       computedBorrowRate,
 | |
|       computedBorrowAmount,
 | |
|       computedBorrowUsd,
 | |
|       supplyRewardsSupported,
 | |
|       borrowRewardsSupported,
 | |
|       symbol,
 | |
|     }
 | |
|   },
 | |
| })
 | |
| </script>
 | |
| <style scoped>
 | |
| .position-button {
 | |
|   @apply flex-1;
 | |
|   @apply h-8;
 | |
|   @apply h-8;
 | |
| }
 | |
| </style>
 | 
