brozzler/umbra/behaviors.d/marquette_edu.js
2014-09-17 15:26:13 -07:00

57 lines
1.4 KiB
JavaScript

// {"url_regex":"^https?://(?:www\\.)?marquette\\.edu/.*$", "request_idle_timeout_sec":10}
//
// vim:set sw=8 et:
//
var umbraState = {'idleSince':null};
var umbraIntervalID = setInterval(umbraScrollInterval,50);
var umbraAlreadyClicked = {};
function umbraScrollInterval() {
//if not at the bottom
if(window.scrollY + window.innerHeight < document.documentElement.scrollHeight) {
umbraScroll();
umbraState.idleSince=null;
}
else {
var videoBoxes = document.querySelectorAll("div#vid_box a");
var clickedVideo = false;
if(videoBoxes.length>0) {
for(i=0;i<videoBoxes.length;i++) {
if(!(videoBoxes[i] in umbraAlreadyClicked)){
videoBoxes[i].click();
umbraState.idleSince=Date.now();
umbraAlreadyClicked[videoBoxes[i]]=true;
clickedVideo=true;
}
}
}
if(!clickedVideo && umbraState.idleSince==null) {
umbraState.idleSince=Date.now();
}
}
}
function umbraScroll() {
window.scrollBy(0,50);
}
// If we haven't had anything to do (scrolled, clicked, etc) in this amount of
// time, then we consider ourselves finished with the page.
var UMBRA_USER_ACTION_IDLE_TIMEOUT_SEC = 10;
// Called from outside of this script.
var umbraBehaviorFinished = function() {
if (umbraState.idleSince != null) {
var idleTimeMs = Date.now() - umbraState.idleSince;
if (idleTimeMs / 1000 > UMBRA_USER_ACTION_IDLE_TIMEOUT_SEC) {
return true;
}
}
return false;
}