Create Modal to redirect to active lock
This commit is contained in:
parent
eabc54e5dd
commit
48972a6437
@ -1,8 +1,25 @@
|
|||||||
<script setup lang="ts"></script>
|
<script setup lang="ts">
|
||||||
|
import { ref } from 'vue';
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
isRedirectModal: Boolean,
|
||||||
|
});
|
||||||
|
|
||||||
|
const modalColor = ref<string>("white");
|
||||||
|
const modalHeight = ref<string>("250px");
|
||||||
|
const pFontSize = ref<string>("16px");
|
||||||
|
|
||||||
|
if (props.isRedirectModal) {
|
||||||
|
modalColor.value = "rgba(251, 191, 36, 1)";
|
||||||
|
modalHeight.value = "150px";
|
||||||
|
pFontSize.value = "20px";
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
class="modal-overlay inset-0 fixed justify-center backdrop-blur-sm sm:backdrop-blur-none"
|
class="modal-overlay inset-0 fixed justify-center backdrop-blur-sm sm:backdrop-blur-none"
|
||||||
|
v-if="!isRedirectModal"
|
||||||
>
|
>
|
||||||
<div class="modal px-5 text-center">
|
<div class="modal px-5 text-center">
|
||||||
<p
|
<p
|
||||||
@ -21,6 +38,32 @@
|
|||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div
|
||||||
|
class="modal-overlay inset-0 fixed justify-center backdrop-blur-sm"
|
||||||
|
v-if="isRedirectModal"
|
||||||
|
>
|
||||||
|
<div class="modal px-5 text-center">
|
||||||
|
<p
|
||||||
|
class="text-black text-lg tracking-tighter leading-tight my-6 mx-2 text-justify font-semibold"
|
||||||
|
>
|
||||||
|
Retomar a última compra?
|
||||||
|
</p>
|
||||||
|
<div class="flex justify-around items-center px-2">
|
||||||
|
<button
|
||||||
|
@click="$emit('close-modal')"
|
||||||
|
class="border-2 border-solid border-white-400 mt-2 font-semibold"
|
||||||
|
>
|
||||||
|
Não
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
@click="$emit('go-to-lock')"
|
||||||
|
class="border-2 border-solid border-white-400 mt-2 font-semibold"
|
||||||
|
>
|
||||||
|
Sim
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
@ -29,8 +72,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.modal {
|
.modal {
|
||||||
background-color: white;
|
background-color: v-bind(modalColor);
|
||||||
height: 250px;
|
height: v-bind(modalHeight);
|
||||||
width: 300px;
|
width: 300px;
|
||||||
margin-top: 50%;
|
margin-top: 50%;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
@ -54,7 +97,7 @@ h6 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
font-size: 16px;
|
font-size: v-bind(pFontSize);
|
||||||
}
|
}
|
||||||
|
|
||||||
button {
|
button {
|
||||||
|
@ -154,7 +154,11 @@ const validatePix = async (): Promise<void> => {
|
|||||||
@button-clicked="emit('pixValidated', e2eId)"
|
@button-clicked="emit('pixValidated', e2eId)"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<CustomModal v-if="showModal" @close-modal="showModal = false" />
|
<CustomModal
|
||||||
|
v-if="showModal"
|
||||||
|
@close-modal="showModal = false"
|
||||||
|
:isRedirectModal="false"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -5,6 +5,7 @@ import BuyConfirmedComponent from "@/components/BuyConfirmedComponent/BuyConfirm
|
|||||||
import { ref, onMounted } from "vue";
|
import { ref, onMounted } from "vue";
|
||||||
import { useEtherStore } from "@/store/ether";
|
import { useEtherStore } from "@/store/ether";
|
||||||
import QrCodeComponent from "@/components/QrCodeComponent.vue";
|
import QrCodeComponent from "@/components/QrCodeComponent.vue";
|
||||||
|
import CustomModal from "@/components/CustomModal.vue";
|
||||||
import { storeToRefs } from "pinia";
|
import { storeToRefs } from "pinia";
|
||||||
import { addLock, releaseLock } from "@/blockchain/buyerMethods";
|
import { addLock, releaseLock } from "@/blockchain/buyerMethods";
|
||||||
import {
|
import {
|
||||||
@ -31,6 +32,7 @@ const pixTarget = ref<number>();
|
|||||||
const tokenAmount = ref<number>();
|
const tokenAmount = ref<number>();
|
||||||
const _lockID = ref<string>("");
|
const _lockID = ref<string>("");
|
||||||
const loadingRelease = ref<boolean>(false);
|
const loadingRelease = ref<boolean>(false);
|
||||||
|
const showModal = ref<boolean>(true);
|
||||||
const lastWalletReleaseTransactions = ref<Event[]>([]);
|
const lastWalletReleaseTransactions = ref<Event[]>([]);
|
||||||
|
|
||||||
const confirmBuyClick = async (
|
const confirmBuyClick = async (
|
||||||
@ -94,6 +96,12 @@ onMounted(async () => {
|
|||||||
v-if="flowStep == Step.Search"
|
v-if="flowStep == Step.Search"
|
||||||
@token-buy="confirmBuyClick"
|
@token-buy="confirmBuyClick"
|
||||||
/>
|
/>
|
||||||
|
<CustomModal
|
||||||
|
v-if="flowStep == Step.Search && showModal"
|
||||||
|
:isRedirectModal="true"
|
||||||
|
@close-modal="showModal = false"
|
||||||
|
@go-to-lock="flowStep = Step.Buy"
|
||||||
|
/>
|
||||||
<div v-if="flowStep == Step.Buy">
|
<div v-if="flowStep == Step.Buy">
|
||||||
<QrCodeComponent
|
<QrCodeComponent
|
||||||
:pixTarget="String(pixTarget)"
|
:pixTarget="String(pixTarget)"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user