【HarmonyOS Next开发】日历组件详细日界面组件

简介: 原生UI没有提供日历相关的组件,于是手撸了详细页面的日程。一开始打算使用list加tab的方式来实现切换的效果,但是list的切换是没有办法确定当前展示的索引的,所以没有办法实现日历内容动态添加等效果。在业内大佬的指导下,使用了两个swiper组件分别实现周和日的切换,实现了想要的效果

背景

原生UI没有提供日历相关的组件,于是手撸了详细页面的日程。一开始打算使用list加tab的方式来实现切换的效果,但是list的切换是没有办法确定当前展示的索引的,所以没有办法实现日历内容动态添加等效果。在业内大佬的指导下,使用了两个swiper组件分别实现周和日的切换,实现了想要的效果,如下:

代码

DayViewPage

/**
 *周天数
 */
import {
    DateUtil } from '../Utils/DateUtil';

const WEEKDAY_NUMBER = 7;

@Entry
@Component
struct DayViewPage {
   
  //日期Swiper控件索引
  @State ShowDayIndex: number = 0;
  //展示日期
  @State ShowDay: Date = new Date();
  //日期集合
  @State DayList: Array<Date> = new Array<Date>();
  //日期滑动前索引
  @State DayStartIndex: number = 0;
  //日期滑动后索引
  @State DayEndIndex: number = 0;
  //周Swiper控件索引
  @State ShowWeekIndex: number = 0;
  //周组件亮显索引
  @State WeekDayIndex: number = 0
  //周所有日期集合
  @State CalendarLists: Array<Array<Date>> = new Array<Array<Date>>();
  private _TimeNameList: string[] = ["日", "一", "二", "三", "四", "五", "六"]
  private weekSwiperController: SwiperController = new SwiperController();
  private daySwiperController: SwiperController = new SwiperController();

  @Builder
  OneDayBuilder(index: number, showDate: Date) {
   
    Column() {
   
      Text(this._TimeNameList[index])
        .fontSize(14)
        .margin({
    bottom: 4 })
        .fontColor(this.WeekDayIndex === index ? "#1655ed" : (index == 0 || index == 6) ? "#818382" : Color.Black)
      Column() {
   
        Text(showDate.getDate().toString())
          .fontColor(this.WeekDayIndex === index ? Color.White : (index == 0 || index == 6) ? "#818382" : Color.Black)
          .fontSize(20)
          .fontWeight(FontWeight.Bold)
      }
      .backgroundColor(this.WeekDayIndex === index ? "#1655ed" : Color.White)
      .width(35)
      .height(35)
      .borderRadius(17)
      .justifyContent(FlexAlign.Center)
    }
    .justifyContent(FlexAlign.Center)
    .height("100%")
    .width('100%')
    .backgroundColor(Color.White)
    .borderWidth({
    bottom: 2 })
    .borderColor("#f3f3f3")
    .onClick(() => {
   
      this.UpdateShowDayIndex(showDate)
    })
  }

  aboutToAppear(): void {
   
    //初始化今天的一周的前和后
    this.ShowDay = new Date();
    let thisWeek: Array<Date> = DateUtil.GetWeekDateList(this.ShowDay);
    let previousWeek: Array<Date> = DateUtil.GetWeekDateList(DateUtil.GetNextDay(thisWeek[0], -1));
    let nextWeek: Array<Date> = DateUtil.GetWeekDateList(DateUtil.GetNextDay(thisWeek[thisWeek.length-1], 1));
    this.CalendarLists.push(previousWeek, thisWeek, nextWeek);
    this.WeekDayIndex = this.ShowDay.getDay();
    this.DayList = previousWeek.concat(thisWeek.concat(nextWeek));
    this.ShowWeekIndex = 1;
    this.ShowDayIndex = WEEKDAY_NUMBER + this.WeekDayIndex;
  }

