|
@@ -7,3 +7,35 @@ export const formatDate = (d) => {
|
|
|
const m = `${_date.getMinutes() < 10 ? `0${_date.getMinutes()}` : _date.getMinutes()}`;
|
|
|
return `${Y}/${M}/${D} ${H}:${m}`;
|
|
|
}
|
|
|
+
|
|
|
+export const getMonthCalendarData = (d, fD) => {
|
|
|
+ const getFirstDateOfWeek = (fDate, firstDayOfWeek) => {
|
|
|
+ const day = fDate.getDay();
|
|
|
+ const diff = (day < firstDayOfWeek ? 7 : 0) + day - firstDayOfWeek;
|
|
|
+ const firstDate = new Date(fDate.getFullYear(), fDate.getMonth(), fDate.getDate() - diff);
|
|
|
+ return firstDate;
|
|
|
+ }
|
|
|
+ const getLastDateOfWeek = (lDate, lastDayOfWeek) => {
|
|
|
+ const day = lDate.getDay();
|
|
|
+ const diff = (day < lastDayOfWeek ? 7 : 0) + day - lastDayOfWeek;
|
|
|
+ const lastDate = new Date(lDate.getFullYear(), lDate.getMonth(), lDate.getDate() + (6 - diff));
|
|
|
+ return lastDate;
|
|
|
+ }
|
|
|
+ const oneDayTime = 1000 * 60 * 60 * 24
|
|
|
+ const _date = new Date(d)
|
|
|
+ // d的月份有几天
|
|
|
+ const monthDaysTotal = new Date(_date.getFullYear(), _date.getMonth() + 1, 0).getDate()
|
|
|
+ // d的月份的第一天
|
|
|
+ const monthFirstDate = new Date(_date.getFullYear(), _date.getMonth(), 1)
|
|
|
+ // 日历第一天
|
|
|
+ const wholeFirstDay = getFirstDateOfWeek(monthFirstDate, fD)
|
|
|
+ // d的月份的最后一天
|
|
|
+ const monthLastDate = new Date(_date.getFullYear(), _date.getMonth(), monthDaysTotal)
|
|
|
+ // 日历最后一天
|
|
|
+ const wholeLastDay = getLastDateOfWeek(monthLastDate, fD)
|
|
|
+ const arr: any = []
|
|
|
+ for (let i = wholeFirstDay.getTime(); i <= wholeLastDay.getTime(); i += oneDayTime) {
|
|
|
+ arr.push(new Date(i).getDay() + '-' + new Date(i).getDate())
|
|
|
+ }
|
|
|
+ return arr
|
|
|
+}
|