-
-
Notifications
You must be signed in to change notification settings - Fork 210
Expand file tree
/
Copy pathrevogr-viewport-scroll.tsx
More file actions
501 lines (470 loc) · 13.6 KB
/
Copy pathrevogr-viewport-scroll.tsx
File metadata and controls
501 lines (470 loc) · 13.6 KB
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
import {
Component,
Event,
EventEmitter,
h,
Method,
Element,
Prop,
Host,
Listen,
} from '@stencil/core';
import GridResizeService from '../revoGrid/viewport.resize.service';
import LocalScrollService, { getContentSize } from '../../services/local.scroll.service';
import { LocalScrollTimer } from '../../services/local.scroll.timer';
import {
CONTENT_SLOT,
FOOTER_SLOT,
HEADER_SLOT,
} from '../revoGrid/viewport.helpers';
import type {
DimensionCols,
DimensionType,
ElementScroll,
ScrollCoordinateEvent,
ViewPortResizeEvent,
ViewPortScrollEvent,
} from '@type';
type Delta = 'deltaX' | 'deltaY';
type LocalScrollEvent = {
preventDefault(): void;
} & { [x in Delta]: number };
/**
* Viewport scroll component for RevoGrid
* @slot - content
* @slot header - header
* @slot footer - footer
*/
@Component({
tag: 'revogr-viewport-scroll',
styleUrl: 'revogr-viewport-scroll-style.scss',
})
export class RevogrViewportScroll implements ElementScroll {
/**
* Enable row header
*/
@Prop() readonly rowHeader: boolean;
/**
* Width of inner content
*/
@Prop() contentWidth = 0;
/**
* Height of inner content
*/
@Prop() contentHeight = 0;
@Prop() colType!: DimensionCols | 'rowHeaders';
@Prop() noHorizontalScrollTransfer = false;
/**
* Before scroll event
*/
@Event({ eventName: 'scrollviewport', bubbles: true })
scrollViewport: EventEmitter<ViewPortScrollEvent>;
/**
* Viewport resize
*/
@Event({ eventName: 'resizeviewport' })
resizeViewport: EventEmitter<ViewPortResizeEvent>;
/**
* Triggered on scroll change, can be used to get information about scroll visibility
*/
@Event() scrollchange: EventEmitter<{
type: DimensionType;
hasScroll: boolean;
}>;
/**
* Silently scroll to coordinate
* Made to align negative coordinates for mobile devices
*/
@Event({ eventName: 'scrollviewportsilent' })
silentScroll: EventEmitter<ViewPortScrollEvent>;
@Element() horizontalScroll: HTMLElement;
private verticalScroll?: HTMLElement;
private header?: HTMLElement;
private footer?: HTMLElement;
/**
* Static functions to bind wheel change
*/
private horizontalMouseWheel: (e: Partial<LocalScrollEvent>) => void;
private verticalMouseWheel: (e: Partial<LocalScrollEvent>) => void;
private resizeService?: GridResizeService;
private localScrollService: LocalScrollService;
private localScrollTimer: LocalScrollTimer;
@Method() async setScroll(e: ViewPortScrollEvent) {
this.localScrollTimer.latestScrollUpdate(e.dimension);
this.localScrollService?.setScroll(e);
}
/**
* update on delta in case we don't know existing position or external change
* @param e
*/
@Method() async changeScroll(e: ViewPortScrollEvent, silent = false) {
if (silent) {
if (e.coordinate && this.verticalScroll) {
switch (e.dimension) {
// for mobile devices to skip negative scroll loop. only on vertical scroll
case 'rgRow':
this.verticalScroll.style.transform = `translateY(${-1 * e.coordinate}px)`;
break;
}
}
return;
}
if (e.delta) {
let currentPhysicalCoordinate = 0;
switch (e.dimension) {
case 'rgCol':
currentPhysicalCoordinate = this.horizontalScroll.scrollLeft;
break;
case 'rgRow':
currentPhysicalCoordinate = this.verticalScroll?.scrollTop ?? 0;
break;
}
return this.localScrollService?.setScrollByDelta(
e,
currentPhysicalCoordinate,
) ?? e;
}
return e;
}
/**
* Dispatch this event to trigger vertical mouse wheel from plugins
*/
@Listen('mousewheel-vertical') mousewheelVertical({
detail: e,
}: CustomEvent<LocalScrollEvent>) {
this.verticalMouseWheel(e);
}
/**
* Dispatch this event to trigger horizontal mouse wheel from plugins
*/
@Listen('mousewheel-horizontal') mousewheelHorizontal({
detail: e,
}: CustomEvent<LocalScrollEvent>) {
this.horizontalMouseWheel(e);
}
/**
* Allows to use outside listener
*/
@Listen('scroll-coordinate') scrollApply({
detail: { type, coordinate },
}: CustomEvent<ScrollCoordinateEvent>) {
this.applyOnScroll(type, coordinate, true);
}
connectedCallback() {
/**
* Bind scroll functions for farther usage
*/
// allow mousewheel for all devices including mobile
this.verticalMouseWheel = this.onVerticalMouseWheel.bind(
this,
'rgRow',
'deltaY',
);
this.horizontalMouseWheel = this.onHorizontalMouseWheel.bind(
this,
'rgCol',
'deltaX',
);
this.localScrollTimer = new LocalScrollTimer(
'ontouchstart' in document.documentElement ? 0 : 10,
);
/**
* Create local scroll service
*/
this.localScrollService = new LocalScrollService({
// to improve safari smoothnes on scroll
// skipAnimationFrame: isSafariDesktop(),
runScroll: e => this.scrollViewport.emit(e),
applyScroll: e => {
this.localScrollTimer.setCoordinate(e);
switch (e.dimension) {
case 'rgCol':
// this will trigger on scroll event
this.horizontalScroll.scrollLeft = e.coordinate;
break;
case 'rgRow':
if (this.verticalScroll) {
// this will trigger on scroll event
this.verticalScroll.scrollTop = e.coordinate;
// for mobile devices to skip negative scroll loop. only on vertical scroll
if (this.verticalScroll.style.transform) {
this.verticalScroll.style.transform = '';
}
}
break;
}
},
});
}
componentDidLoad() {
// track viewport resize
this.resizeService = new GridResizeService(
this.horizontalScroll,
(entry) => {
const els: Partial<
Record<
DimensionType,
{
size: number;
contentSize: number;
scroll: number;
noScroll: boolean;
}
>
> = {};
let calculatedHeight = entry.height || 0;
if (calculatedHeight) {
calculatedHeight -=
(this.header?.clientHeight ?? 0) +
(this.footer?.clientHeight ?? 0);
}
els.rgRow = {
size: calculatedHeight,
contentSize: this.contentHeight,
scroll: this.verticalScroll?.scrollTop ?? 0,
noScroll: false,
};
const calculatedWidth = entry.width || 0;
els.rgCol = {
size: calculatedWidth,
contentSize: this.contentWidth,
scroll: this.horizontalScroll.scrollLeft,
noScroll: this.colType !== 'rgCol',
};
// Process changes in order: width first, then height
const dimensions: DimensionType[] = ['rgCol', 'rgRow'];
for (const dimension of dimensions) {
const item = els[dimension];
if (!item) continue;
this.resizeViewport.emit({
dimension,
size: item.size,
rowHeader: this.rowHeader,
});
if (item.noScroll) {
continue;
}
this.localScrollService?.scroll(item.scroll ?? 0, dimension, true);
// track scroll visibility on outer element change
this.setScrollVisibility(dimension, item.size, item.contentSize);
}
},
[this.footer, this.header],
);
}
/**
* Check if scroll present or not per type
* Trigger this method on inner content size change or on outer element size change
* If inner content bigger then outer size then scroll is present and mousewheel binding required
* @param type - dimension type 'rgRow/y' or 'rgCol/x'
* @param size - outer content size
* @param innerContentSize - inner content size
*/
setScrollVisibility(
type: DimensionType,
size: number,
innerContentSize: number,
) {
// test if scroll present
const hasScroll = size < innerContentSize;
let el: HTMLElement | undefined;
// event reference for binding
switch (type) {
case 'rgCol':
el = this.horizontalScroll;
break;
case 'rgRow':
el = this.verticalScroll;
break;
}
// based on scroll visibility assign or remove class and event
if (hasScroll) {
el?.classList.add(`scroll-${type}`);
} else {
el?.classList.remove(`scroll-${type}`);
}
this.scrollchange.emit({ type, hasScroll });
}
disconnectedCallback() {
this.resizeService?.destroy();
}
async componentDidRender() {
this.localScrollService.setParams(
{
contentSize: this.contentHeight,
clientSize: this.verticalScroll?.clientHeight ?? 0,
virtualSize: 0,
},
'rgRow',
);
this.localScrollService.setParams(
{
contentSize: this.contentWidth,
clientSize: this.horizontalScroll.clientWidth,
virtualSize: 0,
},
'rgCol',
);
this.setScrollVisibility(
'rgRow',
this.verticalScroll?.clientHeight ?? 0,
this.contentHeight,
);
this.setScrollVisibility(
'rgCol',
this.horizontalScroll.clientWidth,
this.contentWidth,
);
}
render() {
const physicalContentHeight = getContentSize(
this.contentHeight,
this.verticalScroll?.clientHeight ?? 0,
);
const physicalContentWidth = getContentSize(this.contentWidth, 0);
return (
<Host
onWheel={this.horizontalMouseWheel}
onScroll={(e: UIEvent) => this.applyScroll('rgCol', e)}
>
<div
class="inner-content-table"
style={{ width: `${physicalContentWidth}px` }}
>
<div class="header-wrapper" ref={e => (this.header = e)}>
<slot name={HEADER_SLOT} />
</div>
<div
class="vertical-inner"
ref={el => (this.verticalScroll = el)}
onWheel={this.verticalMouseWheel}
onScroll={(e: MouseEvent) => this.applyScroll('rgRow', e)}
>
<div
class="content-wrapper"
style={{ height: `${physicalContentHeight}px` }}
>
<slot name={CONTENT_SLOT} />
</div>
</div>
<div class="footer-wrapper" ref={e => (this.footer = e)}>
<slot name={FOOTER_SLOT} />
</div>
</div>
</Host>
);
}
/**
* Extra layer for scroll event monitoring, where MouseWheel event is not passing
* We need to trigger scroll event in case there is no mousewheel event
*/
@Method() async applyScroll(type: DimensionType, e: UIEvent) {
if (!(e.target instanceof HTMLElement)) {
return;
}
let scroll = 0;
switch (type) {
case 'rgCol':
scroll = e.target.scrollLeft;
break;
case 'rgRow':
scroll = e.target.scrollTop;
break;
}
// for mobile devices to skip negative scroll loop
if (scroll < 0) {
this.silentScroll.emit({ dimension: type, coordinate: scroll });
return;
}
this.applyOnScroll(type, scroll);
}
/**
* Applies change on scroll event only if mousewheel event happened some time ago
*/
private applyOnScroll(
type: DimensionType,
coordinate: number,
outside = false,
) {
const lastScrollUpdate = () => {
this.localScrollService?.scroll(
coordinate,
type,
undefined,
undefined,
outside,
);
};
// apply after throttling
if (this.localScrollTimer.isReady(type, coordinate)) {
lastScrollUpdate();
} else {
this.localScrollTimer.throttleLastScrollUpdate(type, coordinate, () => lastScrollUpdate());
}
}
/**
* On vertical mousewheel event
* @param type
* @param delta
* @param e
*/
private onVerticalMouseWheel(
type: DimensionType,
delta: Delta,
e: LocalScrollEvent,
) {
const scrollTop = this.verticalScroll?.scrollTop ?? 0;
const clientHeight = this.verticalScroll?.clientHeight ?? 0;
const scrollHeight = this.verticalScroll?.scrollHeight ?? 0;
// Detect if the user has reached the bottom
const atBottom = scrollTop + clientHeight >= scrollHeight && e.deltaY > 0;
const atTop = scrollTop === 0 && e.deltaY < 0;
if (!atBottom && !atTop) {
e.preventDefault?.();
}
const pos = scrollTop + e[delta];
this.localScrollService?.scroll(pos, type, undefined, e[delta]);
this.localScrollTimer.latestScrollUpdate(type);
}
/**
* On horizontal mousewheel event
* @param type
* @param delta
* @param e
*/
private onHorizontalMouseWheel(
type: DimensionType,
delta: Delta,
e: LocalScrollEvent,
) {
if (!e.deltaX) {
return;
}
const { scrollLeft, scrollWidth, clientWidth } = this.horizontalScroll;
// Detect if the user has reached the right end
const atRight = scrollLeft + clientWidth >= scrollWidth && e.deltaX > 0;
// Detect if the user has reached the left end
const atLeft = scrollLeft === 0 && e.deltaX < 0;
if (this.noHorizontalScrollTransfer) {
if (!atRight && !atLeft) {
const nextScrollLeft = scrollLeft + e[delta];
e.preventDefault?.();
this.horizontalScroll.scrollLeft = nextScrollLeft;
this.localScrollService?.scroll(
this.horizontalScroll.scrollLeft,
type,
undefined,
e[delta],
);
this.localScrollTimer.latestScrollUpdate(type);
}
return;
}
if (!atRight && !atLeft) {
e.preventDefault?.();
}
const pos = scrollLeft + e[delta];
this.localScrollService?.scroll(pos, type, undefined, e[delta]);
this.localScrollTimer.latestScrollUpdate(type);
}
}