util.js 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  1. import CALENDAR from './calendar.js'
  2. class Calendar {
  3. constructor({
  4. date,
  5. selected,
  6. startDate,
  7. endDate,
  8. range
  9. } = {}) {
  10. // 当前日期
  11. this.date = this.getDate(new Date()) // 当前初入日期
  12. // 打点信息
  13. this.selected = selected || [];
  14. // 范围开始
  15. this.startDate = startDate
  16. // 范围结束
  17. this.endDate = endDate
  18. this.range = range
  19. // 多选状态
  20. this.cleanMultipleStatus()
  21. // 每周日期
  22. this.weeks = {}
  23. // this._getWeek(this.date.fullDate)
  24. }
  25. /**
  26. * 设置日期
  27. * @param {Object} date
  28. */
  29. setDate(date) {
  30. this.selectDate = this.getDate(date)
  31. this._getWeek(this.selectDate.fullDate)
  32. }
  33. /**
  34. * 清理多选状态
  35. */
  36. cleanMultipleStatus() {
  37. this.multipleStatus = {
  38. before: '',
  39. after: '',
  40. data: []
  41. }
  42. }
  43. /**
  44. * 重置开始日期
  45. */
  46. resetSatrtDate(startDate) {
  47. // 范围开始
  48. this.startDate = startDate
  49. }
  50. /**
  51. * 重置结束日期
  52. */
  53. resetEndDate(endDate) {
  54. // 范围结束
  55. this.endDate = endDate
  56. }
  57. /**
  58. * 获取任意时间
  59. */
  60. getDate(date, AddDayCount = 0, str = 'day') {
  61. if (!date) {
  62. date = new Date()
  63. }
  64. if (typeof date !== 'object') {
  65. date = date.replace(/-/g, '/')
  66. }
  67. const dd = new Date(date)
  68. switch (str) {
  69. case 'day':
  70. dd.setDate(dd.getDate() + AddDayCount) // 获取AddDayCount天后的日期
  71. break
  72. case 'month':
  73. if (dd.getDate() === 31 && AddDayCount>0) {
  74. dd.setDate(dd.getDate() + AddDayCount)
  75. } else {
  76. const preMonth = dd.getMonth()
  77. dd.setMonth(preMonth + AddDayCount) // 获取AddDayCount天后的日期
  78. const nextMonth = dd.getMonth()
  79. // 处理 pre 切换月份目标月份为2月没有当前日(30 31) 切换错误问题
  80. if(AddDayCount<0 && preMonth!==0 && nextMonth-preMonth>AddDayCount){
  81. dd.setMonth(nextMonth+(nextMonth-preMonth+AddDayCount))
  82. }
  83. // 处理 next 切换月份目标月份为2月没有当前日(30 31) 切换错误问题
  84. if(AddDayCount>0 && nextMonth-preMonth>AddDayCount){
  85. dd.setMonth(nextMonth-(nextMonth-preMonth-AddDayCount))
  86. }
  87. }
  88. break
  89. case 'year':
  90. dd.setFullYear(dd.getFullYear() + AddDayCount) // 获取AddDayCount天后的日期
  91. break
  92. }
  93. const y = dd.getFullYear()
  94. const m = dd.getMonth() + 1 < 10 ? '0' + (dd.getMonth() + 1) : dd.getMonth() + 1 // 获取当前月份的日期,不足10补0
  95. const d = dd.getDate() < 10 ? '0' + dd.getDate() : dd.getDate() // 获取当前几号,不足10补0
  96. return {
  97. fullDate: y + '-' + m + '-' + d,
  98. year: y,
  99. month: m,
  100. date: d,
  101. day: dd.getDay()
  102. }
  103. }
  104. /**
  105. * 获取上月剩余天数
  106. */
  107. _getLastMonthDays(firstDay, full) {
  108. let dateArr = []
  109. for (let i = firstDay; i > 0; i--) {
  110. const beforeDate = new Date(full.year, full.month - 1, -i + 1).getDate()
  111. dateArr.push({
  112. date: beforeDate,
  113. month: full.month - 1,
  114. lunar: this.getlunar(full.year, full.month - 1, beforeDate),
  115. disable: true
  116. })
  117. }
  118. return dateArr
  119. }
  120. /**
  121. * 获取本月天数
  122. */
  123. _currentMonthDys(dateData, full) {
  124. let dateArr = []
  125. let fullDate = this.date.fullDate
  126. const today = new Date().getDate()
  127. for (let i = 1; i <= dateData; i++) {
  128. let nowDate = full.year + '-' + (full.month < 10 ?
  129. full.month : full.month) + '-' + (i < 10 ?
  130. '0' + i : i)
  131. // 是否今天
  132. let isDay = fullDate === nowDate
  133. // 获取打点信息
  134. let info = this.selected && this.selected.find((item) => {
  135. if (this.dateEqual(nowDate, item.date)) {
  136. return item
  137. }
  138. })
  139. // 日期禁用
  140. let disableBefore = true
  141. let disableAfter = true
  142. if (this.startDate) {
  143. // let dateCompBefore = this.dateCompare(this.startDate, fullDate)
  144. // disableBefore = this.dateCompare(dateCompBefore ? this.startDate : fullDate, nowDate)
  145. disableBefore = this.dateCompare(this.startDate, nowDate)
  146. }
  147. if (this.endDate) {
  148. // let dateCompAfter = this.dateCompare(fullDate, this.endDate)
  149. // disableAfter = this.dateCompare(nowDate, dateCompAfter ? this.endDate : fullDate)
  150. disableAfter = this.dateCompare(nowDate, this.endDate)
  151. }
  152. let multiples = this.multipleStatus.data
  153. let checked = false
  154. let multiplesStatus = -1
  155. if (this.range) {
  156. if (multiples) {
  157. multiplesStatus = multiples.findIndex((item) => {
  158. return this.dateEqual(item, nowDate)
  159. })
  160. }
  161. if (multiplesStatus !== -1) {
  162. checked = true
  163. }
  164. }
  165. const currentMonth = new Date().getMonth() + 1;
  166. const currentYear = new Date().getFullYear()
  167. let disable = false;
  168. if (full.year === currentYear && full.month < currentMonth) {
  169. disable = true;
  170. } else if (full.year === currentYear && full.month === currentMonth) {
  171. disable = i < today;
  172. }
  173. let data = {
  174. fullDate: nowDate,
  175. year: full.year,
  176. date: i,
  177. multiple: this.range ? checked : false,
  178. beforeMultiple: this.dateEqual(this.multipleStatus.before, nowDate),
  179. afterMultiple: this.dateEqual(this.multipleStatus.after, nowDate),
  180. month: full.month,
  181. lunar: this.getlunar(full.year, full.month, i),
  182. // disable: !(disableBefore && disableAfter),
  183. disable,
  184. isDay
  185. }
  186. if (info) {
  187. data.extraInfo = info
  188. }
  189. dateArr.push(data)
  190. }
  191. return dateArr
  192. }
  193. /**
  194. * 获取下月天数
  195. */
  196. _getNextMonthDays(surplus, full) {
  197. let dateArr = []
  198. for (let i = 1; i < surplus + 1; i++) {
  199. dateArr.push({
  200. date: i,
  201. month: Number(full.month) + 1,
  202. lunar: this.getlunar(full.year, Number(full.month) + 1, i),
  203. disable: true
  204. })
  205. }
  206. return dateArr
  207. }
  208. /**
  209. * 获取当前日期详情
  210. * @param {Object} date
  211. */
  212. getInfo(date) {
  213. if (!date) {
  214. date = new Date()
  215. }
  216. const dateInfo = this.canlender.find(item => item.fullDate === this.getDate(date).fullDate)
  217. return dateInfo
  218. }
  219. /**
  220. * 比较时间大小
  221. */
  222. dateCompare(startDate, endDate) {
  223. // 计算截止时间
  224. startDate = new Date(startDate.replace('-', '/').replace('-', '/'))
  225. // 计算详细项的截止时间
  226. endDate = new Date(endDate.replace('-', '/').replace('-', '/'))
  227. if (startDate <= endDate) {
  228. return true
  229. } else {
  230. return false
  231. }
  232. }
  233. /**
  234. * 比较时间是否相等
  235. */
  236. dateEqual(before, after) {
  237. // 计算截止时间
  238. before = new Date(before.replace('-', '/').replace('-', '/'))
  239. // 计算详细项的截止时间
  240. after = new Date(after.replace('-', '/').replace('-', '/'))
  241. if (before.getTime() - after.getTime() === 0) {
  242. return true
  243. } else {
  244. return false
  245. }
  246. }
  247. /**
  248. * 获取日期范围内所有日期
  249. * @param {Object} begin
  250. * @param {Object} end
  251. */
  252. geDateAll(begin, end) {
  253. var arr = []
  254. var ab = begin.split('-')
  255. var ae = end.split('-')
  256. var db = new Date()
  257. db.setFullYear(ab[0], ab[1] - 1, ab[2])
  258. var de = new Date()
  259. de.setFullYear(ae[0], ae[1] - 1, ae[2])
  260. var unixDb = db.getTime() - 24 * 60 * 60 * 1000
  261. var unixDe = de.getTime() - 24 * 60 * 60 * 1000
  262. for (var k = unixDb; k <= unixDe;) {
  263. k = k + 24 * 60 * 60 * 1000
  264. arr.push(this.getDate(new Date(parseInt(k))).fullDate)
  265. }
  266. return arr
  267. }
  268. /**
  269. * 计算阴历日期显示
  270. */
  271. getlunar(year, month, date) {
  272. return CALENDAR.solar2lunar(year, month, date)
  273. }
  274. /**
  275. * 设置打点
  276. */
  277. setSelectInfo(data, value) {
  278. this.selected = value
  279. this._getWeek(data)
  280. }
  281. /**
  282. * 获取多选状态
  283. */
  284. setMultiple(fullDate) {
  285. let {
  286. before,
  287. after
  288. } = this.multipleStatus
  289. if (!this.range) return
  290. if (before && after) {
  291. this.multipleStatus.before = ''
  292. this.multipleStatus.after = ''
  293. this.multipleStatus.data = []
  294. } else {
  295. if (!before) {
  296. this.multipleStatus.before = fullDate
  297. } else {
  298. this.multipleStatus.after = fullDate
  299. if (this.dateCompare(this.multipleStatus.before, this.multipleStatus.after)) {
  300. this.multipleStatus.data = this.geDateAll(this.multipleStatus.before, this.multipleStatus.after);
  301. } else {
  302. this.multipleStatus.data = this.geDateAll(this.multipleStatus.after, this.multipleStatus.before);
  303. }
  304. }
  305. }
  306. this._getWeek(fullDate)
  307. }
  308. /**
  309. * 获取每周数据
  310. * @param {Object} dateData
  311. */
  312. _getWeek(dateData) {
  313. const {
  314. year,
  315. month
  316. } = this.getDate(dateData)
  317. let firstDay = new Date(year, month - 1, 1).getDay()
  318. let currentDay = new Date(year, month, 0).getDate()
  319. let dates = {
  320. lastMonthDays: this._getLastMonthDays(firstDay, this.getDate(dateData)), // 上个月末尾几天
  321. currentMonthDys: this._currentMonthDys(currentDay, this.getDate(dateData)), // 本月天数
  322. nextMonthDays: [], // 下个月开始几天
  323. weeks: []
  324. }
  325. let canlender = []
  326. const surplus = 42 - (dates.lastMonthDays.length + dates.currentMonthDys.length)
  327. dates.nextMonthDays = this._getNextMonthDays(surplus, this.getDate(dateData))
  328. canlender = canlender.concat(dates.lastMonthDays, dates.currentMonthDys, dates.nextMonthDays)
  329. let weeks = {}
  330. // 拼接数组 上个月开始几天 + 本月天数+ 下个月开始几天
  331. for (let i = 0; i < canlender.length; i++) {
  332. if (i % 7 === 0) {
  333. weeks[parseInt(i / 7)] = new Array(7)
  334. }
  335. weeks[parseInt(i / 7)][i % 7] = canlender[i]
  336. }
  337. this.canlender = canlender
  338. this.weeks = weeks
  339. }
  340. //静态方法
  341. // static init(date) {
  342. // if (!this.instance) {
  343. // this.instance = new Calendar(date);
  344. // }
  345. // return this.instance;
  346. // }
  347. }
  348. export default Calendar