utils.js 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', {
  3. value: true
  4. });
  5. exports.getMonths =
  6. exports.getMonthEndDay =
  7. exports.copyDates =
  8. exports.calcDateNum =
  9. exports.getNextDay =
  10. exports.getPrevDay =
  11. exports.getDayByOffset =
  12. exports.compareDay =
  13. exports.compareMonth =
  14. exports.formatMonthTitle =
  15. exports.ROW_HEIGHT =
  16. void 0;
  17. exports.ROW_HEIGHT = 64;
  18. function formatMonthTitle(date) {
  19. if (!(date instanceof Date)) {
  20. date = new Date(date);
  21. }
  22. return date.getFullYear() + '\u5E74' + (date.getMonth() + 1) + '\u6708';
  23. }
  24. exports.formatMonthTitle = formatMonthTitle;
  25. function compareMonth(date1, date2) {
  26. if (!(date1 instanceof Date)) {
  27. date1 = new Date(date1);
  28. }
  29. if (!(date2 instanceof Date)) {
  30. date2 = new Date(date2);
  31. }
  32. var year1 = date1.getFullYear();
  33. var year2 = date2.getFullYear();
  34. var month1 = date1.getMonth();
  35. var month2 = date2.getMonth();
  36. if (year1 === year2) {
  37. return month1 === month2 ? 0 : month1 > month2 ? 1 : -1;
  38. }
  39. return year1 > year2 ? 1 : -1;
  40. }
  41. exports.compareMonth = compareMonth;
  42. function compareDay(day1, day2) {
  43. if (!(day1 instanceof Date)) {
  44. day1 = new Date(day1);
  45. }
  46. if (!(day2 instanceof Date)) {
  47. day2 = new Date(day2);
  48. }
  49. var compareMonthResult = compareMonth(day1, day2);
  50. if (compareMonthResult === 0) {
  51. var date1 = day1.getDate();
  52. var date2 = day2.getDate();
  53. return date1 === date2 ? 0 : date1 > date2 ? 1 : -1;
  54. }
  55. return compareMonthResult;
  56. }
  57. exports.compareDay = compareDay;
  58. function getDayByOffset(date, offset) {
  59. date = new Date(date);
  60. date.setDate(date.getDate() + offset);
  61. return date;
  62. }
  63. exports.getDayByOffset = getDayByOffset;
  64. function getPrevDay(date) {
  65. return getDayByOffset(date, -1);
  66. }
  67. exports.getPrevDay = getPrevDay;
  68. function getNextDay(date) {
  69. return getDayByOffset(date, 1);
  70. }
  71. exports.getNextDay = getNextDay;
  72. function calcDateNum(date) {
  73. var day1 = new Date(date[0]).getTime();
  74. var day2 = new Date(date[1]).getTime();
  75. return (day2 - day1) / (3600000 * 24) + 1;
  76. }
  77. exports.calcDateNum = calcDateNum;
  78. function copyDates(dates) {
  79. if (Array.isArray(dates)) {
  80. return dates.map(function (date) {
  81. if (date === null) {
  82. return date;
  83. }
  84. return new Date(date);
  85. });
  86. }
  87. return new Date(dates);
  88. }
  89. exports.copyDates = copyDates;
  90. function getMonthEndDay(year, month) {
  91. return 32 - new Date(year, month - 1, 32).getDate();
  92. }
  93. exports.getMonthEndDay = getMonthEndDay;
  94. function getMonths(minDate, maxDate) {
  95. var months = [];
  96. var cursor = new Date(minDate);
  97. cursor.setDate(1);
  98. do {
  99. months.push(cursor.getTime());
  100. cursor.setMonth(cursor.getMonth() + 1);
  101. } while (compareMonth(cursor, maxDate) !== 1);
  102. return months;
  103. }
  104. exports.getMonths = getMonths;