gpt4 book ai didi

angular - 禁用标记的 ng-bootstrap 不适用于其他日期选择器示例

转载 作者:行者123 更新时间:2023-12-04 02:00:16 25 4
gpt4 key购买 nike

我正在尝试使用 ng-bootstrap 日期选择器中的范围选择和全局配置 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> -->

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

最佳答案

忘记配置(以及我之前的评论)。只需在您的 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;
}

注意:您可以在 bg 模板中使用日期、禁用、聚焦和选定变量
<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>

关于angular - 禁用标记的 ng-bootstrap 不适用于其他日期选择器示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47738545/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com