Для тайм-аута было достаточно легко найти решение, но с интервалом было немного сложнее.
Для решения этой проблемы я придумал следующие два класса:
function PauseableTimeout(func, delay){
this.func = func;
var _now = new Date().getTime();
this.triggerTime = _now + delay;
this.t = window.setTimeout(this.func,delay);
this.paused_timeLeft = 0;
this.getTimeLeft = function(){
var now = new Date();
return this.triggerTime - now;
}
this.pause = function(){
this.paused_timeLeft = this.getTimeLeft();
window.clearTimeout(this.t);
this.t = null;
}
this.resume = function(){
if (this.t == null){
this.t = window.setTimeout(this.func, this.paused_timeLeft);
}
}
this.clearTimeout = function(){ window.clearTimeout(this.t);}
}
function PauseableInterval(func, delay){
this.func = func;
this.delay = delay;
this.triggerSetAt = new Date().getTime();
this.triggerTime = this.triggerSetAt + this.delay;
this.i = window.setInterval(this.func, this.delay);
this.t_restart = null;
this.paused_timeLeft = 0;
this.getTimeLeft = function(){
var now = new Date();
return this.delay - ((now - this.triggerSetAt) % this.delay);
}
this.pause = function(){
this.paused_timeLeft = this.getTimeLeft();
window.clearInterval(this.i);
this.i = null;
}
this.restart = function(sender){
sender.i = window.setInterval(sender.func, sender.delay);
}
this.resume = function(){
if (this.i == null){
this.i = window.setTimeout(this.restart, this.paused_timeLeft, this);
}
}
this.clearInterval = function(){ window.clearInterval(this.i);}
}
Их можно реализовать как таковые:
var pt_hey = new PauseableTimeout(function(){
alert("hello");
}, 2000);
window.setTimeout(function(){
pt_hey.pause();
}, 1000);
window.setTimeout("pt_hey.start()", 2000);
В этом примере будет установлен тайм-аут паузы (pt_hey), который по расписанию будет предупреждать "эй" через две секунды. Другой тайм-аут приостанавливает pt_hey через одну секунду. Третий тайм-аут возобновляет pt_hey через две секунды. pt_hey запускается в течение одной секунды, останавливается на одну секунду, затем возобновляет работу. pt_hey срабатывает через три секунды.
Теперь о более сложных интервалах
var pi_hey = new PauseableInterval(function(){
console.log("hello world");
}, 2000);
window.setTimeout("pi_hey.pause()", 5000);
window.setTimeout("pi_hey.resume()", 6000);
В этом примере задается интервал паузы (pi_hey) для записи «hello world» в консоль каждые две секунды. Таймаут приостанавливает работу pi_hey через пять секунд. Другой тайм-аут возобновляет pi_hey через шесть секунд. Таким образом, pi_hey сработает дважды, запустится в течение одной секунды, остановится на одну секунду, запустится в течение одной секунды, а затем продолжит запуск каждые 2 секунды.
ДРУГИЕ ФУНКЦИИ
clearTimeout () и clearInterval ()
pt_hey.clearTimeout();
и pi_hey.clearInterval();
служат простым способом сбросить таймауты и интервалы.
getTimeLeft ()
pt_hey.getTimeLeft();
и pi_hey.getTimeLeft();
вернет, сколько миллисекунд до запланированного срабатывания следующего триггера.