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.
Comments on Detecting if a user has stopped interacting with a web view for a certain time
Post
Detecting if a user has stopped interacting with a web view for a certain time
+3
−0
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
- Heartbeat function - this is useful when idle detection is not allowed or supported. Basic example here.
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 comment thread