eclipse-theia / theia

Eclipse Theia is a cloud & desktop IDE framework implemented in TypeScript.
http://theia-ide.org
Eclipse Public License 2.0
19.94k stars 2.49k forks source link

[vscode] Add WindowState active in plugin API #13718

Closed rschnekenbu closed 4 months ago

rschnekenbu commented 4 months ago

What it does

Implements the new VS Code API WindowState Active

Fixes #13692

Contributed on behalf of ST Microelectronics

How to test

This can be tested with the following extension:

This extension will display a notification has soon as window state is changed, focus or active. To test, you can get or lose focus with any combination of idle time to check activity state. User is considered as inactive after 20sec of doing nothing, and this timer will be reset has soon as a mouse button is clicked / key stroke or touch gesture.

Follow-ups

None

Review checklist

Reminder for reviewers

rschnekenbu commented 4 months ago

Thanks for your review, @msujew ! Good catch for the logic of the reset. I changed the inactivity check interval to 1sec and extended the number of checks to 30.