  build() {
   
    Column({
    space: 5 }) {
   
      Swiper(this.weekSwiperController) {
   
        ForEach(this.CalendarLists, (item: Array<Date>, index) => {
   
          Grid() {
   
            ForEach(item, (oneDay: Date, dayIndex) => {
   
              GridItem() {
   
                this.OneDayBuilder(dayIndex, oneDay)
              }
            })
          }
          .columnsTemplate('1fr 1fr 1fr 1fr 1fr 1fr 1fr')
        })
      }
      .index(this.ShowWeekIndex)
      .width("100%")
      .height(65)
      .loop(false)
      .indicator(false)
      .onAnimationEnd((index) => {
   
        this.ShowWeekIndex = index;
        if (index === 0) {
   
          this.AddPreviousWeekDay();
        } else if (index == this.CalendarLists.length - 1) {
   
          this.AddNextWeekDay();
        }
        let tempShowDay: Date = this.CalendarLists[this.ShowWeekIndex][this.WeekDayIndex];
        this.UpdateShowDayIndex(tempShowDay);
      })
      .margin({
    top: 20 })

      Swiper(this.daySwiperController) {
   
        ForEach(this.DayList, (oneDay: Date, dayIndex) => {
   
          Column() {
   
            Text(oneDay.toString())
              .fontSize(30)
          }
          .height("100%")
          .justifyContent(FlexAlign.Center)
        })
      }
      .loop(false)
      .index(this.ShowDayIndex)
      .width("100%")
      .indicator(false)
      .layoutWeight(1)
      .onAnimationStart((start, end, event) => {
   
        this.DayStartIndex = start;
      })
      .onAnimationEnd((end, event) => {
   
        this.DayEndIndex = end;
        this.DaySwitch();
      })
    }
    .height('100%')
    .width('100%')

  }

  /**
   * 日程切换事件
   */
  private DaySwitch() {
   
    if (this.DayStartIndex == this.DayEndIndex) {
   
      return;
    }
    //往右滑,临界值滑动,需要修改week的展示索引
    if (this.DayStartIndex > this.DayEndIndex) {
   
      this.WeekDayIndex--;
      if (this.WeekDayIndex == -1) {
   
        this.weekSwiperController.showPrevious();
        this.WeekDayIndex = WEEKDAY_NUMBER - 1;
        this.ShowDay = this.CalendarLists[this.ShowWeekIndex-1][this.WeekDayIndex];
      }
    }
    //往左滑,临界值滑动,需要修改week的展示索引
    else {
   
      this.WeekDayIndex++;
      if (this.WeekDayIndex == WEEKDAY_NUMBER) {
   
        this.weekSwiperController.showNext();
        this.WeekDayIndex = 0;
        this.ShowDay = this.CalendarLists[this.ShowWeekIndex+1][this.WeekDayIndex];
      }
    }

  }

  /**
   * 添加上一周
   */
  private AddPreviousWeekDay() {
   
    let previousWeek: Array<Date> = DateUtil.GetWeekDateList(DateUtil.GetNextDay(this.CalendarLists[0][0], -1));
    this.CalendarLists.unshift(previousWeek);
    this.weekSwiperController.changeIndex(1);
    this.ShowWeekIndex = 1;
    this.DayList = previousWeek.concat(this.DayList);
    this.UpdateShowDayIndex();
  }

  /**
   * 添加下一周
   */
  private AddNextWeekDay() {
   
    let nextWeek: Array<Date> =
      DateUtil.GetWeekDateList(DateUtil.GetNextDay(this.CalendarLists[this.CalendarLists.length - 1][WEEKDAY_NUMBER -
        1], 1));
    this.CalendarLists.push(nextWeek);
    this.DayList = this.DayList.concat(nextWeek);
    this.UpdateShowDayIndex()
  }

