Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
I am interested in finding out all the aspects I need to cover in order to correctly assess if a user has stopped interacting with a web page. So far, I found the following: Idle Detection API -...
#2: Post edited
I am interested in finding out all the aspects I need to cover in order to correctly assess if a user has stopped interacting with a web page. So far, I was to find the following:- - **Idle Detection API** - this seems to do most of the work for idle detection. However, it requires user permission
- - **Detect page/tab/browser close** - this is covered by [beforeunload event](https://developer.mozilla.org/en-US/docs/Web/API/Window/beforeunload_event)
- - **Heartbeat function** - this is useful when idle detection is not allowed or supported. Basic example [here](https://gist.github.com/srkirkland/1157658).
- Is there anything else I should check for? I am currently focused on using this in an Angular SPA, but I guess that it is less relevant.
- I am interested in finding out all the aspects I need to cover in order to correctly assess if a user has stopped interacting with a web page. So far, I found the following:
- - **Idle Detection API** - this seems to do most of the work for idle detection. However, it requires user permission
- - **Detect page/tab/browser close** - this is covered by [beforeunload event](https://developer.mozilla.org/en-US/docs/Web/API/Window/beforeunload_event)
- - **Heartbeat function** - this is useful when idle detection is not allowed or supported. Basic example [here](https://gist.github.com/srkirkland/1157658).
- Is there anything else I should check for? I am currently focused on using this in an Angular SPA, but I guess that it is less relevant.
#1: Initial revision
Detecting if a user has stopped interacting with a web view for a certain time
I am interested in finding out all the aspects I need to cover in order to correctly assess if a user has stopped interacting with a web page. So far, I was to find the following: - **Idle Detection API** - this seems to do most of the work for idle detection. However, it requires user permission - **Detect page/tab/browser close** - this is covered by [beforeunload event](https://developer.mozilla.org/en-US/docs/Web/API/Window/beforeunload_event) - **Heartbeat function** - this is useful when idle detection is not allowed or supported. Basic example [here](https://gist.github.com/srkirkland/1157658). Is there anything else I should check for? I am currently focused on using this in an Angular SPA, but I guess that it is less relevant.