mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-12-03 13:45:59 +01:00
60 lines
1.4 KiB
Vue
60 lines
1.4 KiB
Vue
|
<script setup>
|
||
|
import { useUserStore } from '@/stores/user'
|
||
|
|
||
|
const user = useUserStore()
|
||
|
const events = ref(['click', 'mousedown', 'scroll', 'keypress', 'load'])
|
||
|
const logoutTimer = ref(null)
|
||
|
// const elapsed = ref(0)
|
||
|
// const counter = ref(null)
|
||
|
|
||
|
const props = defineProps({
|
||
|
kickAfter: {
|
||
|
type: Number,
|
||
|
required: true
|
||
|
},
|
||
|
})
|
||
|
|
||
|
onMounted(() => {
|
||
|
events.value.forEach(function (event) {
|
||
|
window.addEventListener(event, resetTimer)
|
||
|
}, this)
|
||
|
|
||
|
setTimer()
|
||
|
})
|
||
|
|
||
|
onUnmounted(() => {
|
||
|
events.value.forEach(function (event) {
|
||
|
window.removeEventListener(event, resetTimer)
|
||
|
}, this)
|
||
|
|
||
|
clearTimeout(logoutTimer.value)
|
||
|
// clearInterval(counter.value)
|
||
|
})
|
||
|
|
||
|
function setTimer() {
|
||
|
// elapsed.value = 0
|
||
|
// clearInterval(counter.value)
|
||
|
|
||
|
logoutTimer.value = setTimeout(logoutUser, props.kickAfter * 60 * 1000)
|
||
|
// counter.value = setInterval(() => {
|
||
|
// elapsed.value += 1
|
||
|
// console.log(elapsed.value + '/' + props.kickAfter * 60)
|
||
|
// }, 1000);
|
||
|
}
|
||
|
|
||
|
function logoutUser() {
|
||
|
clearTimeout(logoutTimer.value)
|
||
|
console.log('inativity detected, user kicked out')
|
||
|
|
||
|
user.logout()
|
||
|
}
|
||
|
|
||
|
function resetTimer() {
|
||
|
clearTimeout(logoutTimer.value)
|
||
|
setTimer()
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
|
||
|
</template>
|