Все мои предыдущие попытки построить бесконечный скроллер пока что провалились.
Компонент, над которым я сейчас работаю, использует виртуальную прокрутку Angular и должен обновлять источник данных при достижении определенного индекса области просмотра виртуальной прокрутки.
Хотя BehaviorSubject действительно обновляется, я не вижу новую версию в представлении.
Мой компонент выглядит так:
import {Day, Month, Selected, Weekday} from './datepicker';
import {CdkVirtualScrollViewport} from '@angular/cdk/scrolling';
import {BehaviorSubject} from 'rxjs';
@Component({
selector: 'app-calendar-datepicker',
templateUrl: './calendar-datepicker.component.html',
styleUrls: ['./calendar-datepicker.component.scss']
})
export class CalendarDatepickerComponent implements OnInit {
months: BehaviorSubject<any[]> = new BehaviorSubject<any[]>([]);
previousScrollIndex: number;
@ViewChild('dateScroller') dateScroller: CdkVirtualScrollViewport;
constructor() {
}
ngOnInit() {
/*initialization of the array*/
const initialMonths = [];
const month = new Month(this.currentDate);
const date = moment(this.currentDate);
const nextMonth = new Month(date.add(1, 'M'));
const nextDate = moment(date);
const monthAfterNextMonth = new Month(nextDate.add(1, 'M'));
initialMonths.push(month);
initialMonths.push(nextMonth);
initialMonths.push(monthAfterNextMonth);
this.months.next(initialMonths);
}
public onScroll(index) {
if (typeof(this.previousScrollIndex) === 'undefined') {
this.previousScrollIndex = index;
} else if (this.previousScrollIndex < index) {
if (index % 2 === 0) {
this.dateScroller.scrollToIndex(index);
} else {
this.dateScroller.scrollToIndex(index + 1);
/*This is the place where the BehaviorSubject is updated*/
const date = moment(this.months.value[index].date);
const monthToFetch = new Month(date.add(2, 'M'));
const fetchedMonths = this.months.value;
fetchedMonths.push(monthToFetch);
this.months.next(fetchedMonths);
}
this.previousScrollIndex = index;
} else {
if (index % 2 === 0) {
this.dateScroller.scrollToIndex(index);
} else {
this.dateScroller.scrollToIndex(index - 1);
}
this.previousScrollIndex = index;
}
}
}
И выглядит так:
<cdk-virtual-scroll-viewport itemSize="92" #dateScroller class="scroll-container"
(scrolledIndexChange)="onScroll($event)">
<div *cdkVirtualFor="let month of months | async">
<div class="month">{{month.date.format('MMMM')}}</div>
<div class="days">
<div class="day previousMonth" *ngFor="let prevMonthDay of month.prevMonthDays"></div>
<div class="day" *ngFor="let day of month.monthDays" (click)="onSelect(day)"
[ngClass]="{ 'selected': day.selected, 'past': day.past, 'today': day.today,
'first': day.firstSelected && isRangeSelected, 'last':day.lastSelected,
'onlyOneSelected': day.firstSelected && !isRangeSelected}">
<span *ngIf="day.firstSelected || day.lastSelected" class="borderDay"></span>
<span class="dayText">{{day.number}}</span>
</div>
</div>
</div>
</cdk-virtual-scroll-viewport>
До сих пор я пытался использовать ChangeDetectorRef и запускать его вручную или помещать свой код для обновления months
в setTimeout()
-функцию, но ни одна из них не работала.