element-web/src/UserActivity.js

73 lines
2.3 KiB
JavaScript
Raw Normal View History

/*
2016-01-07 05:06:39 +01:00
Copyright 2015, 2016 OpenMarket Ltd
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
var dis = require("./dispatcher");
var MIN_DISPATCH_INTERVAL = 1 * 1000;
/**
* This class watches for user activity (moving the mouse or pressing a key)
* and dispatches the user_activity action at times when the user is interacting
* with the app (but at a much lower frequency than mouse move events)
*/
class UserActivity {
/**
* Start listening to user activity
*/
start() {
document.onmousemove = this._onUserActivity.bind(this);
document.onkeypress = this._onUserActivity.bind(this);
2016-01-08 23:19:31 +01:00
// can't use document.scroll here because that's only the document
// itself being scrolled. Need to use addEventListener's useCapture.
window.addEventListener('scroll', this._onUserActivity.bind(this), true);
2015-11-18 15:51:06 +01:00
this.lastActivityAtTs = new Date().getTime();
this.lastDispatchAtTs = 0;
}
/**
* Stop tracking user activity
*/
stop() {
document.onmousemove = undefined;
document.onkeypress = undefined;
2016-01-08 23:19:31 +01:00
window.removeEventListener('scroll', this._onUserActivity.bind(this), true);
}
_onUserActivity(event) {
if (event.screenX) {
if (event.screenX === this.lastScreenX &&
event.screenY === this.lastScreenY)
{
// mouse hasn't actually moved
return;
}
this.lastScreenX = event.screenX;
this.lastScreenY = event.screenY;
}
2015-11-18 15:51:06 +01:00
this.lastActivityAtTs = (new Date).getTime();
if (this.lastDispatchAtTs < this.lastActivityAtTs - MIN_DISPATCH_INTERVAL) {
this.lastDispatchAtTs = this.lastActivityAtTs;
dis.dispatch({
action: 'user_activity'
});
}
}
}
module.exports = new UserActivity();