mirror of
				https://github.com/Instadapp/assembly.git
				synced 2024-07-29 22:37:06 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			187 lines
		
	
	
		
			5.8 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			187 lines
		
	
	
		
			5.8 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <SidebarContextRootContainer class="bg-[#C5CCE1] bg-opacity-[0.15]">
 | 
						|
    <template #title>Supply to Stability Pool</template>
 | 
						|
 | 
						|
    <div class="flex justify-around items-center w-full">
 | 
						|
      <SidebarSectionValueWithIcon class="" label="Stability Pool Balance" center>
 | 
						|
        <template #icon
 | 
						|
          ><IconCurrency :currency="poolToken.key" class="w-16 h-16" noHeight
 | 
						|
        /></template>
 | 
						|
        <template #value
 | 
						|
          >{{ formatDecimal(changedPoolDeposit) }} {{ poolToken.symbol }}</template
 | 
						|
        >
 | 
						|
      </SidebarSectionValueWithIcon>
 | 
						|
 | 
						|
      <SidebarSectionValueWithIcon class="" label="Token Balance" center>
 | 
						|
        <template #icon
 | 
						|
          ><IconCurrency :currency="poolToken.key" class="w-16 h-16" noHeight
 | 
						|
        /></template>
 | 
						|
 | 
						|
        <template #value
 | 
						|
          >{{ formatDecimal(changedBalance) }} {{ poolToken.symbol }}</template
 | 
						|
        >
 | 
						|
      </SidebarSectionValueWithIcon>
 | 
						|
    </div>
 | 
						|
 | 
						|
    <div class="mt-10 p-8">
 | 
						|
      <h3 class="text-primary-gray text-xs font-semibold mb-2.5">
 | 
						|
        Amount to supply
 | 
						|
      </h3>
 | 
						|
 | 
						|
      <input-numeric
 | 
						|
        v-model="amount"
 | 
						|
        placeholder="Amount to supply"
 | 
						|
        :error="errors.amount.message"
 | 
						|
      >
 | 
						|
        <template v-if="!isMaxAmount" #suffix>
 | 
						|
          <div class="absolute mt-2 top-0 right-0 mr-4">
 | 
						|
            <button
 | 
						|
              type="button"
 | 
						|
              class="text-primary-blue-dark font-semibold text-sm hover:text-primary-blue-hover"
 | 
						|
              @click="toggle"
 | 
						|
            >
 | 
						|
              Max
 | 
						|
            </button>
 | 
						|
          </div>
 | 
						|
        </template>
 | 
						|
      </input-numeric>
 | 
						|
 | 
						|
      <div class="flex flex-shrink-0 mt-10">
 | 
						|
        <ButtonCTA
 | 
						|
          class="w-full"
 | 
						|
          :disabled="!isValid || pending"
 | 
						|
          :loading="pending"
 | 
						|
          @click="cast"
 | 
						|
        >
 | 
						|
          Supply
 | 
						|
        </ButtonCTA>
 | 
						|
      </div>
 | 
						|
 | 
						|
      <ValidationErrors :error-messages="errorMessages" class="mt-6" />
 | 
						|
    </div>
 | 
						|
  </SidebarContextRootContainer>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
import { computed, ref, defineComponent } from '@nuxtjs/composition-api'
 | 
						|
import { useFormatting } from '~/composables/useFormatting'
 | 
						|
import { useMaxAmountActive } from '~/composables/useMaxAmountActive'
 | 
						|
import { useValidators } from '~/composables/useValidators'
 | 
						|
import { useValidation } from '~/composables/useValidation'
 | 
						|
import { useParsing } from '~/composables/useParsing'
 | 
						|
import { useBigNumber } from '~/composables/useBigNumber'
 | 
						|
import { useLiquityPosition } from '~/composables/protocols/useLiquityPosition'
 | 
						|
import { useBalances } from '~/composables/useBalances'
 | 
						|
import { useWeb3 } from '@instadapp/vue-web3'
 | 
						|
import { useNotification } from '~/composables/useNotification'
 | 
						|
import ButtonCTA from '~/components/common/input/ButtonCTA.vue'
 | 
						|
import InputNumeric from '~/components/common/input/InputNumeric.vue'
 | 
						|
import { useToken } from '~/composables/useToken'
 | 
						|
import { useDSA } from '~/composables/useDSA'
 | 
						|
import { useSidebar } from '~/composables/useSidebar'
 | 
						|
 | 
						|
