【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;
  }
}
相关文章
|
29天前
|
存储 人工智能 JavaScript
Harmony OS开发-ArkTS语言速成二
本文介绍了ArkTS基础语法,包括三种基本数据类型(string、number、boolean)和变量的使用。重点讲解了let、const和var的区别,涵盖作用域、变量提升、重新赋值及初始化等方面。期待与你共同进步!
90 47
Harmony OS开发-ArkTS语言速成二
|
21天前
|
存储 JSON 区块链
【HarmonyOS NEXT开发——ArkTS语言】购物商城的实现【合集】
HarmonyOS应用开发使用@Component装饰器将Home结构体标记为一个组件,意味着它可以在界面构建中被当作一个独立的UI单元来使用,并且按照其内部定义的build方法来渲染具体的界面内容。txt:string定义了一个名为Data的接口,用于规范表示产品数据的结构。src:类型为,推测是用于引用资源(可能是图片资源等)的一种特定类型,用于指定产品对应的图片资源。txt:字符串类型,用于存放产品的文字描述,比如产品名称等相关信息。price:数值类型,用于表示产品的价格信息。
41 5
|
21天前
|
开发工具 开发者 容器
【HarmonyOS NEXT开发——ArkTS语言】欢迎界面(启动加载页)的实现【合集】
从ArkTS代码架构层面而言,@Entry指明入口、@Component助力复用、@Preview便于预览,只是初窥门径,为开发流程带来些许便利。尤其动画回调与Blank组件,细节粗糙,后续定当潜心钻研,力求精进。”,字体颜色为白色,字体大小等设置与之前类似,不过动画配置有所不同,时长为。,不过这里没有看到额外的动画效果添加到这个特定的图片元素上(与前面带动画的元素对比而言)。这是一个显示文本的视图,文本内容为“奇怪的知识”,设置了字体颜色为灰色(的结构体,它代表了整个界面组件的逻辑和视图结构。
38 1
|
移动开发 Ubuntu 网络协议
嵌入式linux/鸿蒙开发板(IMX6ULL)开发 (二)Ubuntu操作入门与Linux常用命令(中)
嵌入式linux/鸿蒙开发板(IMX6ULL)开发 (二)Ubuntu操作入门与Linux常用命令
182 1
嵌入式linux/鸿蒙开发板(IMX6ULL)开发 (二)Ubuntu操作入门与Linux常用命令(中)
|
XML Web App开发 开发框架
鸿蒙开发入门 | 开发第一个鸿蒙应用+页面跳转
准备好鸿蒙开发环境后,接下来就需要创建鸿蒙项目,掌握项目的创建过程以及配置。项目创建好后,需要把项目运行在模拟器上,鸿蒙的模拟和安卓模拟器有些不同,鸿蒙提供远程模拟器和本地模拟器,通过登录华为账号登录在线模拟器,使用DevEco Studio可将项目部署到远程模拟器中。
1311 1
鸿蒙开发入门 | 开发第一个鸿蒙应用+页面跳转
|
存储 Ubuntu 前端开发
嵌入式linux/鸿蒙开发板(IMX6ULL)开发 (二)Ubuntu操作入门与Linux常用命令(下)
嵌入式linux/鸿蒙开发板(IMX6ULL)开发 (二)Ubuntu操作入门与Linux常用命令
355 0
嵌入式linux/鸿蒙开发板(IMX6ULL)开发 (二)Ubuntu操作入门与Linux常用命令(下)
|
存储 编解码 Ubuntu
嵌入式linux/鸿蒙开发板(IMX6ULL)开发 (二)Ubuntu操作入门与Linux常用命令(上)
嵌入式linux/鸿蒙开发板(IMX6ULL)开发 (二)Ubuntu操作入门与Linux常用命令
249 0
嵌入式linux/鸿蒙开发板(IMX6ULL)开发 (二)Ubuntu操作入门与Linux常用命令(上)
|
开发工具
HarmonyOS(鸿蒙)开发一文入门
HarmonyOS(鸿蒙)开发一文入门
185 0
HarmonyOS(鸿蒙)开发一文入门
|
1月前
|
API 索引
鸿蒙开发:实现一个超简单的网格拖拽
实现拖拽,最重要的三个方法就是,打开编辑状态editMode,实现onItemDragStart和onItemDrop,设置拖拽移动动画和交换数据,如果想到开启补位动画,还需要实现supportAnimation方法。
79 13
鸿蒙开发:实现一个超简单的网格拖拽
|
30天前
|
索引 API
鸿蒙开发:自定义一个股票代码选择键盘
金融类的软件,特别是股票基金类的应用,在查找股票的时候,都会有一个区别于正常键盘的键盘,也就是股票代码键盘,和普通键盘的区别就是,除了常见的数字之外,也有一些常见的股票代码前缀按钮,方便在查找股票的时候,更加方便的进行检索。
鸿蒙开发:自定义一个股票代码选择键盘