-
Notifications
You must be signed in to change notification settings - Fork 4.1k
/
Copy pathSidebar.js
207 lines (170 loc) · 4.92 KB
/
Sidebar.js
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
import { EventListener, documentRef } from '@fluentui/react-component-event-listener'
import cx from 'clsx'
import _ from 'lodash'
import PropTypes from 'prop-types'
import * as React from 'react'
import {
childrenUtils,
customPropTypes,
doesNodeContainClick,
getUnhandledProps,
getComponentType,
isRefObject,
getKeyOnly,
useIsomorphicLayoutEffect,
useEventCallback,
useForceUpdate,
useMergedRefs,
usePrevious,
} from '../../lib'
import SidebarPushable from './SidebarPushable'
import SidebarPusher from './SidebarPusher'
/**
* We use `animationTick` to understand when an animation should be scheduled.
*
* @param {Boolean} visible
*/
function useAnimationTick(visible) {
const previousVisible = usePrevious(visible)
const tickIncrement = !!visible === !!previousVisible ? 0 : 1
const animationTick = React.useRef(0)
const forceUpdate = useForceUpdate()
const currentTick = animationTick.current + tickIncrement
const resetAnimationTick = React.useCallback(() => {
animationTick.current = 0
forceUpdate()
}, [])
React.useEffect(() => {
animationTick.current = currentTick
})
return [currentTick, resetAnimationTick]
}
/**
* A sidebar hides additional content beside a page.
*/
const Sidebar = React.forwardRef((props, ref) => {
const {
animation,
className,
children,
content,
direction = 'left',
target = documentRef,
visible = false,
width,
} = props
const [animationTick, resetAnimationTick] = useAnimationTick(visible)
const elementRef = useMergedRefs(ref, React.useRef())
const animationTimer = React.useRef()
const skipNextCallback = React.useRef()
const handleAnimationEnd = useEventCallback(() => {
const callback = visible ? 'onShow' : 'onHidden'
resetAnimationTick()
_.invoke(props, callback, null, props)
})
const handleAnimationStart = useEventCallback(() => {
const callback = visible ? 'onVisible' : 'onHide'
clearTimeout(animationTimer.current)
animationTimer.current = setTimeout(handleAnimationEnd, Sidebar.animationDuration)
if (skipNextCallback.current) {
skipNextCallback.current = false
return
}
_.invoke(props, callback, null, props)
})
const handleDocumentClick = (e) => {
if (!doesNodeContainClick(elementRef.current, e)) {
skipNextCallback.current = true
_.invoke(props, 'onHide', e, { ...props, visible: false })
}
}
useIsomorphicLayoutEffect(() => {
handleAnimationStart()
}, [animationTick])
React.useEffect(() => {
return () => {
clearTimeout(animationTimer.current)
}
}, [])
const classes = cx(
'ui',
animation,
direction,
width,
getKeyOnly(animationTick > 0, 'animating'),
getKeyOnly(visible, 'visible'),
'sidebar',
className,
)
const rest = getUnhandledProps(Sidebar, props)
const ElementType = getComponentType(props)
const targetProp = isRefObject(target) ? { targetRef: target } : { target }
return (
<>
<ElementType {...rest} className={classes} ref={elementRef}>
{childrenUtils.isNil(children) ? content : children}
</ElementType>
{visible && <EventListener listener={handleDocumentClick} type='click' {...targetProp} />}
</>
)
})
Sidebar.displayName = 'Sidebar'
Sidebar.propTypes = {
/** An element type to render as (string or function). */
as: PropTypes.elementType,
/** Animation style. */
animation: PropTypes.oneOf([
'overlay',
'push',
'scale down',
'uncover',
'slide out',
'slide along',
]),
/** Primary content. */
children: PropTypes.node,
/** Additional classes. */
className: PropTypes.string,
/** Shorthand for primary content. */
content: customPropTypes.contentShorthand,
/** Direction the sidebar should appear on. */
direction: PropTypes.oneOf(['top', 'right', 'bottom', 'left']),
/**
* Called before a sidebar begins to animate out.
*
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {object} data - All props.
*/
onHide: PropTypes.func,
/**
* Called after a sidebar has finished animating out.
*
* @param {null}
* @param {object} data - All props.
*/
onHidden: PropTypes.func,
/**
* Called when a sidebar has finished animating in.
*
* @param {null}
* @param {object} data - All props.
*/
onShow: PropTypes.func,
/**
* Called when a sidebar begins animating in.
*
* @param {null}
* @param {object} data - All props.
*/
onVisible: PropTypes.func,
/** A sidebar can handle clicks on the passed element. */
target: PropTypes.oneOfType([customPropTypes.domNode, customPropTypes.refObject]),
/** Controls whether or not the sidebar is visible on the page. */
visible: PropTypes.bool,
/** Sidebar width. */
width: PropTypes.oneOf(['very thin', 'thin', 'wide', 'very wide']),
}
Sidebar.animationDuration = 500
Sidebar.Pushable = SidebarPushable
Sidebar.Pusher = SidebarPusher
export default Sidebar