2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2018-02-05 05:25:19 +00:00
|
|
|
<template>
|
2023-10-20 02:51:01 +00:00
|
|
|
<time :title="absolute" :class="{ [$style.old1]: colored && (ago > 60 * 60 * 24 * 90), [$style.old2]: colored && (ago > 60 * 60 * 24 * 180) }">
|
2023-02-24 07:21:49 +00:00
|
|
|
<template v-if="invalid">{{ i18n.ts._ago.invalid }}</template>
|
|
|
|
<template v-else-if="mode === 'relative'">{{ relative }}</template>
|
2022-01-15 22:47:28 +00:00
|
|
|
<template v-else-if="mode === 'absolute'">{{ absolute }}</template>
|
|
|
|
<template v-else-if="mode === 'detail'">{{ absolute }} ({{ relative }})</template>
|
2018-02-13 04:49:48 +00:00
|
|
|
</time>
|
2018-02-05 05:25:19 +00:00
|
|
|
</template>
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2022-01-15 22:47:28 +00:00
|
|
|
<script lang="ts" setup>
|
2023-04-13 14:23:11 +00:00
|
|
|
import isChromatic from 'chromatic/isChromatic';
|
2023-07-04 13:48:39 +00:00
|
|
|
import { onMounted, onUnmounted } from 'vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { dateTimeFormat } from '@/scripts/intl-const.js';
|
2018-02-09 09:28:06 +00:00
|
|
|
|
2022-01-15 22:47:28 +00:00
|
|
|
const props = withDefaults(defineProps<{
|
2023-02-24 07:21:49 +00:00
|
|
|
time: Date | string | number | null;
|
2023-04-04 00:38:34 +00:00
|
|
|
origin?: Date | null;
|
2022-01-15 22:47:28 +00:00
|
|
|
mode?: 'relative' | 'absolute' | 'detail';
|
2023-10-20 02:51:01 +00:00
|
|
|
colored?: boolean;
|
2022-01-15 22:47:28 +00:00
|
|
|
}>(), {
|
2023-04-13 14:23:11 +00:00
|
|
|
origin: isChromatic() ? new Date('2023-04-01T00:00:00Z') : null,
|
2022-01-15 22:47:28 +00:00
|
|
|
mode: 'relative',
|
|
|
|
});
|
|
|
|
|
2023-02-24 07:21:49 +00:00
|
|
|
const _time = props.time == null ? NaN :
|
|
|
|
typeof props.time === 'number' ? props.time :
|
|
|
|
(props.time instanceof Date ? props.time : new Date(props.time)).getTime();
|
|
|
|
const invalid = Number.isNaN(_time);
|
|
|
|
const absolute = !invalid ? dateTimeFormat.format(_time) : i18n.ts._ago.invalid;
|
2018-06-09 23:03:02 +00:00
|
|
|
|
2023-04-04 00:38:34 +00:00
|
|
|
let now = $ref((props.origin ?? new Date()).getTime());
|
2023-07-04 13:48:39 +00:00
|
|
|
const ago = $computed(() => (now - _time) / 1000/*ms*/);
|
|
|
|
|
2023-02-24 07:21:49 +00:00
|
|
|
const relative = $computed<string>(() => {
|
|
|
|
if (props.mode === 'absolute') return ''; // absoluteではrelativeを使わないので計算しない
|
|
|
|
if (invalid) return i18n.ts._ago.invalid;
|
|
|
|
|
2022-01-15 22:47:28 +00:00
|
|
|
return (
|
2022-06-25 18:12:58 +00:00
|
|
|
ago >= 31536000 ? i18n.t('_ago.yearsAgo', { n: Math.round(ago / 31536000).toString() }) :
|
|
|
|
ago >= 2592000 ? i18n.t('_ago.monthsAgo', { n: Math.round(ago / 2592000).toString() }) :
|
|
|
|
ago >= 604800 ? i18n.t('_ago.weeksAgo', { n: Math.round(ago / 604800).toString() }) :
|
|
|
|
ago >= 86400 ? i18n.t('_ago.daysAgo', { n: Math.round(ago / 86400).toString() }) :
|
|
|
|
ago >= 3600 ? i18n.t('_ago.hoursAgo', { n: Math.round(ago / 3600).toString() }) :
|
|
|
|
ago >= 60 ? i18n.t('_ago.minutesAgo', { n: (~~(ago / 60)).toString() }) :
|
|
|
|
ago >= 10 ? i18n.t('_ago.secondsAgo', { n: (~~(ago % 60)).toString() }) :
|
2023-11-17 08:54:13 +00:00
|
|
|
ago >= -3 ? i18n.ts._ago.justNow :
|
2023-11-17 06:05:37 +00:00
|
|
|
ago < -31536000 ? i18n.t('_timeIn.years', { n: Math.round(-ago / 31536000).toString() }) :
|
|
|
|
ago < -2592000 ? i18n.t('_timeIn.months', { n: Math.round(-ago / 2592000).toString() }) :
|
|
|
|
ago < -604800 ? i18n.t('_timeIn.weeks', { n: Math.round(-ago / 604800).toString() }) :
|
|
|
|
ago < -86400 ? i18n.t('_timeIn.days', { n: Math.round(-ago / 86400).toString() }) :
|
|
|
|
ago < -3600 ? i18n.t('_timeIn.hours', { n: Math.round(-ago / 3600).toString() }) :
|
|
|
|
ago < -60 ? i18n.t('_timeIn.minutes', { n: (~~(-ago / 60)).toString() }) :
|
2023-11-17 08:54:13 +00:00
|
|
|
i18n.t('_timeIn.seconds', { n: (~~(-ago % 60)).toString() })
|
2023-11-17 06:05:37 +00:00
|
|
|
);
|
2018-02-13 04:49:48 +00:00
|
|
|
});
|
2022-01-15 22:47:28 +00:00
|
|
|
|
2023-01-06 07:58:43 +00:00
|
|
|
let tickId: number;
|
2023-07-04 13:48:39 +00:00
|
|
|
let currentInterval: number;
|
2023-01-06 07:58:43 +00:00
|
|
|
|
2022-01-15 22:47:28 +00:00
|
|
|
function tick() {
|
2023-07-04 13:48:39 +00:00
|
|
|
now = (new Date()).getTime();
|
|
|
|
const nextInterval = ago < 60 ? 10000 : ago < 3600 ? 60000 : 180000;
|
2022-01-15 22:47:28 +00:00
|
|
|
|
2023-07-04 13:48:39 +00:00
|
|
|
if (currentInterval !== nextInterval) {
|
|
|
|
if (tickId) window.clearInterval(tickId);
|
|
|
|
currentInterval = nextInterval;
|
|
|
|
tickId = window.setInterval(tick, nextInterval);
|
|
|
|
}
|
2022-01-15 22:47:28 +00:00
|
|
|
}
|
|
|
|
|
2023-07-04 13:48:39 +00:00
|
|
|
if (!invalid && props.origin === null && (props.mode === 'relative' || props.mode === 'detail')) {
|
|
|
|
onMounted(() => {
|
|
|
|
tick();
|
|
|
|
});
|
2022-01-15 22:47:28 +00:00
|
|
|
onUnmounted(() => {
|
2023-07-04 13:48:39 +00:00
|
|
|
if (tickId) window.clearInterval(tickId);
|
2022-01-15 22:47:28 +00:00
|
|
|
});
|
|
|
|
}
|
2018-02-05 05:25:19 +00:00
|
|
|
</script>
|
2023-10-20 02:51:01 +00:00
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
.old1 {
|
|
|
|
color: var(--warn);
|
|
|
|
}
|
|
|
|
|
|
|
|
.old1.old2 {
|
|
|
|
color: var(--error);
|
|
|
|
}
|
|
|
|
</style>
|