aboutsummaryrefslogtreecommitdiff
path: root/front-end/src/components/global/OtpInput.vue
blob: 59f6fa112e069251bd591167b80f60aec21f1873 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<script setup lang="ts">
import { toRefs } from 'vue';
import { IMfaFlowContinuiation, apiCall, useMessage, useWait } from '@vnuge/vnlib.browser';
import { toSafeInteger } from 'lodash-es';
import VOtpInput from 'vue3-otp-input';

const emit = defineEmits(['clear'])

const props = defineProps<{
    upgrade: IMfaFlowContinuiation
}>()

const { upgrade } = toRefs(props)
const { waiting } = useWait();
const { onInput } = useMessage();

const SubimitTotp = (code: string) => {

    //If a request is still pending, do nothing
    if (waiting.value) {
        return
    }

    apiCall(async ({ toaster }) => {
        //Submit totp code
        const res = await upgrade.value.submit({ code: toSafeInteger(code) })
        res.getResultOrThrow()

        emit('clear')

        // Push a new toast message
        toaster.general.success({
            title: 'Success',
            text: 'You have been logged in',
        })
    })
}

</script>

<template>
    <div id="totp-login-form">
        <div class="flex">
            <div class="mx-auto mt-4">
                <VOtpInput class="otp-input" input-type="letter-numeric" :is-disabled="waiting" separator=""
                    input-classes="primary input rounded" :num-inputs="6" value="" @on-change="onInput"
                    @on-complete="SubimitTotp" />
            </div>
        </div>
    </div>
</template>

<style lang="scss">
</style>