useTimeAgo
Reactive time ago. Automatically update the time ago string when the time changes.
Demo
Usage
js
import { useTimeAgo } from '@vueuse/core'
const timeAgo = useTimeAgo(new Date(2021, 0, 1))
import { useTimeAgo } from '@vueuse/core'
const timeAgo = useTimeAgo(new Date(2021, 0, 1))
Component Usage
This function also provides a renderless component version via the
@vueuse/components
package. Learn more about the usage.
html
<UseTimeAgo v-slot="{ timeAgo }" :time="new Date(2021, 0, 1)">
Time Ago: {{ timeAgo }}
</UseTimeAgo>
<UseTimeAgo v-slot="{ timeAgo }" :time="new Date(2021, 0, 1)">
Time Ago: {{ timeAgo }}
</UseTimeAgo>
Non-Reactivity Usage
In case you don't need the reactivity, you can use the formatTimeAgo
function to get the formatted string instead of a Ref.
js
import { formatTimeAgo } from '@vueuse/core'
const timeAgo = formatTimeAgo(new Date(2021, 0, 1)) // string
import { formatTimeAgo } from '@vueuse/core'
const timeAgo = formatTimeAgo(new Date(2021, 0, 1)) // string
Type Declarations
Show Type Declarations
typescript
export type UseTimeAgoFormatter<T = number> = (
value: T,
isPast: boolean
) => string
export type UseTimeAgoUnitNamesDefault =
| "second"
| "minute"
| "hour"
| "day"
| "week"
| "month"
| "year"
export interface UseTimeAgoMessagesBuiltIn {
justNow: string
past: string | UseTimeAgoFormatter<string>
future: string | UseTimeAgoFormatter<string>
invalid: string
}
export type UseTimeAgoMessages<
UnitNames extends string = UseTimeAgoUnitNamesDefault
> = UseTimeAgoMessagesBuiltIn &
Record<UnitNames, string | UseTimeAgoFormatter<number>>
export interface FormatTimeAgoOptions<
UnitNames extends string = UseTimeAgoUnitNamesDefault
> {
/**
* Maximum unit (of diff in milliseconds) to display the full date instead of relative
*
* @default undefined
*/
max?: UnitNames | number
/**
* Formatter for full date
*/
fullDateFormatter?: (date: Date) => string
/**
* Messages for formatting the string
*/
messages?: UseTimeAgoMessages<UnitNames>
/**
* Minimum display time unit (default is minute)
*
* @default false
*/
showSecond?: boolean
/**
* Rounding method to apply.
*
* @default 'round'
*/
rounding?: "round" | "ceil" | "floor" | number
/**
* Custom units
*/
units?: UseTimeAgoUnit<UseTimeAgoUnitNamesDefault>[]
}
export interface UseTimeAgoOptions<
Controls extends boolean,
UnitNames extends string = UseTimeAgoUnitNamesDefault
> extends FormatTimeAgoOptions<UnitNames> {
/**
* Expose more controls
*
* @default false
*/
controls?: Controls
/**
* Intervals to update, set 0 to disable auto update
*
* @default 30_000
*/
updateInterval?: number
}
export interface UseTimeAgoUnit<
Unit extends string = UseTimeAgoUnitNamesDefault
> {
max: number
value: number
name: Unit
}
export type UseTimeAgoReturn<Controls extends boolean = false> =
Controls extends true
? {
timeAgo: ComputedRef<string>
} & Pausable
: ComputedRef<string>
/**
* Reactive time ago formatter.
*
* @see https://vueuse.org/useTimeAgo
* @param options
*/
export declare function useTimeAgo<
UnitNames extends string = UseTimeAgoUnitNamesDefault
>(
time: MaybeComputedRef<Date | number | string>,
options?: UseTimeAgoOptions<false, UnitNames>
): UseTimeAgoReturn<false>
export declare function useTimeAgo<
UnitNames extends string = UseTimeAgoUnitNamesDefault
>(
time: MaybeComputedRef<Date | number | string>,
options: UseTimeAgoOptions<true, UnitNames>
): UseTimeAgoReturn<true>
export declare function formatTimeAgo<
UnitNames extends string = UseTimeAgoUnitNamesDefault
>(
from: Date,
options?: FormatTimeAgoOptions<UnitNames>,
now?: Date | number
): string
export type UseTimeAgoFormatter<T = number> = (
value: T,
isPast: boolean
) => string
export type UseTimeAgoUnitNamesDefault =
| "second"
| "minute"
| "hour"
| "day"
| "week"
| "month"
| "year"
export interface UseTimeAgoMessagesBuiltIn {
justNow: string
past: string | UseTimeAgoFormatter<string>
future: string | UseTimeAgoFormatter<string>
invalid: string
}
export type UseTimeAgoMessages<
UnitNames extends string = UseTimeAgoUnitNamesDefault
> = UseTimeAgoMessagesBuiltIn &
Record<UnitNames, string | UseTimeAgoFormatter<number>>
export interface FormatTimeAgoOptions<
UnitNames extends string = UseTimeAgoUnitNamesDefault
> {
/**
* Maximum unit (of diff in milliseconds) to display the full date instead of relative
*
* @default undefined
*/
max?: UnitNames | number
/**
* Formatter for full date
*/
fullDateFormatter?: (date: Date) => string
/**
* Messages for formatting the string
*/
messages?: UseTimeAgoMessages<UnitNames>
/**
* Minimum display time unit (default is minute)
*
* @default false
*/
showSecond?: boolean
/**
* Rounding method to apply.
*
* @default 'round'
*/
rounding?: "round" | "ceil" | "floor" | number
/**
* Custom units
*/
units?: UseTimeAgoUnit<UseTimeAgoUnitNamesDefault>[]
}
export interface UseTimeAgoOptions<
Controls extends boolean,
UnitNames extends string = UseTimeAgoUnitNamesDefault
> extends FormatTimeAgoOptions<UnitNames> {
/**
* Expose more controls
*
* @default false
*/
controls?: Controls
/**
* Intervals to update, set 0 to disable auto update
*
* @default 30_000
*/
updateInterval?: number
}
export interface UseTimeAgoUnit<
Unit extends string = UseTimeAgoUnitNamesDefault
> {
max: number
value: number
name: Unit
}
export type UseTimeAgoReturn<Controls extends boolean = false> =
Controls extends true
? {
timeAgo: ComputedRef<string>
} & Pausable
: ComputedRef<string>
/**
* Reactive time ago formatter.
*
* @see https://vueuse.org/useTimeAgo
* @param options
*/
export declare function useTimeAgo<
UnitNames extends string = UseTimeAgoUnitNamesDefault
>(
time: MaybeComputedRef<Date | number | string>,
options?: UseTimeAgoOptions<false, UnitNames>
): UseTimeAgoReturn<false>
export declare function useTimeAgo<
UnitNames extends string = UseTimeAgoUnitNamesDefault
>(
time: MaybeComputedRef<Date | number | string>,
options: UseTimeAgoOptions<true, UnitNames>
): UseTimeAgoReturn<true>
export declare function formatTimeAgo<
UnitNames extends string = UseTimeAgoUnitNamesDefault
>(
from: Date,
options?: FormatTimeAgoOptions<UnitNames>,
now?: Date | number
): string
Source
Contributors
Anthony Fu
vaakian X
Demian
Joaquín Sánchez
Connor 'Birb' McCormick
836334258
sun0day
azaleta
vaakian X
Jelf
wheat
Alex Kozack