Calendar.ts 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547
  1. /**
  2. * @1900-2100区间内的公历、农历互转
  3. * @charset UTF-8
  4. * @Author Jea杨(JJonline@JJonline.Cn)
  5. * @Time 2014-7-21
  6. * @Time 2016-8-13 Fixed 2033hex、Attribution Annals
  7. * @Time 2016-9-25 Fixed lunar LeapMonth Param Bug
  8. * @Version 1.0.2
  9. * @公历转农历:calendar.solar2lunar(1987,11,01); //[you can ignore params of prefix 0]
  10. * @农历转公历:calendar.lunar2solar(1987,09,10); //[you can ignore params of prefix 0]
  11. */
  12. export const calendar = {
  13. /**
  14. * 农历1900-2100的润大小信息表
  15. * @Array Of Property
  16. * @return Hex
  17. */
  18. lunarInfo: [0x04bd8, 0x04ae0, 0x0a570, 0x054d5, 0x0d260, 0x0d950, 0x16554, 0x056a0, 0x09ad0, 0x055d2,//1900-1909
  19. 0x04ae0, 0x0a5b6, 0x0a4d0, 0x0d250, 0x1d255, 0x0b540, 0x0d6a0, 0x0ada2, 0x095b0, 0x14977,//1910-1919
  20. 0x04970, 0x0a4b0, 0x0b4b5, 0x06a50, 0x06d40, 0x1ab54, 0x02b60, 0x09570, 0x052f2, 0x04970,//1920-1929
  21. 0x06566, 0x0d4a0, 0x0ea50, 0x06e95, 0x05ad0, 0x02b60, 0x186e3, 0x092e0, 0x1c8d7, 0x0c950,//1930-1939
  22. 0x0d4a0, 0x1d8a6, 0x0b550, 0x056a0, 0x1a5b4, 0x025d0, 0x092d0, 0x0d2b2, 0x0a950, 0x0b557,//1940-1949
  23. 0x06ca0, 0x0b550, 0x15355, 0x04da0, 0x0a5b0, 0x14573, 0x052b0, 0x0a9a8, 0x0e950, 0x06aa0,//1950-1959
  24. 0x0aea6, 0x0ab50, 0x04b60, 0x0aae4, 0x0a570, 0x05260, 0x0f263, 0x0d950, 0x05b57, 0x056a0,//1960-1969
  25. 0x096d0, 0x04dd5, 0x04ad0, 0x0a4d0, 0x0d4d4, 0x0d250, 0x0d558, 0x0b540, 0x0b6a0, 0x195a6,//1970-1979
  26. 0x095b0, 0x049b0, 0x0a974, 0x0a4b0, 0x0b27a, 0x06a50, 0x06d40, 0x0af46, 0x0ab60, 0x09570,//1980-1989
  27. 0x04af5, 0x04970, 0x064b0, 0x074a3, 0x0ea50, 0x06b58, 0x055c0, 0x0ab60, 0x096d5, 0x092e0,//1990-1999
  28. 0x0c960, 0x0d954, 0x0d4a0, 0x0da50, 0x07552, 0x056a0, 0x0abb7, 0x025d0, 0x092d0, 0x0cab5,//2000-2009
  29. 0x0a950, 0x0b4a0, 0x0baa4, 0x0ad50, 0x055d9, 0x04ba0, 0x0a5b0, 0x15176, 0x052b0, 0x0a930,//2010-2019
  30. 0x07954, 0x06aa0, 0x0ad50, 0x05b52, 0x04b60, 0x0a6e6, 0x0a4e0, 0x0d260, 0x0ea65, 0x0d530,//2020-2029
  31. 0x05aa0, 0x076a3, 0x096d0, 0x04afb, 0x04ad0, 0x0a4d0, 0x1d0b6, 0x0d250, 0x0d520, 0x0dd45,//2030-2039
  32. 0x0b5a0, 0x056d0, 0x055b2, 0x049b0, 0x0a577, 0x0a4b0, 0x0aa50, 0x1b255, 0x06d20, 0x0ada0,//2040-2049
  33. /**Add By JJonline@JJonline.Cn**/
  34. 0x14b63, 0x09370, 0x049f8, 0x04970, 0x064b0, 0x168a6, 0x0ea50, 0x06b20, 0x1a6c4, 0x0aae0,//2050-2059
  35. 0x0a2e0, 0x0d2e3, 0x0c960, 0x0d557, 0x0d4a0, 0x0da50, 0x05d55, 0x056a0, 0x0a6d0, 0x055d4,//2060-2069
  36. 0x052d0, 0x0a9b8, 0x0a950, 0x0b4a0, 0x0b6a6, 0x0ad50, 0x055a0, 0x0aba4, 0x0a5b0, 0x052b0,//2070-2079
  37. 0x0b273, 0x06930, 0x07337, 0x06aa0, 0x0ad50, 0x14b55, 0x04b60, 0x0a570, 0x054e4, 0x0d160,//2080-2089
  38. 0x0e968, 0x0d520, 0x0daa0, 0x16aa6, 0x056d0, 0x04ae0, 0x0a9d4, 0x0a2d0, 0x0d150, 0x0f252,//2090-2099
  39. 0x0d520],//2100
  40. /**
  41. * 公历每个月份的天数普通表
  42. * @Array Of Property
  43. * @return Number
  44. */
  45. solarMonth: [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31],
  46. /**
  47. * 天干地支之天干速查表
  48. * @Array Of Property trans["甲","乙","丙","丁","戊","己","庚","辛","壬","癸"]
  49. * @return Cn string
  50. */
  51. Gan: ["\u7532", "\u4e59", "\u4e19", "\u4e01", "\u620a", "\u5df1", "\u5e9a", "\u8f9b", "\u58ec", "\u7678"],
  52. /**
  53. * 天干地支之地支速查表
  54. * @Array Of Property
  55. * @trans["子","丑","寅","卯","辰","巳","午","未","申","酉","戌","亥"]
  56. * @return Cn string
  57. */
  58. Zhi: ["\u5b50", "\u4e11", "\u5bc5", "\u536f", "\u8fb0", "\u5df3", "\u5348", "\u672a", "\u7533", "\u9149", "\u620c", "\u4ea5"],
  59. /**
  60. * 天干地支之地支速查表<=>生肖
  61. * @Array Of Property
  62. * @trans["鼠","牛","虎","兔","龙","蛇","马","羊","猴","鸡","狗","猪"]
  63. * @return Cn string
  64. */
  65. Animals: ["\u9f20", "\u725b", "\u864e", "\u5154", "\u9f99", "\u86c7", "\u9a6c", "\u7f8a", "\u7334", "\u9e21", "\u72d7", "\u732a"],
  66. /**
  67. * 24节气速查表
  68. * @Array Of Property
  69. * @trans["小寒","大寒","立春","雨水","惊蛰","春分","清明","谷雨","立夏","小满","芒种","夏至","小暑","大暑","立秋","处暑","白露","秋分","寒露","霜降","立冬","小雪","大雪","冬至"]
  70. * @return Cn string
  71. */
  72. solarTerm: ["\u5c0f\u5bd2", "\u5927\u5bd2", "\u7acb\u6625", "\u96e8\u6c34", "\u60ca\u86f0", "\u6625\u5206", "\u6e05\u660e", "\u8c37\u96e8", "\u7acb\u590f", "\u5c0f\u6ee1", "\u8292\u79cd", "\u590f\u81f3", "\u5c0f\u6691", "\u5927\u6691", "\u7acb\u79cb", "\u5904\u6691", "\u767d\u9732", "\u79cb\u5206", "\u5bd2\u9732", "\u971c\u964d", "\u7acb\u51ac", "\u5c0f\u96ea", "\u5927\u96ea", "\u51ac\u81f3"],
  73. /**
  74. * 1900-2100各年的24节气日期速查表
  75. * @Array Of Property
  76. * @return 0x string For splice
  77. */
  78. sTermInfo: ['9778397bd097c36b0b6fc9274c91aa', '97b6b97bd19801ec9210c965cc920e', '97bcf97c3598082c95f8c965cc920f',
  79. '97bd0b06bdb0722c965ce1cfcc920f', 'b027097bd097c36b0b6fc9274c91aa', '97b6b97bd19801ec9210c965cc920e',
  80. '97bcf97c359801ec95f8c965cc920f', '97bd0b06bdb0722c965ce1cfcc920f', 'b027097bd097c36b0b6fc9274c91aa',
  81. '97b6b97bd19801ec9210c965cc920e', '97bcf97c359801ec95f8c965cc920f', '97bd0b06bdb0722c965ce1cfcc920f',
  82. 'b027097bd097c36b0b6fc9274c91aa', '9778397bd19801ec9210c965cc920e', '97b6b97bd19801ec95f8c965cc920f',
  83. '97bd09801d98082c95f8e1cfcc920f', '97bd097bd097c36b0b6fc9210c8dc2', '9778397bd197c36c9210c9274c91aa',
  84. '97b6b97bd19801ec95f8c965cc920e', '97bd09801d98082c95f8e1cfcc920f', '97bd097bd097c36b0b6fc9210c8dc2',
  85. '9778397bd097c36c9210c9274c91aa', '97b6b97bd19801ec95f8c965cc920e', '97bcf97c3598082c95f8e1cfcc920f',
  86. '97bd097bd097c36b0b6fc9210c8dc2', '9778397bd097c36c9210c9274c91aa', '97b6b97bd19801ec9210c965cc920e',
  87. '97bcf97c3598082c95f8c965cc920f', '97bd097bd097c35b0b6fc920fb0722', '9778397bd097c36b0b6fc9274c91aa',
  88. '97b6b97bd19801ec9210c965cc920e', '97bcf97c3598082c95f8c965cc920f', '97bd097bd097c35b0b6fc920fb0722',
  89. '9778397bd097c36b0b6fc9274c91aa', '97b6b97bd19801ec9210c965cc920e', '97bcf97c359801ec95f8c965cc920f',
  90. '97bd097bd097c35b0b6fc920fb0722', '9778397bd097c36b0b6fc9274c91aa', '97b6b97bd19801ec9210c965cc920e',
  91. '97bcf97c359801ec95f8c965cc920f', '97bd097bd097c35b0b6fc920fb0722', '9778397bd097c36b0b6fc9274c91aa',
  92. '97b6b97bd19801ec9210c965cc920e', '97bcf97c359801ec95f8c965cc920f', '97bd097bd07f595b0b6fc920fb0722',
  93. '9778397bd097c36b0b6fc9210c8dc2', '9778397bd19801ec9210c9274c920e', '97b6b97bd19801ec95f8c965cc920f',
  94. '97bd07f5307f595b0b0bc920fb0722', '7f0e397bd097c36b0b6fc9210c8dc2', '9778397bd097c36c9210c9274c920e',
  95. '97b6b97bd19801ec95f8c965cc920f', '97bd07f5307f595b0b0bc920fb0722', '7f0e397bd097c36b0b6fc9210c8dc2',
  96. '9778397bd097c36c9210c9274c91aa', '97b6b97bd19801ec9210c965cc920e', '97bd07f1487f595b0b0bc920fb0722',
  97. '7f0e397bd097c36b0b6fc9210c8dc2', '9778397bd097c36b0b6fc9274c91aa', '97b6b97bd19801ec9210c965cc920e',
  98. '97bcf7f1487f595b0b0bb0b6fb0722', '7f0e397bd097c35b0b6fc920fb0722', '9778397bd097c36b0b6fc9274c91aa',
  99. '97b6b97bd19801ec9210c965cc920e', '97bcf7f1487f595b0b0bb0b6fb0722', '7f0e397bd097c35b0b6fc920fb0722',
  100. '9778397bd097c36b0b6fc9274c91aa', '97b6b97bd19801ec9210c965cc920e', '97bcf7f1487f531b0b0bb0b6fb0722',
  101. '7f0e397bd097c35b0b6fc920fb0722', '9778397bd097c36b0b6fc9274c91aa', '97b6b97bd19801ec9210c965cc920e',
  102. '97bcf7f1487f531b0b0bb0b6fb0722', '7f0e397bd07f595b0b6fc920fb0722', '9778397bd097c36b0b6fc9274c91aa',
  103. '97b6b97bd19801ec9210c9274c920e', '97bcf7f0e47f531b0b0bb0b6fb0722', '7f0e397bd07f595b0b0bc920fb0722',
  104. '9778397bd097c36b0b6fc9210c91aa', '97b6b97bd197c36c9210c9274c920e', '97bcf7f0e47f531b0b0bb0b6fb0722',
  105. '7f0e397bd07f595b0b0bc920fb0722', '9778397bd097c36b0b6fc9210c8dc2', '9778397bd097c36c9210c9274c920e',
  106. '97b6b7f0e47f531b0723b0b6fb0722', '7f0e37f5307f595b0b0bc920fb0722', '7f0e397bd097c36b0b6fc9210c8dc2',
  107. '9778397bd097c36b0b70c9274c91aa', '97b6b7f0e47f531b0723b0b6fb0721', '7f0e37f1487f595b0b0bb0b6fb0722',
  108. '7f0e397bd097c35b0b6fc9210c8dc2', '9778397bd097c36b0b6fc9274c91aa', '97b6b7f0e47f531b0723b0b6fb0721',
  109. '7f0e27f1487f595b0b0bb0b6fb0722', '7f0e397bd097c35b0b6fc920fb0722', '9778397bd097c36b0b6fc9274c91aa',
  110. '97b6b7f0e47f531b0723b0b6fb0721', '7f0e27f1487f531b0b0bb0b6fb0722', '7f0e397bd097c35b0b6fc920fb0722',
  111. '9778397bd097c36b0b6fc9274c91aa', '97b6b7f0e47f531b0723b0b6fb0721', '7f0e27f1487f531b0b0bb0b6fb0722',
  112. '7f0e397bd097c35b0b6fc920fb0722', '9778397bd097c36b0b6fc9274c91aa', '97b6b7f0e47f531b0723b0b6fb0721',
  113. '7f0e27f1487f531b0b0bb0b6fb0722', '7f0e397bd07f595b0b0bc920fb0722', '9778397bd097c36b0b6fc9274c91aa',
  114. '97b6b7f0e47f531b0723b0787b0721', '7f0e27f0e47f531b0b0bb0b6fb0722', '7f0e397bd07f595b0b0bc920fb0722',
  115. '9778397bd097c36b0b6fc9210c91aa', '97b6b7f0e47f149b0723b0787b0721', '7f0e27f0e47f531b0723b0b6fb0722',
  116. '7f0e397bd07f595b0b0bc920fb0722', '9778397bd097c36b0b6fc9210c8dc2', '977837f0e37f149b0723b0787b0721',
  117. '7f07e7f0e47f531b0723b0b6fb0722', '7f0e37f5307f595b0b0bc920fb0722', '7f0e397bd097c35b0b6fc9210c8dc2',
  118. '977837f0e37f14998082b0787b0721', '7f07e7f0e47f531b0723b0b6fb0721', '7f0e37f1487f595b0b0bb0b6fb0722',
  119. '7f0e397bd097c35b0b6fc9210c8dc2', '977837f0e37f14998082b0787b06bd', '7f07e7f0e47f531b0723b0b6fb0721',
  120. '7f0e27f1487f531b0b0bb0b6fb0722', '7f0e397bd097c35b0b6fc920fb0722', '977837f0e37f14998082b0787b06bd',
  121. '7f07e7f0e47f531b0723b0b6fb0721', '7f0e27f1487f531b0b0bb0b6fb0722', '7f0e397bd097c35b0b6fc920fb0722',
  122. '977837f0e37f14998082b0787b06bd', '7f07e7f0e47f531b0723b0b6fb0721', '7f0e27f1487f531b0b0bb0b6fb0722',
  123. '7f0e397bd07f595b0b0bc920fb0722', '977837f0e37f14998082b0787b06bd', '7f07e7f0e47f531b0723b0b6fb0721',
  124. '7f0e27f1487f531b0b0bb0b6fb0722', '7f0e397bd07f595b0b0bc920fb0722', '977837f0e37f14998082b0787b06bd',
  125. '7f07e7f0e47f149b0723b0787b0721', '7f0e27f0e47f531b0b0bb0b6fb0722', '7f0e397bd07f595b0b0bc920fb0722',
  126. '977837f0e37f14998082b0723b06bd', '7f07e7f0e37f149b0723b0787b0721', '7f0e27f0e47f531b0723b0b6fb0722',
  127. '7f0e397bd07f595b0b0bc920fb0722', '977837f0e37f14898082b0723b02d5', '7ec967f0e37f14998082b0787b0721',
  128. '7f07e7f0e47f531b0723b0b6fb0722', '7f0e37f1487f595b0b0bb0b6fb0722', '7f0e37f0e37f14898082b0723b02d5',
  129. '7ec967f0e37f14998082b0787b0721', '7f07e7f0e47f531b0723b0b6fb0722', '7f0e37f1487f531b0b0bb0b6fb0722',
  130. '7f0e37f0e37f14898082b0723b02d5', '7ec967f0e37f14998082b0787b06bd', '7f07e7f0e47f531b0723b0b6fb0721',
  131. '7f0e37f1487f531b0b0bb0b6fb0722', '7f0e37f0e37f14898082b072297c35', '7ec967f0e37f14998082b0787b06bd',
  132. '7f07e7f0e47f531b0723b0b6fb0721', '7f0e27f1487f531b0b0bb0b6fb0722', '7f0e37f0e37f14898082b072297c35',
  133. '7ec967f0e37f14998082b0787b06bd', '7f07e7f0e47f531b0723b0b6fb0721', '7f0e27f1487f531b0b0bb0b6fb0722',
  134. '7f0e37f0e366aa89801eb072297c35', '7ec967f0e37f14998082b0787b06bd', '7f07e7f0e47f149b0723b0787b0721',
  135. '7f0e27f1487f531b0b0bb0b6fb0722', '7f0e37f0e366aa89801eb072297c35', '7ec967f0e37f14998082b0723b06bd',
  136. '7f07e7f0e47f149b0723b0787b0721', '7f0e27f0e47f531b0723b0b6fb0722', '7f0e37f0e366aa89801eb072297c35',
  137. '7ec967f0e37f14998082b0723b06bd', '7f07e7f0e37f14998083b0787b0721', '7f0e27f0e47f531b0723b0b6fb0722',
  138. '7f0e37f0e366aa89801eb072297c35', '7ec967f0e37f14898082b0723b02d5', '7f07e7f0e37f14998082b0787b0721',
  139. '7f07e7f0e47f531b0723b0b6fb0722', '7f0e36665b66aa89801e9808297c35', '665f67f0e37f14898082b0723b02d5',
  140. '7ec967f0e37f14998082b0787b0721', '7f07e7f0e47f531b0723b0b6fb0722', '7f0e36665b66a449801e9808297c35',
  141. '665f67f0e37f14898082b0723b02d5', '7ec967f0e37f14998082b0787b06bd', '7f07e7f0e47f531b0723b0b6fb0721',
  142. '7f0e36665b66a449801e9808297c35', '665f67f0e37f14898082b072297c35', '7ec967f0e37f14998082b0787b06bd',
  143. '7f07e7f0e47f531b0723b0b6fb0721', '7f0e26665b66a449801e9808297c35', '665f67f0e37f1489801eb072297c35',
  144. '7ec967f0e37f14998082b0787b06bd', '7f07e7f0e47f531b0723b0b6fb0721', '7f0e27f1487f531b0b0bb0b6fb0722'],
  145. /**
  146. * 数字转中文速查表
  147. * @Array Of Property
  148. * @trans ['日','一','二','三','四','五','六','七','八','九','十']
  149. * @return Cn string
  150. */
  151. nStr1: ["\u65e5", "\u4e00", "\u4e8c", "\u4e09", "\u56db", "\u4e94", "\u516d", "\u4e03", "\u516b", "\u4e5d", "\u5341"],
  152. /**
  153. * 日期转农历称呼速查表
  154. * @Array Of Property
  155. * @trans ['初','十','廿','卅']
  156. * @return Cn string
  157. */
  158. nStr2: ["\u521d", "\u5341", "\u5eff", "\u5345"],
  159. /**
  160. * 月份转农历称呼速查表
  161. * @Array Of Property
  162. * @trans ['正','一','二','三','四','五','六','七','八','九','十','冬','腊']
  163. * @return Cn string
  164. */
  165. nStr3: ["\u6b63", "\u4e8c", "\u4e09", "\u56db", "\u4e94", "\u516d", "\u4e03", "\u516b", "\u4e5d", "\u5341", "\u51ac", "\u814a"],
  166. /**
  167. * 返回农历y年一整年的总天数
  168. * @param lunar Year
  169. * @return Number
  170. * @eg:let count = calendar.lYearDays(1987) ;//count=387
  171. */
  172. lYearDays: function (y: number) {
  173. let i, sum = 348;
  174. for (i = 0x8000; i > 0x8; i >>= 1) { sum += (calendar.lunarInfo[y - 1900] & i) ? 1 : 0; }
  175. return (sum + calendar.leapDays(y));
  176. },
  177. /**
  178. * 返回农历y年闰月是哪个月;若y年没有闰月 则返回0
  179. * @param lunar Year
  180. * @return Number (0-12)
  181. * @eg:let leapMonth = calendar.leapMonth(1987) ;//leapMonth=6
  182. */
  183. leapMonth: function (y: number) { //闰字编码 \u95f0
  184. return (calendar.lunarInfo[y - 1900] & 0xf);
  185. },
  186. /**
  187. * 返回农历y年闰月的天数 若该年没有闰月则返回0
  188. * @param lunar Year
  189. * @return Number (0、29、30)
  190. * @eg:let leapMonthDay = calendar.leapDays(1987) ;//leapMonthDay=29
  191. */
  192. leapDays: function (y: number) {
  193. if (calendar.leapMonth(y)) {
  194. return ((calendar.lunarInfo[y - 1900] & 0x10000) ? 30 : 29);
  195. }
  196. return (0);
  197. },
  198. /**
  199. * 返回农历y年m月(非闰月)的总天数,计算m为闰月时的天数请使用leapDays方法
  200. * @param lunar Year
  201. * @return Number (-1、29、30)
  202. * @eg:let MonthDay = calendar.monthDays(1987,9) ;//MonthDay=29
  203. */
  204. monthDays: function (y: number, m: number) {
  205. if (m > 12 || m < 1) { return -1 }//月份参数从1至12,参数错误返回-1
  206. return ((calendar.lunarInfo[y - 1900] & (0x10000 >> m)) ? 30 : 29);
  207. },
  208. /**
  209. * 返回公历(!)y年m月的天数
  210. * @param solar Year
  211. * @return Number (-1、28、29、30、31)
  212. * @eg:let solarMonthDay = calendar.leapDays(1987) ;//solarMonthDay=30
  213. */
  214. solarDays: function (y: number, m: number) {
  215. if (m > 12 || m < 1) { return -1 } //若参数错误 返回-1
  216. let ms = m - 1;
  217. if (ms == 1) { //2月份的闰平规律测算后确认返回28或29
  218. return (((y % 4 == 0) && (y % 100 != 0) || (y % 400 == 0)) ? 29 : 28);
  219. } else {
  220. return (calendar.solarMonth[ms]);
  221. }
  222. },
  223. /**
  224. * 农历年份转换为干支纪年
  225. * @param lYear 农历年的年份数
  226. * @return Cn string
  227. */
  228. toGanZhiYear: function (lYear: number) {
  229. let ganKey = (lYear - 3) % 10;
  230. let zhiKey = (lYear - 3) % 12;
  231. if (ganKey == 0) ganKey = 10;//如果余数为0则为最后一个天干
  232. if (zhiKey == 0) zhiKey = 12;//如果余数为0则为最后一个地支
  233. return calendar.Gan[ganKey - 1] + calendar.Zhi[zhiKey - 1];
  234. },
  235. /**
  236. * 公历月、日判断所属星座
  237. * @param cMonth [description]
  238. * @param cDay [description]
  239. * @return Cn string
  240. */
  241. toAstro: function (cMonth: number, cDay: number) {
  242. let s = "\u9b54\u7faf\u6c34\u74f6\u53cc\u9c7c\u767d\u7f8a\u91d1\u725b\u53cc\u5b50\u5de8\u87f9\u72ee\u5b50\u5904\u5973\u5929\u79e4\u5929\u874e\u5c04\u624b\u9b54\u7faf";
  243. let arr = [20, 19, 21, 21, 21, 22, 23, 23, 23, 23, 22, 22];
  244. return s.substr(cMonth * 2 - (cDay < arr[cMonth - 1] ? 2 : 0), 2) + "\u5ea7";//座
  245. },
  246. /**
  247. * 传入offset偏移量返回干支
  248. * @param offset 相对甲子的偏移量
  249. * @return Cn string
  250. */
  251. toGanZhi: function (offset: number) {
  252. return calendar.Gan[offset % 10] + calendar.Zhi[offset % 12];
  253. },
  254. /**
  255. * 传入公历(!)y年获得该年第n个节气的公历日期
  256. * @param y公历年(1900-2100);n二十四节气中的第几个节气(1~24);从n=1(小寒)算起
  257. * @return day Number
  258. * @eg:let _24 = calendar.getTerm(1987,3) ;//_24=4;意即1987年2月4日立春
  259. */
  260. getTerm: function (y: number, n: number) {
  261. if (y < 1900 || y > 2100) { return -1; }
  262. if (n < 1 || n > 24) { return -1; }
  263. let _table = calendar.sTermInfo[y - 1900];
  264. let _info = [
  265. parseInt('0x' + _table.substr(0, 5)).toString(),
  266. parseInt('0x' + _table.substr(5, 5)).toString(),
  267. parseInt('0x' + _table.substr(10, 5)).toString(),
  268. parseInt('0x' + _table.substr(15, 5)).toString(),
  269. parseInt('0x' + _table.substr(20, 5)).toString(),
  270. parseInt('0x' + _table.substr(25, 5)).toString()
  271. ];
  272. let _calday = [
  273. _info[0].substr(0, 1),
  274. _info[0].substr(1, 2),
  275. _info[0].substr(3, 1),
  276. _info[0].substr(4, 2),
  277. _info[1].substr(0, 1),
  278. _info[1].substr(1, 2),
  279. _info[1].substr(3, 1),
  280. _info[1].substr(4, 2),
  281. _info[2].substr(0, 1),
  282. _info[2].substr(1, 2),
  283. _info[2].substr(3, 1),
  284. _info[2].substr(4, 2),
  285. _info[3].substr(0, 1),
  286. _info[3].substr(1, 2),
  287. _info[3].substr(3, 1),
  288. _info[3].substr(4, 2),
  289. _info[4].substr(0, 1),
  290. _info[4].substr(1, 2),
  291. _info[4].substr(3, 1),
  292. _info[4].substr(4, 2),
  293. _info[5].substr(0, 1),
  294. _info[5].substr(1, 2),
  295. _info[5].substr(3, 1),
  296. _info[5].substr(4, 2),
  297. ];
  298. return parseInt(_calday[n - 1]);
  299. },
  300. /**
  301. * 传入农历数字月份返回汉语通俗表示法
  302. * @param lunar month
  303. * @return Cn string
  304. * @eg:let cnMonth = calendar.toChinaMonth(12) ;//cnMonth='腊月'
  305. */
  306. toChinaMonth: function (m: number) { // 月 => \u6708
  307. if (m > 12 || m < 1) { return -1 } //若参数错误 返回-1
  308. let s = calendar.nStr3[m - 1];
  309. s += "\u6708";//加上月字
  310. return s;
  311. },
  312. /**
  313. * 传入农历日期数字返回汉字表示法
  314. * @param lunar day
  315. * @return Cn string
  316. * @eg:let cnDay = calendar.toChinaDay(21) ;//cnMonth='廿一'
  317. */
  318. toChinaDay: function (d: number) { //日 => \u65e5
  319. let s;
  320. switch (d) {
  321. case 10:
  322. s = '\u521d\u5341'; break;
  323. case 20:
  324. s = '\u4e8c\u5341'; break;
  325. break;
  326. case 30:
  327. s = '\u4e09\u5341'; break;
  328. break;
  329. default:
  330. s = calendar.nStr2[Math.floor(d / 10)];
  331. s += calendar.nStr1[d % 10];
  332. }
  333. return (s);
  334. },
  335. /**
  336. * 年份转生肖[!仅能大致转换] => 精确划分生肖分界线是“立春”
  337. * @param y year
  338. * @return Cn string
  339. * @eg:let animal = calendar.getAnimal(1987) ;//animal='兔'
  340. */
  341. getAnimal: function (y: number) {
  342. return calendar.Animals[(y - 4) % 12]
  343. },
  344. /**
  345. * 传入阳历年月日获得详细的公历、农历object信息 <=>JSON
  346. * @param y solar year
  347. * @param m solar month
  348. * @param d solar day
  349. * @return JSON object
  350. * @eg:console.log(calendar.solar2lunar(1987,11,01));
  351. */
  352. solar2lunar: function (y: number, m: number, d: number) { //参数区间1900.1.31~2100.12.31
  353. let objDate : Date;
  354. if (
  355. y < 1900 || y > 2100 || //年份限定、上限
  356. (y == 1900 && m == 1 && d < 31) //下限
  357. )
  358. throw new Error('年份超出范围');
  359. objDate = new Date(y, m - 1, d)
  360. let i, leap = 0, temp = 0;
  361. //修正ymd参数
  362. y = objDate.getFullYear(), m = objDate.getMonth() + 1, d = objDate.getDate();
  363. let offset = (Date.UTC(objDate.getFullYear(), objDate.getMonth(), objDate.getDate()) - Date.UTC(1900, 0, 31)) / 86400000;
  364. for (i = 1900; i < 2101 && offset > 0; i++) { temp = calendar.lYearDays(i); offset -= temp; }
  365. if (offset < 0) { offset += temp; i--; }
  366. //是否今天
  367. let isTodayObj = new Date(), isToday = false;
  368. if (isTodayObj.getFullYear() == y && isTodayObj.getMonth() + 1 == m && isTodayObj.getDate() == d) {
  369. isToday = true;
  370. }
  371. //星期几
  372. let nWeek = objDate.getDay(), cWeek = calendar.nStr1[nWeek];
  373. if (nWeek == 0) { nWeek = 7; }//数字表示周几顺应天朝周一开始的惯例
  374. //农历年
  375. let year = i;
  376. leap = calendar.leapMonth(i); //闰哪个月
  377. let isLeap = false;
  378. //效验闰月
  379. for (i = 1; i < 13 && offset > 0; i++) {
  380. //闰月
  381. if (leap > 0 && i == (leap + 1) && isLeap == false) {
  382. --i;
  383. isLeap = true; temp = calendar.leapDays(year); //计算农历闰月天数
  384. }
  385. else {
  386. temp = calendar.monthDays(year, i);//计算农历普通月天数
  387. }
  388. //解除闰月
  389. if (isLeap == true && i == (leap + 1)) { isLeap = false; }
  390. offset -= temp;
  391. }
  392. if (offset == 0 && leap > 0 && i == leap + 1)
  393. if (isLeap) {
  394. isLeap = false;
  395. } else {
  396. isLeap = true; --i;
  397. }
  398. if (offset < 0) { offset += temp; --i; }
  399. //农历月
  400. let month = i;
  401. //农历日
  402. let day = offset + 1;
  403. //天干地支处理
  404. let sm = m - 1;
  405. let gzY = calendar.toGanZhiYear(year);
  406. //月柱 1900年1月小寒以前为 丙子月(60进制12)
  407. let firstNode = calendar.getTerm(year, (m * 2 - 1));//返回当月「节」为几日开始
  408. let secondNode = calendar.getTerm(year, (m * 2));//返回当月「节」为几日开始
  409. //依据12节气修正干支月
  410. let gzM = calendar.toGanZhi((y - 1900) * 12 + m + 11);
  411. if (d >= firstNode) {
  412. gzM = calendar.toGanZhi((y - 1900) * 12 + m + 12);
  413. }
  414. //传入的日期的节气与否
  415. let isTerm = false;
  416. let Term = null;
  417. if (firstNode == d) {
  418. isTerm = true;
  419. Term = calendar.solarTerm[m * 2 - 2];
  420. }
  421. if (secondNode == d) {
  422. isTerm = true;
  423. Term = calendar.solarTerm[m * 2 - 1];
  424. }
  425. //日柱 当月一日与 1900/1/1 相差天数
  426. let dayCyclical = Date.UTC(y, sm, 1, 0, 0, 0, 0) / 86400000 + 25567 + 10;
  427. let gzD = calendar.toGanZhi(dayCyclical + d - 1);
  428. //该日期所属的星座
  429. let astro = calendar.toAstro(m, d);
  430. return { 'lYear': year, 'lMonth': month, 'lDay': day, 'Animal': calendar.getAnimal(year), 'IMonthCn': (isLeap ? "\u95f0" : '') + calendar.toChinaMonth(month), 'IDayCn': calendar.toChinaDay(day), 'cYear': y, 'cMonth': m, 'cDay': d, 'gzYear': gzY, 'gzMonth': gzM, 'gzDay': gzD, 'isToday': isToday, 'isLeap': isLeap, 'nWeek': nWeek, 'ncWeek': "\u661f\u671f" + cWeek, 'isTerm': isTerm, 'Term': Term, 'astro': astro };
  431. },
  432. /**
  433. * 传入农历年月日以及传入的月份是否闰月获得详细的公历、农历object信息 <=>JSON
  434. * @param y lunar year
  435. * @param m lunar month
  436. * @param d lunar day
  437. * @param isLeapMonth lunar month is leap or not.[如果是农历闰月第四个参数赋值true即可]
  438. * @return JSON object
  439. * @eg:console.log(calendar.lunar2solar(1987,9,10));
  440. */
  441. lunar2solar: function (y: number, m: number, d: number, isLeapMonth: boolean = false) { //参数区间1900.1.31~2100.12.1
  442. let leapOffset = 0;
  443. let leapMonth = calendar.leapMonth(y);
  444. let leapDay = calendar.leapDays(y);
  445. if (isLeapMonth && (leapMonth != m)) { return -1; }//传参要求计算该闰月公历 但该年得出的闰月与传参的月份并不同
  446. if (y == 2100 && m == 12 && d > 1 || y == 1900 && m == 1 && d < 31) { return -1; }//超出了最大极限值
  447. let day = calendar.monthDays(y, m);
  448. let _day = day;
  449. //bugFix 2016-9-25
  450. //if month is leap, _day use leapDays method
  451. if (isLeapMonth) {
  452. _day = calendar.leapDays(y);
  453. }
  454. if (y < 1900 || y > 2100 || d > _day) { return -1; }//参数合法性效验
  455. //计算农历的时间差
  456. let offset = 0;
  457. for (let i = 1900; i < y; i++) {
  458. offset += calendar.lYearDays(i);
  459. }
  460. let leap = 0, isAdd = false;
  461. for (let i = 1; i < m; i++) {
  462. leap = calendar.leapMonth(y);
  463. if (!isAdd) {//处理闰月
  464. if (leap <= i && leap > 0) {
  465. offset += calendar.leapDays(y); isAdd = true;
  466. }
  467. }
  468. offset += calendar.monthDays(y, i);
  469. }
  470. //转换闰月农历 需补充该年闰月的前一个月的时差
  471. if (isLeapMonth) { offset += day; }
  472. //1900年农历正月一日的公历时间为1900年1月30日0时0分0秒(该时间也是本农历的最开始起始点)
  473. let stmap = Date.UTC(1900, 1, 30, 0, 0, 0);
  474. let calObj = new Date((offset + d - 31) * 86400000 + stmap);
  475. let cY = calObj.getUTCFullYear();
  476. let cM = calObj.getUTCMonth() + 1;
  477. let cD = calObj.getUTCDate();
  478. return calendar.solar2lunar(cY, cM, cD);
  479. }
  480. };
  481. /**
  482. * 获取今日的节日
  483. * @return {string} 今日的节日
  484. */
  485. export function getFestival(calendar: Date){
  486. let str = '';
  487. const month = calendar.getMonth();
  488. const date = calendar.getDate();
  489. if ((month == 0) && (date == 1)) str = "元旦";
  490. if ((month == 2) && (date == 12)) str = "植树节";
  491. if ((month == 3) && (date == 5)) str = "清明节";
  492. if ((month == 4) && (date == 1)) str = "劳动节";
  493. if ((month == 4) && (date == 4)) str = "青年节";
  494. if ((month == 5) && (date == 1)) str = "儿童节";
  495. if ((month == 7) && (date == 1)) str = "建军节"
  496. if ((month == 9) && (date == 1)) str = "国庆节";
  497. if ((month == 11) && (date == 24)) str = "平安夜";
  498. if ((month == 11) && (date == 25)) str = "圣诞节";
  499. return str;
  500. }
  501. export default calendar