timeago.js 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. import 'dayjs'
  2. /**
  3. * 时间戳转为多久之前
  4. * @param String timestamp 时间戳
  5. * @param String | Boolean format 如果为时间格式字符串,超出一定时间范围,返回固定的时间格式;
  6. * 如果为布尔值false,无论什么时间,都返回多久以前的格式
  7. */
  8. function timeago(dateTime = null, format = 'YYYY-MM-DD') {
  9. // 如果为null,则格式化当前时间
  10. if (!dateTime) dateTime = Number(new Date())
  11. // 如果dateTime长度为10或者13,则为秒和毫秒的时间戳,如果超过13位,则为其他的时间格式
  12. if (typeof dateTime === 'number' && dateTime.toString().length == 10) dateTime *= 1000
  13. if(typeof dateTime === 'string'){
  14. dateTime = dayjs(dateTime).valueOf()
  15. }
  16. let timestamp = + new Date(Number(dateTime))
  17. let timer = (Number(new Date()) - timestamp) / 1000
  18. // 如果小于5分钟,则返回"刚刚",其他以此类推
  19. let tips = ''
  20. switch (true) {
  21. case timer < 300:
  22. tips = '刚刚'
  23. break
  24. case timer >= 300 && timer < 3600:
  25. tips = parseInt(timer / 60) + '分钟前'
  26. break
  27. case timer >= 3600 && timer < 86400:
  28. tips = parseInt(timer / 3600) + '小时前'
  29. break
  30. case timer >= 86400 && timer < 2592000:
  31. tips = parseInt(timer / 86400) + '天前'
  32. break
  33. default:
  34. // 如果format为false,则无论什么时间戳,都显示xx之前
  35. if(format === false) {
  36. if(timer >= 2592000 && timer < 365 * 86400) {
  37. tips = parseInt(timer / (86400 * 30)) + '个月前'
  38. } else {
  39. tips = parseInt(timer / (86400 * 365)) + '年前'
  40. }
  41. } else {
  42. tips = dayjs(timestamp).format(format)
  43. }
  44. }
  45. return tips
  46. }
  47. export default timeago