mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 19:26:42 +08:00

Specifications define timers capable of accepting optional parameters. https://www.w3.org/TR/2011/WD-html5-20110525/timers.html#timers This PR goal is to standardize such behavior in NativeScript too.
74 lines
1.8 KiB
TypeScript
74 lines
1.8 KiB
TypeScript
/**
|
|
* Android specific timer functions implementation.
|
|
*/
|
|
var timeoutHandler;
|
|
var timeoutCallbacks = {};
|
|
var timerId = 0;
|
|
|
|
function createHandlerAndGetId(): number {
|
|
if (!timeoutHandler) {
|
|
timeoutHandler = new android.os.Handler(android.os.Looper.myLooper());
|
|
}
|
|
|
|
timerId++;
|
|
return timerId;
|
|
}
|
|
|
|
export function setTimeout(callback: Function, milliseconds = 0, ...args): number {
|
|
const id = createHandlerAndGetId();
|
|
const invoke = () => callback(...args);
|
|
const zoneBound = zonedCallback(invoke);
|
|
|
|
var runnable = new java.lang.Runnable({
|
|
run: () => {
|
|
zoneBound();
|
|
|
|
if (timeoutCallbacks[id]) {
|
|
delete timeoutCallbacks[id];
|
|
}
|
|
}
|
|
});
|
|
|
|
if (!timeoutCallbacks[id]) {
|
|
timeoutCallbacks[id] = runnable;
|
|
}
|
|
|
|
timeoutHandler.postDelayed(runnable, long(milliseconds));
|
|
|
|
return id;
|
|
}
|
|
|
|
export function clearTimeout(id: number): void {
|
|
let index = id;
|
|
if (timeoutCallbacks[index]) {
|
|
timeoutHandler.removeCallbacks(timeoutCallbacks[index]);
|
|
delete timeoutCallbacks[index];
|
|
}
|
|
}
|
|
|
|
export function setInterval(callback: Function, milliseconds = 0, ...args): number {
|
|
const id = createHandlerAndGetId();
|
|
const handler = timeoutHandler;
|
|
const invoke = () => callback(...args);
|
|
const zoneBound = zonedCallback(invoke);
|
|
|
|
var runnable = new java.lang.Runnable({
|
|
run: () => {
|
|
zoneBound();
|
|
if (timeoutCallbacks[id]) {
|
|
handler.postDelayed(runnable, long(milliseconds));
|
|
}
|
|
}
|
|
});
|
|
|
|
if (!timeoutCallbacks[id]) {
|
|
timeoutCallbacks[id] = runnable;
|
|
}
|
|
|
|
timeoutHandler.postDelayed(runnable, long(milliseconds));
|
|
|
|
return id;
|
|
}
|
|
|
|
export var clearInterval = clearTimeout;
|