Jelajahi Sumber

fix: 时间组件跨越周显示修复

kindring 10 bulan lalu
induk
melakukan
fb290d2037
2 mengubah file dengan 19 tambahan dan 16 penghapusan
  1. 1 1
      src/util/pageHandle.ts
  2. 18 15
      src/util/time.ts

+ 1 - 1
src/util/pageHandle.ts

@@ -45,7 +45,7 @@ function tryBindWindow(ipc: Electron.IpcRenderer, type: string): (action: IpcAct
 /**
  * 初始化页面 挂载$winHandle为全局函数. 操作窗口
  * @param app
- *
+ * @param type 窗口类型 用于前端反向绑定主进程
  */
 export function windowInit(app: App, type: string){
     // 先将验证窗口绑定到全局, 接收到 绑定消息后再进行绑定

+ 18 - 15
src/util/time.ts

@@ -143,8 +143,7 @@ function getChineseWeek(date: Date): number {
  * @param date
  */
 function getMonthDays(date: Date): number {
-    const days = new Date(date.getFullYear(), date.getMonth() + 1, 0).getDate();
-    return days;
+    return new Date(date.getFullYear(), date.getMonth() + 1, 0).getDate();
 }
 
 
@@ -185,12 +184,11 @@ function calendarGetNextMonth(calendar: Calendar): Calendar
         nextMonth = 1;
         nextYear++;
     }
-    let newCalendar: Calendar = {
+    return {
         ...calendar,
         month: nextMonth,
         year: nextYear
-    }
-    return newCalendar;
+    };
 }
 
 function calendarGetPrevMonth(calendar: Calendar): Calendar
@@ -202,18 +200,16 @@ function calendarGetPrevMonth(calendar: Calendar): Calendar
         prevMonth = 12;
         prevYear--;
     }
-    let newCalendar: Calendar = {
+    return {
         ...calendar,
         month: prevMonth,
         year: prevYear
-    }
-    return newCalendar;
+    };
 }
 
 /**
  * 获取指定日期的日历列表
  * @param time
- * @param isWeek
  */
 export function getCalendar(time: Date): Calendar[] {
     const calendar: Calendar = dateToCalendar(time);
@@ -226,10 +222,13 @@ export function getCalendar(time: Date): Calendar[] {
     {
         // 计算前一个月的天数
         let lastCalendar = calendarGetPrevMonth(calendar);
+        console.log(lastCalendar)
         let daysInLastMonth = getMonthDaysInfo(lastCalendar.year, lastCalendar.month);
         // 获取前一个月的后几天
         for(let i = 1; i < firstDayWeek; i++)
         {
+
+            console.log(`i: ${i} => ${daysInLastMonth.length - i}`)
             // 获取上一个月的最后几天
             let lastDay = daysInLastMonth[daysInLastMonth.length - i];
             lastDay.isLast = true;
@@ -254,7 +253,7 @@ export function getCalendar(time: Date): Calendar[] {
 function dateToCalendar(date: Date): Calendar {
     let nowDate = new Date();
     let isToday = date.getFullYear() === nowDate.getFullYear() && date.getMonth() === nowDate.getMonth() && date.getDate() === nowDate.getDate();
-    let calendar:Calendar = {
+    return {
         year: date.getFullYear(),
         month: date.getMonth() + 1,
         day: date.getDate(),
@@ -263,7 +262,6 @@ function dateToCalendar(date: Date): Calendar {
         isLast: false,
         isNext: false,
     };
-    return calendar;
 }
 
 export function getCalendarByWeek(time: Date, expand: boolean = false): Calendar[] {
@@ -274,11 +272,16 @@ export function getCalendarByWeek(time: Date, expand: boolean = false): Calendar
         // 获取前一个月的天数
         let lastCalendar = calendarGetPrevMonth(calendar);
         let daysInLastMonth = getMonthDaysInfo(lastCalendar.year, lastCalendar.month);
-        let len = expand ? daysInLastMonth.length : calendar.day - 1 ;
-        for (let i = 0; i < len; i++) {
-            daysInLastMonth[daysInLastMonth.length - i].isLast = true;
-            calendars.unshift(daysInLastMonth[daysInLastMonth.length - i]);
+        // 获取当月第一天的星期
+        let len = expand ? daysInLastMonth.length : calendars[0].week;
+        console.log(len);
+        for (let i = 1; i < len; i++) {
+            let lastDay = daysInLastMonth[daysInLastMonth.length - i];
+            console.log(`i: ${i} ${daysInLastMonth.length - i}  ${lastDay.month}月${lastDay.day}日`)
+            lastDay.isLast = true;
+            calendars.unshift(lastDay);
         }
+        console.log(calendars)
     }
     if (calendar.day >= 22) {
         // 获取下一个月的天数