-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtypes.ts
95 lines (91 loc) · 2.27 KB
/
types.ts
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
// Enumeration for axis values
export enum Axis {
/**
* The x-axis represents the horizontal direction.
*/
X = 'x',
/**
* The y-axis represents the vertical direction.
*/
Y = 'y'
}
// Enumeration for direction values
export enum Direction {
/**
* The up direction represents the scroll direction moving towards the top.
*/
Up = 'up',
/**
* The down direction represents the scroll direction moving towards the bottom.
*/
Down = 'down',
/**
* The left direction represents the scroll direction moving towards the left.
*/
Left = 'left',
/**
* The right direction represents the scroll direction moving towards the right.
*/
Right = 'right',
/**
* The still direction represents the scroll direction when the user is not scrolling.
*/
Still = 'still'
}
// Type declaration for scroll position
export type ScrollPosition = {
/**
* The top position represents the distance from the top edge of the page.
*/
top: number;
/**
* The bottom position represents the distance from the bottom edge of the page.
*/
bottom: number;
/**
* The left position represents the distance from the left edge of the page.
*/
left: number;
/**
* The right position represents the distance from the right edge of the page.
*/
right: number;
};
// Type declaration for the returned scroll information
export type ScrollInfo = {
/**
* The scrollDir represents the current scroll direction.
*/
scrollDir: Direction;
/**
* The scrollPosition represents the current scroll position.
*/
scrollPosition: ScrollPosition;
};
// Type declaration for scroll properties
export type ScrollProps = {
/**
* The target represents the scrollable element to check for scroll detection.
*/
target?: HTMLDivElement | Window;
/**
* The thr represents the threshold value for scroll detection.
*/
thr?: number;
/**
* The axis represents the scroll axis (x or y).
*/
axis?: Axis;
/**
* The scrollUp represents the scroll direction when moving up.
*/
scrollUp?: Direction;
/**
* The scrollDown represents the scroll direction when moving down.
*/
scrollDown?: Direction;
/**
* The still represents the scroll direction when the user is not scrolling.
*/
still?: Direction;
};