10

我要求用户可以在日期选择器中选择多个日期。如何在 Angular Material 日期选择器中实现多个日期选择功能?

日期选择器

我通过dateClass尝试了这个。但是,在每次选择日期后,日期选择器将被关闭。

这是我尝试过的

HTML 代码:

<input matInput [matDatepicker]="picker" placeholder="Choose a date">
<mat-datepicker-toggle matSuffix [for]="picker"></mat-datepicker-toggle>
<mat-datepicker [dateClass]="dateClass" #picker></mat-datepicker>

打字稿代码:

dateClass = (d: Date) => {
    const date = d.getDate();

    // Highlight the 1st and 20th day of each month.
    return (date === 1 || date === 5 || date === 14 || date === 19 || date === 21 ) ? 'example-custom-date-class' : undefined;
}
4

2 回答 2

18

您需要直接使用 mat-calendar,您可以将其包含在 mat 菜单和 div 中以避免“关闭”,请参阅

<button mat-icon-button [matMenuTriggerFor]="appMenu">
  <mat-icon>calendar_today</mat-icon>
</button>
<mat-menu #appMenu="matMenu">
    <div (click)="$event.stopPropagation()">
        <mat-calendar #calendar 
           (selectedChange)="select($event,calendar)" 
            [dateClass]="isSelected">
        </mat-calendar>
    </div>
</mat-menu>

我选择以 yyyy-MM-dd (*) 的方式将日期的值存储在字符串中,所以

进口:

import { Component,ViewEncapsulation} from "@angular/core";

TS 代码:

daysSelected: any[] = [];
event: any;

isSelected = (event: any) => {
  const date =
    event.getFullYear() +
    "-" +
    ("00" + (event.getMonth() + 1)).slice(-2) +
    "-" +
    ("00" + event.getDate()).slice(-2);
  return this.daysSelected.find(x => x == date) ? "selected" : null;
};

select(event: any, calendar: any) {
  const date =
    event.getFullYear() +
    "-" +
    ("00" + (event.getMonth() + 1)).slice(-2) +
    "-" +
    ("00" + event.getDate()).slice(-2);
  const index = this.daysSelected.findIndex(x => x == date);
  if (index < 0) this.daysSelected.push(date);
  else this.daysSelected.splice(index, 1);

  calendar.updateTodaysDate();
}

最后 .css 很简单:

.mat-calendar-body-cell.selected
{
  background-color:red!important;
  border-radius: 50%
}
.drop-calendar
{
  width:30rem
}

注意:不要忘记在组件中将封装设置为无:

encapsulation:ViewEncapsulation.None

更新为什么在styles.css中使用ViewEncapsulation.None和其他方法

问题是如何将颜色添加到所选日期。当我们在 mat-calendar 中使用时[dateclass],我们创建了一个函数,该函数接收日期(每月的每一天)作为参数,并返回一个带有您想要的类名称的字符串。在代码中,如果日期在选定的数组中,则该类为“选定”。

但是如果我们不使用 ViewEncapsulation.None 或者我们放入 styles.css(或 styles.scss)(**),这不考虑在内。是的,这种风格必须以“全局”风格定义。(请记住, ViewEncapsulation.None 使组件中定义的样式变为“全局”

注意:如果您使用 ViewEncapsulation.None 在 stackblitz 中“玩”,请记住您需要刷新 stackblitz,因为样式仍然保存。

(**) 记得在 angular.json 中包含在“样式”中

"styles": [
 "src/styles.scss"
],

你可以在stackblitz中看到

(*) 您可以选择,例如存储所选日期的 getTime()。这个想法是您需要在数组“daysSelected”中找到它,否则,如果您直接使用对象 Date,则需要将日期中的年、月和日与数组的元素进行比较。这会导致性能不佳。认为函数“isSelected”被调用多少次,因为天有一个月,每次点击完成

于 2019-12-02T09:57:21.770 回答
4

另一种方式(有点黑客):StackBlitz

只是临时将close方法重写为空函数,并在更改后将其返回。还调用工作日重新渲染功能。不是安全和理想的解决方案,但有效。

可能对某人有用。

UPD:或者,您可以使用ngx-multiple-dates包。有一些例子

于 2020-01-24T18:37:11.083 回答