date.js 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. const weekArr = ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六']
  2. /**
  3. * @description 时间格式化
  4. * @param dateTime { number } 时间错
  5. * @param fmt { string } 时间格式
  6. * @return { string }
  7. */
  8. // yyyy:mm:dd|yyyy:mm|yyyy年mm月dd日|yyyy年mm月dd日 hh时MM分等,可自定义组合
  9. export const timeFormat = (dateTime, fmt = 'yyyy-mm-dd') => {
  10. // 如果为null,则格式化当前时间
  11. if (!dateTime) dateTime = Number(new Date());
  12. // 如果dateTime长度为10或者13,则为秒和毫秒的时间戳,如果超过13位,则为其他的时间格式
  13. if (dateTime.toString().length == 10) dateTime *= 1000;
  14. let date = new Date(dateTime);
  15. let ret;
  16. let opt = {
  17. 'y+': date.getFullYear().toString(), // 年
  18. 'm+': (date.getMonth() + 1).toString(), // 月
  19. 'd+': date.getDate().toString(), // 日
  20. 'h+': date.getHours().toString(), // 时
  21. 'M+': date.getMinutes().toString(), // 分
  22. 's+': date.getSeconds().toString() // 秒
  23. };
  24. for (let k in opt) {
  25. ret = new RegExp('(' + k + ')').exec(fmt);
  26. if (ret) {
  27. fmt = fmt.replace(ret[1], ret[1].length == 1 ? opt[k] : opt[k].padStart(ret[1].length, '0'));
  28. }
  29. }
  30. return fmt;
  31. }
  32. /**
  33. * @description 聊天记录专用时间格式化
  34. * @param dateTime { number } 时间错
  35. * @return { string }
  36. */
  37. export const timeFormatChat = (dateTime) => {
  38. if (dateTime.toString().length == 10) dateTime *= 1000;
  39. let date = new Date(dateTime);
  40. let fmt = timeFormat(dateTime, 'yyyy年mm月dd日 hh:MM')
  41. if (isToday(date)) {
  42. fmt = timeFormat(dateTime, 'hh:MM')
  43. } else if (isThisWeak(date)) {
  44. fmt = weekArr[date.getDay()] + timeFormat(dateTime, ' hh:MM')
  45. } else if (isThisYear(date)) {
  46. fmt = timeFormat(dateTime, 'mm月dd日 hh:MM')
  47. }
  48. return fmt
  49. }
  50. // 是否是今年
  51. const isThisYear = (date) => {
  52. const now = new Date()
  53. return date.getYear() == now.getYear()
  54. }
  55. // 是否是今月
  56. const isThisMonth = (date) => {
  57. const now = new Date()
  58. return isThisYear(date) && date.getMonth() == now.getMonth()
  59. }
  60. // 是否是今天
  61. const isToday = (date) => {
  62. const now = new Date()
  63. return isThisMonth(date) && date.getDate() == now.getDate()
  64. }
  65. // 是否本周
  66. const isThisWeak = (date) => {
  67. const now = new Date()
  68. if (isThisMonth(date)) {
  69. if (now.getDay() - date.getDay() > 0 && now.getDate() - date.getDate() < 7) {
  70. return true
  71. }
  72. } else {
  73. return false
  74. }
  75. }