  /**
   * 更新显示日期
   * @param nwDate
   */
  private UpdateShowDayIndex(nwDate?: Date) {
   
    if (nwDate != undefined) {
   
      this.ShowDay = nwDate;
    }
    this.WeekDayIndex = this.ShowDay.getDay();
    let showDayIndex = this.DayList.findIndex(x =>
    x.getFullYear() == this.ShowDay.getFullYear() &&
      x.getMonth() == this.ShowDay.getMonth() &&
      x.getDate() == this.ShowDay.getDate());
    if (showDayIndex == -1) {
   
      return;
    }
    this.daySwiperController.changeIndex(showDayIndex, false);
  }
}

DateUtil

export class DateUtil {
   
  /**
   * 通过一天获得一周的date集合
   * @param oneDay
   * @returns
   */
  public static GetWeekDateList(oneDay: Date): Array<Date> {
   
    let dataList: Array<Date> = [];
    let dayNumber: number = oneDay.getDay();
    for (let index = 0; index < 7; index++) {
   
      let tempDate: Date = new Date(oneDay);
      tempDate.setDate(tempDate.getDate() + (index - dayNumber));
      dataList.push(tempDate);
    }
    return dataList;
  }

  public static GetNextDay(oneDay: Date, index: number): Date {
   
    let tempDay: Date = new Date(oneDay);
    tempDay.setDate(tempDay.getDate() + index);
    return tempDay;
  }
}
相关文章
|
1天前
【HarmonyOS Next开发】:ListItemGroup使用
通过使用ListItemGroup和AlphabetIndexer两种类型组件,实现带标题分类和右侧导航栏的页面
81 61
|
1天前
|
API 容器
【HarmonyOS Next开发】Navigation使用
Navigation是路由容器组件,包括单栏(Stack)、分栏(Split)和自适应(Auto)三种显示模式。适用于模块内和跨模块的路由切换。 在页面跳转时,应该使用页面路由router,在页面内的页面跳转时,建议使用Navigation达到更好的转场动效场景。
25 8
|
1天前
|
API
【HarmonyOS Next开发】Tabs使用封装
在写Tabs时,会使用很多个TabContent来实现不同页面的展示内容,但是如果TabContent数量很多时,会导致Tabs代码量大而且很臃肿,因此想着尝试去封装Tabs的使用,可以让界面整洁和对内容界面的解耦。 主要依托于wrapBuilder:封装全局@Builder的方法使用。需要注意从API 11 才开始支持使用
16 6
HarmonyOS实战—组件的外边距和内边距
HarmonyOS实战—组件的外边距和内边距
283 0
HarmonyOS实战—组件的外边距和内边距
|
2天前
|
人工智能 文字识别 算法
|
2天前
|
安全 Java 开发者
|
2天前
|
存储 开发者 容器
|
3天前
|
人工智能 自然语言处理 算法
开箱即用的个人主页页面开发实战—基于HarmonyOS 5.0 (Next)和ArkTS的实现【HarmonyOS 5.0(Next)】
本文介绍了基于HarmonyOS 5.0(Next)和ArkTS开发的开箱即用个人主页页面。HarmonyOS 5.0(Next)采用全新“和谐美学”设计理念,通过光元素模拟、多设备无缝流转及小艺助手升级,提升用户体验。文章详细解析了使用ArkTS构建个人主页页面的代码,展示了清晰的布局层次、简洁的事件处理、状态管理和组件化开发等最佳实践。这段代码不仅实现了美观的界面设计,还提供了高效的应用导航和数据传递功能,体现了对用户体验的高度关注。
40 12
开箱即用的个人主页页面开发实战—基于HarmonyOS 5.0 (Next)和ArkTS的实现【HarmonyOS 5.0(Next)】
|
1天前
|
安全 数据安全/隐私保护
鸿蒙开发:一文了解软键盘相关
软键盘最主要的就是合理的进行避让,不能遮挡可输入组件,再有多个输入框的时候,需要动态的进行设置高度,这一点需要注意。
鸿蒙开发:一文了解软键盘相关

热门文章

最新文章