mirror of
https://github.com/Instadapp/assembly.git
synced 2024-07-29 22:37:06 +00:00
200 lines
5.8 KiB
Vue
200 lines
5.8 KiB
Vue
<template>
|
|
<div>
|
|
<div>
|
|
<nuxt-link
|
|
to="/"
|
|
class="text-[#C0C5D7] text-lg font-semibold flex items-center"
|
|
>
|
|
<BackIcon class="w-4 h-4 mr-3" />
|
|
Apps
|
|
</nuxt-link>
|
|
</div>
|
|
|
|
<div class="mt-10 flex items-center">
|
|
<div
|
|
style="background: radial-gradient(42.15% 42.15% at 48.94% 48.94%, #D6DAE0 75.67%, #F0F3F9 100%), #C4C4C4;"
|
|
class="w-16 h-16 rounded-full flex items-center justify-center border border-[#CCDCF3]"
|
|
>
|
|
<div
|
|
class="w-12 h-12 rounded-full flex items-center justify-center bg-[#1874FF]"
|
|
>
|
|
<LiquityIcon class="w-8 h-8 text-white" />
|
|
</div>
|
|
</div>
|
|
<h1 class="ml-4 text-primary-black text-2xl font-semibold">Liquity</h1>
|
|
</div>
|
|
|
|
<div class="mt-10">
|
|
<h2 class="text-primary-gray text-lg font-semibold">Overview</h2>
|
|
|
|
<div
|
|
class="px-1 mt-6 grid w-full grid-cols-1 gap-4 sm:grid-cols-3 xl:gap-[18px]"
|
|
>
|
|
<div class="shadow rounded-lg py-8 px-6 flex">
|
|
<div class="flex-1">
|
|
<h3 class="text-2xl text-primary-black font-medium">
|
|
{{ formatUsd(netValue) }}
|
|
</h3>
|
|
<p class="mt-4 text-primary-gray font-medium">Net Value</p>
|
|
</div>
|
|
<div class="flex items-center">
|
|
<SVGBalance />
|
|
</div>
|
|
</div>
|
|
|
|
<div class="shadow rounded-lg py-8 px-6 flex">
|
|
<div class="flex-1">
|
|
<h3 class="text-2xl text-primary-black font-medium">
|
|
{{ formatPercent(borrowFee) }}
|
|
</h3>
|
|
<p class="mt-4 text-primary-gray font-medium">Borrow Fee</p>
|
|
</div>
|
|
<div class="flex items-center">
|
|
<SVGPercent class="h-12" />
|
|
</div>
|
|
</div>
|
|
|
|
<div class="shadow rounded-lg py-8 px-6 flex">
|
|
<div class="flex-1">
|
|
<div class="flex justify-between items-center">
|
|
<h3 class="text-2xl text-primary-black font-medium">
|
|
{{ formatPercent(status) }}
|
|
</h3>
|
|
<Badge class="w-18 xxl:w-23" :color="color">{{ text }}</Badge>
|
|
</div>
|
|
<div
|
|
class="mt-4 flex justify-between items-center text-primary-gray font-medium"
|
|
>
|
|
<div class="flex items-center whitespace-no-wrap">
|
|
<div>D/C (%)</div>
|
|
|
|
<div class="ml-2"><Info text="Debt/Collateral ratio" /></div>
|
|
</div>
|
|
<span>Max - {{ formatPercent(liquidation) }}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="shadow rounded-lg py-8 px-6 flex">
|
|
<div class="flex-1">
|
|
<h3 class="text-2xl text-primary-black font-medium">
|
|
{{ formatUsdMax(liquidationPrice, liquidationMaxPrice) }} /
|
|
{{ formatUsd(liquidationMaxPrice) }}
|
|
</h3>
|
|
<p class="mt-4 text-primary-gray font-medium">Liquidation (ETH)</p>
|
|
</div>
|
|
<div class="flex items-center">
|
|
<IconBackground
|
|
name="receipt-tax"
|
|
class="bg-light-brown-pure text-light-brown-pure"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mt-[60px]">
|
|
<div
|
|
class="w-full flex flex-col mt-6 sm:flex-row sm:items-center sm:justify-between xl:mt-4"
|
|
>
|
|
<h2 class="text-primary-gray text-lg font-semibold">Your Positions</h2>
|
|
</div>
|
|
<div
|
|
class="mt-3 grid w-full grid-cols-1 gap-4 sm:grid-cols-2 xxl:gap-6 min-w-max-content px-1"
|
|
>
|
|
<button-dashed
|
|
v-if="!troveOpened"
|
|
color="ocean-blue"
|
|
class="col-span-full"
|
|
height="80px"
|
|
full-width
|
|
@click="openNewTrove"
|
|
>
|
|
<SVGAdd class="w-3 mr-2" />
|
|
Open Trove
|
|
</button-dashed>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent, computed, useRouter } from "@nuxtjs/composition-api";
|
|
import BackIcon from "~/assets/icons/back.svg?inline";
|
|
import SVGIncoming from "@/assets/img/icons/incoming.svg?inline";
|
|
import SVGBalance from "@/assets/img/icons/balance.svg?inline";
|
|
import SVGEarnings from "@/assets/img/icons/earnings.svg?inline";
|
|
import SVGArrowRight from "@/assets/img/icons/arrow-right.svg?inline";
|
|
import SVGPercent from "@/assets/img/icons/percent.svg?inline";
|
|
import SVGAdd from "~/assets/img/icons/add.svg?inline";
|
|
import LiquityIcon from "~/assets/icons/liquity.svg?inline";
|
|
import ButtonDashed from "~/components/common/input/ButtonDashed.vue";
|
|
import { useLiquityPosition } from "~/composables/protocols/useLiquityPosition";
|
|
import { useFormatting } from "~/composables/useFormatting";
|
|
import { useStatus } from "~/composables/useStatus";
|
|
import { useBigNumber } from "~/composables/useBigNumber";
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
BackIcon,
|
|
LiquityIcon,
|
|
ButtonDashed,
|
|
SVGAdd,
|
|
SVGBalance,
|
|
SVGPercent,
|
|
},
|
|
setup() {
|
|
const router = useRouter();
|
|
|
|
const { div, isZero, gt, lt } = useBigNumber();
|
|
|
|
const {
|
|
formatUsd,
|
|
formatUsdMax,
|
|
formatPercent,
|
|
formatDecimal
|
|
} = useFormatting();
|
|
|
|
const {
|
|
troveOpened,
|
|
netValue,
|
|
borrowFee,
|
|
status,
|
|
liquidation,
|
|
liquidationPrice,
|
|
liquidationMaxPrice
|
|
} = useLiquityPosition();
|
|
|
|
const statusLiquidationRatio = computed(() =>
|
|
div(status.value, liquidation.value).toFixed()
|
|
);
|
|
|
|
const { color, text } = useStatus(statusLiquidationRatio);
|
|
|
|
function openNewTrove() {
|
|
router.push({ hash: "trove-new" });
|
|
}
|
|
|
|
return {
|
|
color,
|
|
text,
|
|
|
|
formatUsd,
|
|
formatUsdMax,
|
|
formatPercent,
|
|
formatDecimal,
|
|
|
|
troveOpened,
|
|
netValue,
|
|
borrowFee,
|
|
status,
|
|
liquidation,
|
|
liquidationPrice,
|
|
liquidationMaxPrice,
|
|
|
|
openNewTrove
|
|
};
|
|
}
|
|
});
|
|
</script>
|