aboutsummaryrefslogtreecommitdiffstats
path: root/stories/ng2-component-lab/infinite-scroll.component.exp.ts
blob: bd20be5b923a4f8953196ed622ec073f89a5cf98 (plain)
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
import { experimentOn } from '@islavi/ng2-component-lab';

const basicContext = {
    scrollContainerId: 'scrollContainer',
    numLines: Array(20).fill(null),
    hitBottomCount: 0,
    pageCount: 0,
    isPageLoading: false,
    insertPageImmediately: function(pageNum) {
        const scrollContainerElem: HTMLElement = document.getElementById(this.scrollContainerId);
        scrollContainerElem.appendChild(document.createElement('hr'));
        Array(10).fill(null).forEach((_, i) => {
            const lineElem = document.createElement('div');
            lineElem.innerHTML = `Page ${pageNum} - line ${i + 1}`;
            scrollContainerElem.appendChild(lineElem);
        });
    },
    loadPageAsync: function(pageNum, timeout) {
        return new Promise((resolve) => {
            setTimeout(() => {
                this.insertPageImmediately(pageNum);
                resolve();
            }, timeout);
        });
    },
    onScrollHitBottom: function() {
        this.hitBottomCount++;
    }
};

const basicStyle = `
    .scroll-container {
        margin: 12px;
        border: none;
        padding: 5px;
        width: 200px;
        height: 100px;
        overflow: auto;
        font-size: 20px !important;
        box-shadow: #666 1px 1px 10px;
    }

    .example-source {
        background: #eeeeee;
        padding: 10px;
        border: 1px solid #999999;
    }
    .example-source pre {
        overflow: hidden;
        background: #dddddd;
        margin-top: 5px;
        padding: 5px;
        user-select: text;
    }
`;
const makeBasicStyleDistance = (distance: number) => `
    .scroll-container::after {
        display: block;
        content: '';
        height: ${distance}px;
        background: red;
    }
`;

export default experimentOn('Infinite-Scroll')
    .group("Infinite Scroll",[
      {
        id: 'infiniteScrollUsage',
        showSource: true,
        context: Object.assign({}, basicContext),
        title: 'Infinite scroll usage',
        description: 'Infinite scroll usage',
        styles: [basicStyle],
        template: `
        <div (infiniteScroll)="onScrollHitBottom()" class="scroll-container">
            <div *ngFor="let _i of numLines; let i=index">
                Line {{i + 1}}
            </div>
        </div>
        Hit bottom for <b>{{hitBottomCount}}</b> times!
        <div class="example-source">
            <b>onScrollHitBottom declaration:</b>
            <pre>{{onScrollHitBottom}}</pre>
        </div>
        `
      },
      {
        id: 'infiniteScrollUsageWithDistance',
        showSource: true,
        title: 'Infinite scroll usage with distance',
        context: Object.assign({}, basicContext),
        styles: [basicStyle, makeBasicStyleDistance(50)],
        description: '',
        template: `
        <div (infiniteScroll)="onScrollHitBottom()" [infiniteScrollDistance]="50" class="scroll-container">
            <div *ngFor="let _i of numLines; let i=index">
                Line {{i + 1}}
            </div>
        </div>
        Hit bottom for <b>{{hitBottomCount}}</b> times!
        <div class="example-source">
            <b>onScrollHitBottom declaration:</b>
            <pre>{{onScrollHitBottom}}</pre>
        </div>
        `
    },
    {
        id: 'infiniteScrollUsageWithExpandingContent',
        title: 'Infinite scroll usage with expanding content',
        showSource: true,
        context: Object.assign({}, basicContext, {
            scrollContainerId: 'scrollContainer1',
            onScrollHitBottom: function() {
                this.hitBottomCount++;
                this.insertPageImmediately(this.pageCount + 1);
                this.pageCount++;
            }
        }),
        styles: [basicStyle, makeBasicStyleDistance(20)],
        template: `
        <div (infiniteScroll)="onScrollHitBottom()" [infiniteScrollDistance]="20" class="scroll-container" id="{{scrollContainerId}}">
            <div *ngFor="let _i of numLines; let i=index">
                Line {{i + 1}}
            </div>
        </div>
        Hit bottom for <b>{{hitBottomCount}}</b> times!<br/>
        Loaded {{pageCount}} pages!
        <div class="example-source">
            <b>onScrollHitBottom declaration:</b>
            <pre>{{onScrollHitBottom}}</pre>
        </div>
        `
    },
    {
        id: 'infiniteScrollUsageWithExpandingContentAsynchronous',
        title: 'Infinite scroll usage with expanding content asynchronous',
        showSource: true,
        context: Object.assign({}, basicContext, {
            scrollContainerId: 'scrollContainer2',
            onScrollHitBottom: function() {
                this.hitBottomCount++;
                if (!this.isPageLoading) {
                    this.isPageLoading = true;
                    this.loadPageAsync(this.pageCount + 1, 5000).then(() => {
                        this.pageCount++;
                        this.isPageLoading = false;
                    });
                }
            }
        }),
        styles: [basicStyle, makeBasicStyleDistance(20)],
        template: `
        <div (infiniteScroll)="onScrollHitBottom()" [infiniteScrollDistance]="20" class="scroll-container" id="{{scrollContainerId}}">
            <div *ngFor="let _i of numLines; let i=index">
                Line {{i + 1}}
            </div>
        </div>
        Hit bottom for <b>{{hitBottomCount}}</b> times!<br/>
        Loaded {{pageCount}} pages! <span *ngIf="isPageLoading">LOADING page #{{this.pageCount + 1}} ...</span>
        <div class="example-source">
            <b>onScrollHitBottom declaration:</b>
            <pre>{{onScrollHitBottom}}</pre>
        </div>
        `
    }
    ]);