feat: support @username@twitter.com as link
parent
4ca2053bb2
commit
76ccf5775e
|
@ -2,11 +2,11 @@ import type { MaybeComputedRef, MaybeRef, UseTimeAgoOptions } from '@vueuse/core
|
||||||
|
|
||||||
const formatter = Intl.NumberFormat()
|
const formatter = Intl.NumberFormat()
|
||||||
|
|
||||||
export const formattedNumber = (num: number, useFormatter: Intl.NumberFormat = formatter) => {
|
export function formattedNumber(num: number, useFormatter: Intl.NumberFormat = formatter) {
|
||||||
return useFormatter.format(num)
|
return useFormatter.format(num)
|
||||||
}
|
}
|
||||||
|
|
||||||
export const useHumanReadableNumber = () => {
|
export function useHumanReadableNumber() {
|
||||||
const { n, locale } = useI18n()
|
const { n, locale } = useI18n()
|
||||||
|
|
||||||
const fn = (num: number) => {
|
const fn = (num: number) => {
|
||||||
|
@ -29,10 +29,8 @@ export const useHumanReadableNumber = () => {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export const useFormattedDateTime = (
|
export function useFormattedDateTime(value: MaybeComputedRef<string | number | Date | undefined | null>,
|
||||||
value: MaybeComputedRef<string | number | Date | undefined | null>,
|
options: Intl.DateTimeFormatOptions = { dateStyle: 'long', timeStyle: 'medium' }) {
|
||||||
options: Intl.DateTimeFormatOptions = { dateStyle: 'long', timeStyle: 'medium' },
|
|
||||||
) => {
|
|
||||||
const { locale } = useI18n()
|
const { locale } = useI18n()
|
||||||
const formatter = $computed(() => Intl.DateTimeFormat(locale.value, options))
|
const formatter = $computed(() => Intl.DateTimeFormat(locale.value, options))
|
||||||
return computed(() => {
|
return computed(() => {
|
||||||
|
@ -41,7 +39,7 @@ export const useFormattedDateTime = (
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
export const useTimeAgoOptions = (short = false): UseTimeAgoOptions<false> => {
|
export function useTimeAgoOptions(short = false): UseTimeAgoOptions<false> {
|
||||||
const { d, t, n: fnf, locale } = useI18n()
|
const { d, t, n: fnf, locale } = useI18n()
|
||||||
const prefix = short ? 'short_' : ''
|
const prefix = short ? 'short_' : ''
|
||||||
|
|
||||||
|
@ -56,7 +54,7 @@ export const useTimeAgoOptions = (short = false): UseTimeAgoOptions<false> => {
|
||||||
return {
|
return {
|
||||||
rounding: 'floor',
|
rounding: 'floor',
|
||||||
showSecond: !short,
|
showSecond: !short,
|
||||||
updateInterval: short ? 60_000 : 1_000,
|
updateInterval: short ? 60000 : 1000,
|
||||||
messages: {
|
messages: {
|
||||||
justNow: t('time_ago_options.just_now'),
|
justNow: t('time_ago_options.just_now'),
|
||||||
// just return the value
|
// just return the value
|
||||||
|
|
Loading…
Reference in New Issue