v-idle
V-idle is a universal Vue plugin compatible with Vue 2 and Vue 3 to detect idle/non-active users.
Installation
The plugin can be installed by npm, yarn or pnpm. Alternatively it can be used through jsdelivr CDN.
NPM
npm install v-idle --save
Yarn
yarn add v-idle
PNPM
pnpm add v-idle
Jsdelivr CDN
Latest version of the plugin is available here: https://cdn.jsdelivr.net/npm/v-idle@latest/build/vidle.umd.min.js
Basic usage
From 1.0.0 version the plugin supports vue 2 and vue 3 with the help of vue-demi package.
Starting with this version, the plugin no longer requires installation via Vue.use()
. Simply import the 'Vidle' component where needed.
Vue 2.6+
For Vue 2.6+, ensure you have the @vue/composition-api installed.
import Vue from 'vue'
import VueCompositionAPI from '@vue/composition-api'
Vue.use(VueCompositionAPI)
import { defineComponent } from '@vue/composition-api'
import Vidle from 'v-idle'
export default defineComponent({
components: {
Vidle,
},
})
Vue 2.7.2
import { defineComponent } from 'vue'
import Vidle from 'v-idle'
export default defineComponent({
components: {
Vidle,
},
})
Vue 3
import { defineComponent } from 'vue'
import Vidle from 'v-idle'
export default defineComponent({
components: {
Vidle,
},
})
Component
Inside template use v-idle component:
<Vidle />
It will show timer counting down from 05:00 by default.
Options
@idle
Type: Function
Default: none
Executes when the timer reaches 00:00
<Vidle @idle="onidle" />
@remind
Type: Function
Default: none
Executes when the timer reaches time in seconds before 00:00
<Vidle
@remind="onremind"
:reminders="[5, 10, 20, 60]" />
@refresh
Type: Function
Argument: object with type of event (for example 'mousemove') and key (if timer was refreshed with keyboard)
Default: none
Executes when activity is detected
<Vidle @refresh="onrefresh" />
methods: {
onrefresh(event: {
type: string
key: string | undefined
}) {
console.info(event.type)
console.info(event.key)
if (event.type === 'keydown') {
if (event.key !== undefined && event.key === 'Escape') {
console.error('Escape clicked')
}
}
},
}
reminders
Type: Array
Default: empty array
Array with seconds. Each value will execute @remind
loop
Type: Boolean
Default: false
If set to true, timer will start execution again after 00:00
<Vidle :loop="true" />
syncKey
Type: String
Default: ''
Setting syncKey
to a non-empty string activates the propagation of the refresh
event across all browser tabs and windows for component instances sharing the same syncKey
.
However, it's important to note that while the refresh
event is synchronized, the internal timer associated with each component instance continues to count independently from the moment when the component is mounted in each tab or window. In fact, the first refresh
event will reset timer in all the component instances.
The synchronization feature is implemented using the browser's BroadcastChannel API, which is supported by all major browsers. For environments where BroadcastChannel is not supported, such as in some older browsers, consider integrating a polyfill to ensure compatibility.
<Vidle syncKey="key-to-sync-between-tabs-and-windows" />
events
Type: Array
Default: ['mousemove', 'keypress']
Each event will break countdown.
<Vidle :events="['mousemove']" />
wait
Type: Number
Default: 0
How many second to wait before starting countdown.
<Vidle :wait="100" />
duration
Type: Number
Default: 60 * 5
Should be in seconds, default value is 60 * 5 seconds, so 5 minutes.
<Vidle :duration="300" />
Example
Create a timer for 300 seconds (5 minutes) with loop, remind 10 and 15 second before 00:00 with function onremind(), wait 5 seconds before showing user the timer, execute function onidle() when the timer reaches 00:00.
<Vidle
@idle="onidle"
@remind="onremind"
:loop="true"
:reminders="[10, 15]"
:wait="5"
:duration="300" />
methods: {
onidle() {
alert('You have been logged out');
},
onremind(time) {
// alert seconds remaining to 00:00
alert(time);
}
}
Tests
To run tests type:
npm run test
To run particular test type:
npm run test -- -t "test_name"
Roadmap
- Add option to show seconds timer instead of clock timer
License
v-idle
uses the MIT License (MIT). Please see the license file for more information.