chore: back to setTimeout

This commit is contained in:
Acid Chicken (硫酸鶏) 2023-04-13 12:34:53 +09:00 committed by GitHub
parent e421ebf508
commit 6b88a6d19d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 6 deletions

View File

@ -11,8 +11,6 @@
import { onUnmounted } from 'vue';
import { i18n } from '@/i18n';
import { dateTimeFormat } from '@/scripts/intl-const';
import { defaultIdlingRenderScheduler } from '@/scripts/idle-render.js';
const props = withDefaults(defineProps<{
time: Date | string | number | null;
origin?: Date | null;
@ -46,16 +44,19 @@ const relative = $computed<string>(() => {
i18n.ts._ago.future);
});
function tick(): void {
let tickId: number;
function tick() {
now = props.origin ?? (new Date()).getTime();
const ago = (now - _time) / 1000/*ms*/;
const next = ago < 60 ? 10000 : ago < 3600 ? 60000 : 180000;
tickId = window.setTimeout(tick, next);
}
if (props.mode === 'relative' || props.mode === 'detail') {
tick();
defaultIdlingRenderScheduler.add(tick);
onUnmounted(() => {
defaultIdlingRenderScheduler.delete(tick);
window.clearTimeout(tickId);
});
}
</script>