No dependencies — TypeScript — SSR support — Readable store for idle value — onIdle
callback
npm i svelte-idle -D
<script>
import { listen, idle, onIdle } from 'svelte-idle'
// Run listen on component Initialization
listen()
// Run code when the user idle via a callback...
onIdle(() => {
console.log('User is idle')
})
//... or by using the idle store
$: {
if($idle) console.log('User is idle')
}
</script>
User is idle: {$idle}
The listen method accepts an optional object (type: SvelteIdleListenConfig
). The following values can be defined:
number
60_000
(10 minutes)number
200
import { listen } from 'svelte-idle'
listen({
timer: 60_000,
cycle: 500
})
A readable store that reflects the current idle-state.
Callback which will be fired everytime idle becomes true. Returns a method for clearing the listener.
import { onMoumt } from 'svelte'
import { onIdle } from 'svelte-idle'
onMount(() => {
const unsub = onIdle(() => console.log('User is idle!'))
return unsub
})