-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathindex.tsx
131 lines (115 loc) · 3.23 KB
/
index.tsx
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
/*--------------------------------------------------------------------------
* Copyright (c) 2019-2021, Postgres.ai, Nikolay Samokhvalov nik@postgres.ai
* All Rights Reserved. Proprietary and confidential.
* Unauthorized copying of this file, via any medium is strictly prohibited
*--------------------------------------------------------------------------
*/
import React, { useState, useRef, useLayoutEffect, useEffect } from 'react'
import { makeStyles } from '@material-ui/core'
import clsx from 'clsx'
import {
createTransitionInteractive,
borderRadius,
} from '@postgres.ai/shared/styles/vars'
import { checkIsVisibleLeftCurtain, checkIsVisibleRightCurtain } from './utils'
import { Dimensions } from './types'
const useStyles = makeStyles(
(theme) => ({
root: {
position: 'relative',
overflow: 'hidden',
[theme.breakpoints.down('xs')]: {
borderRadius,
},
},
curtain: {
position: 'absolute',
top: 0,
width: '25px',
height: '100%',
pointerEvents: 'none',
transition: createTransitionInteractive('opacity'),
},
curtainLeft: {
left: 0,
background: 'linear-gradient(to right, rgba(0,0,0,0.08), transparent);',
},
curtainRight: {
right: 0,
background: 'linear-gradient(to left, rgba(0,0,0,0.08), transparent);',
},
curtainHidden: {
opacity: 0,
},
content: {
overflow: 'auto',
},
}),
{ index: 1 },
)
type Props = {
children: React.ReactNode
classes?: {
root?: string
content?: string
curtain?: string
curtainLeft?: string
curtainRight?: string
}
}
export const HorizontalScrollContainer = (props: Props) => {
const classes = useStyles()
const [dimensions, setDimensions] = useState<Dimensions | null>(null)
const contentRef = useRef<HTMLDivElement>(null)
const calcDimensions = () => {
if (!contentRef.current) {
return
}
const { offsetWidth, scrollWidth, scrollLeft } = contentRef.current
setDimensions({
offsetWidth,
scrollWidth,
scrollLeft,
})
}
// Initial calculation.
useLayoutEffect(() => {
calcDimensions()
}, [])
// Listen window resizes for the next calculations.
useEffect(() => {
window.addEventListener('resize', calcDimensions)
return () => window.removeEventListener('resize', calcDimensions)
}, [])
const isVisibleLeft = dimensions && checkIsVisibleLeftCurtain(dimensions)
const isVisibleRight = dimensions && checkIsVisibleRightCurtain(dimensions)
return (
<div className={clsx(classes.root, props.classes?.root)}>
<div
className={clsx(
classes.curtain,
classes.curtainLeft,
!isVisibleLeft && classes.curtainHidden,
props.classes?.curtain,
props.classes?.curtainLeft,
)}
/>
<div
ref={contentRef}
className={clsx(classes.content, props.classes?.content)}
onScroll={calcDimensions}
>
{props.children}
</div>
<div
className={clsx(
classes.curtain,
classes.curtainRight,
!isVisibleRight && classes.curtainHidden,
props.classes?.curtain,
props.classes?.curtainRight,
)}
/>
</div>
)
}