mark-disabled ng-bootstrap不能与其他日期选择器示例一起使用

时间:2017-12-10 11:50:54

标签: angular datepicker ng-bootstrap

我正在尝试使用ng-bootstrap datepicker example中的范围选择和全局配置。 但是config.mark-disabled似乎不适用于我的代码: 它几乎只是来自上面链接示例的代码。 我更改了fromDate和toDate值以查看是否与应禁用的日期存在冲突,但它没有帮助。

我的.ts文件:

import { Booking } from '../booking/booking.model';
import { BookingDataService } from '../booking-data.service';
import { Component, OnInit } from '@angular/core';
import {NgbDateStruct, NgbCalendar,NgbDatepickerConfig } from '@ng-bootstrap/ng-bootstrap';
import { AddBookingComponent } from '../add-booking/add-booking.component';
import { EventEmitter } from '@angular/core/src/event_emitter';


const equals = (one: NgbDateStruct, two: NgbDateStruct) =>
one && two && two.year === one.year && two.month === one.month && two.day === one.day;

const before = (one: NgbDateStruct, two: NgbDateStruct) =>
!one || !two ? false : one.year === two.year ? one.month === two.month ? one.day === two.day
  ? false : one.day < two.day : one.month < two.month : one.year < two.year;

const after = (one: NgbDateStruct, two: NgbDateStruct) =>
!one || !two ? false : one.year === two.year ? one.month === two.month ? one.day === two.day
  ? false : one.day > two.day : one.month > two.month : one.year > two.year;

@Component({
  selector: 'app-calendar',
  templateUrl: './calendar.component.html',
  styleUrls: ['./calendar.component.css'],
  providers: [NgbDatepickerConfig, BookingDataService]
})
export class CalendarComponent implements OnInit {

  private bookings : Booking[];
  hoveredDate: NgbDateStruct;

    fromDate: NgbDateStruct;
    toDate: NgbDateStruct;
    model;

    constructor(calendar: NgbCalendar, config : NgbDatepickerConfig, private _bookingDataService: BookingDataService) {

      this.fromDate = calendar.getToday();
      this.toDate = calendar.getNext(calendar.getToday(), 'd', 3);

      config.minDate = {year: calendar.getToday().year, month: calendar.getToday().month-1,day:calendar.getToday().day}
      config.maxDate = {year: 2099, month: 12, day: 31};

      config.outsideDays = 'hidden';

      config.markDisabled = (date: NgbDateStruct) => {
        const d = new Date(date.year, date.month - 1, date.day);
        return d.getDay() === 0 || d.getDay() === 6;
      }; // this function disables the weekends, but in my case it doesn't seem to work

    }

  //   isDisabled = (date: NgbDateStruct, current: {month: number}) => {
  //     const d = new Date(date.year, date.month - 1, date.day);
  //     return this.isBookedDate(); // this is undefined
  // }
  //   isBookedDate() : Date[]{
  //     return null;
  //     // return this._bookingDataService.bookings.filter(obj => obj.date< caledar.getToday())
  //   }

    onDateChange(date: NgbDateStruct) {
      if (!this.fromDate && !this.toDate) {
        this.fromDate = date;
      } else if (this.fromDate && !this.toDate && after(date, this.fromDate)) {
        this.toDate = date;
      } else {
        this.toDate = null;
        this.fromDate = date;
      }
    }

    isHovered = date => this.fromDate && !this.toDate && this.hoveredDate && after(date, this.fromDate) && before(date, this.hoveredDate);
    isInside = date => after(date, this.fromDate) && before(date, this.toDate);
    isFrom = date => equals(date, this.fromDate);
    isTo = date => equals(date, this.toDate);

  ngOnInit() {

  }

  bookNow(fromDate: Date, toDate : Date) : boolean {
     return true;
  }

  display(vid:AddBookingComponent){

  }

}

我的html:

<ngb-datepicker #dp ngModel [(ngModel)]="model" (ngModelChange)="onDateChange($event)" [displayMonths]="2" [dayTemplate]="t">
</ngb-datepicker>

<ng-template #t let-date="date" let-focused="focused">
  <span class="custom-day"
        [class.focused]="focused"
        [class.range]="isFrom(date) || isTo(date) || isInside(date) || isHovered(date)"
        [class.faded]="isHovered(date) || isInside(date)"
        (mouseenter)="hoveredDate = date"
        (mouseleave)="hoveredDate = null">
    {{ date.day }}
  </span>
</ng-template>

<hr>

<div>
  <pre>From night: {{ fromDate.day}}/{{fromDate.month}}/{{fromDate.year}} </pre>
  <pre>To night: {{ toDate.day}}/{{toDate.month}}/{{toDate.year}} included</pre>
</div>

<button class="btn btn-success" (click)="bookNow('fromDate','toDate')" (click)="display('AddBookingComponent')" >Book now</button>
<!-- <app-add-booking></app-add-booking> -->

这两个例子的组合似乎不起作用。 非常感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

忘记配置(以及之前的评论)。只需在你的ngb-datepicker中使用[markDisabled]

<ngb-datepicker  #dp ngModel [(ngModel)]="model" (ngModelChange)="onDateChange($event)" 
 [dayTemplate]="customDay" [markDisabled]="isDisabled"  [displayMonths]="2"
></ngb-datepicker>

你的isDisabled函数就像

一样
  isDisabled(date: NgbDateStruct) {
    const d = new Date(date.year, date.month - 1, date.day);
    return date.day==13 || d.getDay() === 0 || d.getDay() === 6;
  }

NOTA:您可以在bg-template

中使用日期,已禁用,聚焦和选定的变量
<ng-template #customDay let-date="date" let-currentMonth="currentMonth" 
  let-disabled="disabled" let-focused="focused" 
  let-selected="selected" >
  <div class="custom-day" [class.weekend]="isWeekend(date)" [class.focused]="focused"  
  [class.bg-primary]="selected" [class.hidden]="date.month !== currentMonth" 
  [class.text-muted]="disabled">
    {{ date.month }}
</div>
</ng-template>
相关问题