mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-23 00:33:18 +01:00
54 lines
1.1 KiB
Vue
54 lines
1.1 KiB
Vue
<script setup>
|
|
const props = defineProps({
|
|
stepCount: {
|
|
type: Number,
|
|
default: 10
|
|
},
|
|
initialIndex: {
|
|
type: Number,
|
|
default: null
|
|
},
|
|
period: { // Used only to identify the dots component in Accounts.vue
|
|
type: Number,
|
|
default: null
|
|
},
|
|
})
|
|
|
|
const activeDot = ref(0)
|
|
const isOff = computed(() => {
|
|
return activeDot.value == -1
|
|
})
|
|
|
|
/**
|
|
* Turns On dots
|
|
*/
|
|
function turnOn(index) {
|
|
activeDot.value = index < props.stepCount ? index + 1 : 1
|
|
}
|
|
|
|
/**
|
|
* Turns Off all dots
|
|
*/
|
|
function turnOff() {
|
|
activeDot.value = -1
|
|
}
|
|
|
|
onMounted(() => {
|
|
if (! isNaN(props.initialIndex)) {
|
|
turnOn(props.initialIndex)
|
|
}
|
|
})
|
|
|
|
defineExpose({
|
|
turnOn,
|
|
turnOff,
|
|
props
|
|
})
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<ul class="dots" :class="{'off' : isOff}">
|
|
<li v-for="n in stepCount" :key="n" :data-is-active="n == activeDot ? true : null"></li>
|
|
</ul>
|
|
</template> |