3

これまでに無限スクローラーを構築する試みはすべて失敗しました。私が現在取り組んでいるコンポーネントは、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 を使用して手動でトリガーするか、コードを -function で更新するように試みmonthsましたsetTimeout()が、どちらも機能しませんでした。

4

1 に答える 1