export default defineComponent({
 | 
						|
  components: { ButtonCTA, InputNumeric },
 | 
						|
  setup() {
 | 
						|
    const { account } = useWeb3()
 | 
						|
    const { dsa } = useDSA()
 | 
						|
    const { formatUsd, formatUsdMax, formatDecimal } = useFormatting()
 | 
						|
    const { parseSafeFloat } = useParsing()
 | 
						|
    const { plus, isZero, max, minus } = useBigNumber()
 | 
						|
    const { getBalanceByKey, fetchBalances } = useBalances()
 | 
						|
    const { valInt } = useToken()
 | 
						|
    const { close } = useSidebar()
 | 
						|
    const { showPendingTransaction, showConfirmedTransaction, showWarning } = useNotification()
 | 
						|
 | 
						|
    const amount = ref('')
 | 
						|
    const amountParsed = computed(() => parseSafeFloat(amount.value))
 | 
						|
 | 
						|
    const { poolToken, stabilityAmount, fetchPosition } = useLiquityPosition()
 | 
						|
    const balance = computed(() => getBalanceByKey(poolToken.value.key))
 | 
						|
 | 
						|
    const changedPoolDeposit = computed(() => plus(stabilityAmount.value, amountParsed.value).toFixed())
 | 
						|
    const changedBalance = computed(() => max(minus(balance.value, amountParsed.value), '0').toFixed())
 | 
						|
 | 
						|
    const { toggle, isMaxAmount } = useMaxAmountActive(amount, balance)
 | 
						|
 | 
						|
    const { validateAmount, validateIsLoggedIn } = useValidators()
 | 
						|
    const errors = computed(() => {
 | 
						|
      const hasAmountValue = !isZero(amount.value)
 | 
						|
 | 
						|
      return {
 | 
						|
        amount: { message: validateAmount(amountParsed.value, balance.value), show: hasAmountValue },
 | 
						|
        auth: { message: validateIsLoggedIn(!!account.value), show: true },
 | 
						|
      }
 | 
						|
    })
 | 
						|
    const { errorMessages, isValid } = useValidation(errors)
 | 
						|
 | 
						|
    const pending = ref(false)
 | 
						|
 | 
						|
    async function cast() {
 | 
						|
      pending.value = true
 | 
						|
      try {
 | 
						|
 | 
						|
        const supplyAmountInWei = valInt(amountParsed.value, poolToken.value.decimals)
 | 
						|
        const getDepositId = 0
 | 
						|
        const setDepositId = 0
 | 
						|
        const setEthGainId = 0
 | 
						|
        const setLqtyGainId = 0
 | 
						|
 | 
						|
        const frontendTag = '0x0000000000000000000000000000000000000000'
 | 
						|
 | 
						|
        const spells = dsa.value.Spell()
 | 
						|
 | 
						|
        spells.add({
 | 
						|
          connector: 'LIQUITY-A',
 | 
						|
          method: 'stabilityDeposit',
 | 
						|
          args: [supplyAmountInWei, frontendTag, getDepositId, setDepositId, setEthGainId, setLqtyGainId],
 | 
						|
        })
 | 
						|
 | 
						|
 | 
						|
        const txHash = await dsa.value.cast({
 | 
						|
          spells,
 | 
						|
          from: account.value,
 | 
						|
          onReceipt: async receipt => {
 | 
						|
            showConfirmedTransaction(receipt.transactionHash);
 | 
						|
 | 
						|
            await fetchBalances(true);
 | 
						|
            await fetchPosition();
 | 
						|
          }
 | 
						|
        })
 | 
						|
 | 
						|
        showPendingTransaction(txHash)
 | 
						|
      } catch (error) {
 | 
						|
        console.log(error);
 | 
						|
        showWarning(error.message)
 | 
						|
      }
 | 
						|
 | 
						|
      pending.value = false
 | 
						|
 | 
						|
      close()
 | 
						|
    }
 | 
						|
 | 
						|
    return {
 | 
						|
      symbol: computed(() => poolToken.value.symbol),
 | 
						|
      balance,
 | 
						|
      amount,
 | 
						|
      changedPoolDeposit,
 | 
						|
      poolToken,
 | 
						|
      amountParsed,
 | 
						|
 | 
						|
      isZero,
 | 
						|
      formatUsd,
 | 
						|
      formatUsdMax,
 | 
						|
      formatDecimal,
 | 
						|
      errors,
 | 
						|
      errorMessages,
 | 
						|
      isMaxAmount,
 | 
						|
      isValid,
 | 
						|
      cast,
 | 
						|
      pending,
 | 
						|
      toggle,
 | 
						|
      changedBalance,
 | 
						|
    }
 | 
						|
  },
 | 
						|
})
 | 
						|
</script>
 |