PageInfo can start and stop all periodic functions (to be implemented when switching tabs)

This commit is contained in:
Tamius Han 2018-05-23 23:57:51 +02:00
parent 8d7cefd420
commit 8f201e1ee0
3 changed files with 45 additions and 5 deletions

View File

@ -43,18 +43,35 @@ class PlayerData {
return ( window.innerHeight == window.screen.height && window.innerWidth == window.screen.width); return ( window.innerHeight == window.screen.height && window.innerWidth == window.screen.width);
} }
startChangeDetection(){
this.scheduleGhettoWatcher();
start(){
this.startChangeDetection();
}
stop(){
this.halted = true;
this.stopChangeDetection();
} }
destroy() { destroy() {
this.stopChangeDetection(); this.stopChangeDetection();
} }
startChangeDetection(){
this.scheduleGhettoWatcher();
}
stopChangeDetection(){
clearTimeout(this.watchTimeout);
}
scheduleGhettoWatcher(timeout, force_reset) { scheduleGhettoWatcher(timeout, force_reset) {
if(! timeout){ if(! timeout){
timeout = 100; timeout = 100;
} }
if(this.halted){
return;
}
// don't allow more than 1 instance // don't allow more than 1 instance
if(this.watchTimeout){ if(this.watchTimeout){
@ -74,9 +91,6 @@ class PlayerData {
); );
} }
stopChangeDetection(){
clearTimeout(this.watchTimeout);
}
ghettoWatcher(){ ghettoWatcher(){
if(this.checkPlayerSizeChange()){ if(this.checkPlayerSizeChange()){

View File

@ -154,6 +154,24 @@ class PageInfo {
} }
} }
// to je treba klicat ob menjavi zavihkov
// these need to be called on tab switch
pauseProcessing(){
for(var vd of this.videos){
vd.pause();
}
}
resumeProcessing(resumeAutoar = false){
for(var vd of this.videos){
vd.resume();
if(resumeAutoar){
vd.resumeAutoAr();
}
}
}
setAr(ar){ setAr(ar){
// TODO: find a way to only change aspect ratio for one video // TODO: find a way to only change aspect ratio for one video
for(var vd in this.videos){ for(var vd in this.videos){

View File

@ -33,6 +33,14 @@ class Resizer {
this.destroyed = false; this.destroyed = false;
} }
start(){
this.startCssWatcher();
}
stop(){
this.stopCssWatcher();
}
destroy(){ destroy(){
this.destroyed = true; this.destroyed = true;
this.stopCssWatcher(); this.stopCssWatcher();