perf(client): improve MkTime performance

This commit is contained in:
syuilo 2023-01-04 08:54:54 +09:00
parent c89410cab0
commit 697836c17c
1 changed files with 3 additions and 2 deletions

View File

@ -37,12 +37,13 @@ const relative = $computed(() => {
});
function tick() {
// TODO:
now = new Date();
const ago = (now.getTime() - _time.getTime()) / 1000/*ms*/;
const next = ago < 60 ? 10000 : ago < 3600 ? 60000 : 180000;
tickId = window.setTimeout(() => {
window.requestAnimationFrame(tick);
}, 10000);
}, next);
}
let tickId: number;