mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
651 B
25 lines
651 B
import dayjs from 'dayjs' |
|
|
|
import relativeTime from 'dayjs/plugin/relativeTime' |
|
import utc from 'dayjs/plugin/utc' |
|
dayjs.extend(utc) |
|
dayjs.extend(relativeTime) |
|
|
|
export const timeAgo = (date: any) => { |
|
return dayjs.utc(date).fromNow() |
|
} |
|
|
|
export const handleTZ = (val: any) => { |
|
if (!val) { |
|
return |
|
} |
|
if (typeof val !== 'string') { |
|
return val |
|
} |
|
return val.replace( |
|
/((?:-?(?:[1-9][0-9]*)?[0-9]{4})-(?:1[0-2]|0[1-9])-(?:3[01]|0[1-9]|[12][0-9])T(?:2[0-3]|[01][0-9]):(?:[0-5][0-9]):(?:[0-5][0-9])(?:\.[0-9]+)?(?:Z|[+-](?:2[0-3]|[01][0-9]):[0-5][0-9]))/g, |
|
(i, v) => { |
|
return dayjs(v).format('YYYY-MM-DD HH:mm') |
|
}, |
|
) |
|
}
|
|
|