1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
import { AfterViewInit, Component, ElementRef, ViewChild, ViewChildren } from '@angular/core';
import { StepperSelectionEvent } from '@angular/cdk/stepper';
import { MatStepper } from '@angular/material/stepper';
import Shared from 'src/app/Shared';
@Component({
selector: 'app-experiment',
templateUrl: './experiment.component.html',
styleUrls: ['./experiment.component.css']
})
export class ExperimentComponent implements AfterViewInit {
@ViewChild(MatStepper) stepper!: MatStepper;
@ViewChild('stepsContainer') stepsContainer!: ElementRef;
@ViewChildren('steps') steps!: ElementRef[];
event: number = 0;
constructor() { }
stepHeight = this.calcStepHeight();
calcStepHeight() {
return window.innerHeight - 64;
}
ngAfterViewInit(): void {
window.addEventListener('resize', () => {
this.updatePageHeight();
})
this.updatePageHeight();
setInterval(() => {
this.updatePageIfScrolled();
}, 100);
this.stepsContainer.nativeElement.addEventListener('scroll', (event: Event) => {
Shared.emitBGScrollEvent(this.stepsContainer.nativeElement.scrollTop);
});
}
updatePageIfScrolled() {
if (this.scrolling) return;
const currentPage = Math.round(this.stepsContainer.nativeElement.scrollTop / this.stepHeight)
this.stepper.selectedIndex = currentPage;
}
updatePageHeight() {
this.stepHeight = this.calcStepHeight();
const stepHeight = `${this.stepHeight}px`;
this.stepsContainer.nativeElement.style.minHeight = stepHeight;
this.steps.forEach(step => {
step.nativeElement.style.minHeight = stepHeight;
})
}
changePage(event: StepperSelectionEvent) {
this.updatePage(<number>event.selectedIndex)
}
goToPage(pageNum: number) {
this.stepper.selectedIndex = pageNum;
this.updatePage(pageNum);
}
scrollTimeout: any;
updatePage(pageNum: number) {
this.scrolling = true;
this.event = pageNum;
let scrollAmount = 0;
this.steps.forEach((step, index) => {
if (index == pageNum) {
scrollAmount = step.nativeElement.offsetTop;
}
})
clearTimeout(this.scrollTimeout);
this.scrollTimeout = setTimeout(() => {
this.scrolling = false;
}, 800);
this.stepsContainer.nativeElement.scroll({
top: scrollAmount,
behavior: 'smooth' //auto, smooth, initial, inherit
});
}
scrolling: boolean = false;
}
|