mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-28 19:23:11 +01:00
70 lines
1.5 KiB
Vue
70 lines
1.5 KiB
Vue
<script setup>
|
|
import { useUserStore } from '@/stores/user'
|
|
|
|
const user = useUserStore()
|
|
const events = ref(['mousedown', 'scroll', 'keypress'])
|
|
const logoutTimer = ref(null)
|
|
// const elapsed = ref(0)
|
|
// const counter = ref(null)
|
|
|
|
const props = defineProps({
|
|
kickAfter: {
|
|
type: Number,
|
|
required: true
|
|
},
|
|
})
|
|
|
|
watch(
|
|
() => props.kickAfter,
|
|
() => {
|
|
restartTimer()
|
|
}
|
|
)
|
|
|
|
onMounted(() => {
|
|
events.value.forEach(function (event) {
|
|
window.addEventListener(event, restartTimer)
|
|
}, this)
|
|
|
|
startTimer()
|
|
})
|
|
|
|
onUnmounted(() => {
|
|
events.value.forEach(function (event) {
|
|
window.removeEventListener(event, restartTimer)
|
|
}, this)
|
|
|
|
stopTimer()
|
|
})
|
|
|
|
function startTimer() {
|
|
logoutTimer.value = setTimeout(logoutUser, props.kickAfter * 60 * 1000)
|
|
// counter.value = setInterval(() => {
|
|
// elapsed.value += 1
|
|
// console.log(elapsed.value + '/' + props.kickAfter * 60)
|
|
// }, 1000)
|
|
}
|
|
|
|
// Triggers the user logout
|
|
function logoutUser() {
|
|
clearTimeout(logoutTimer.value)
|
|
user.logout({ kicked: true})
|
|
}
|
|
|
|
// Restarts the timer
|
|
function restartTimer() {
|
|
stopTimer()
|
|
startTimer()
|
|
}
|
|
|
|
// Stops the timer
|
|
function stopTimer() {
|
|
clearTimeout(logoutTimer.value)
|
|
// elapsed.value = 0
|
|
// clearInterval(counter.value)
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
|
|
</template> |