forked from jossmac/react-images
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCarousel.js
400 lines (361 loc) Β· 11.1 KB
/
Carousel.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
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
// @flow
// @jsx glam
import React, { Component, type ElementRef } from 'react';
import { findDOMNode } from 'react-dom';
import glam from 'glam';
import rafScheduler from 'raf-schd';
import { ViewPager, Frame, Track, View as PageView } from 'react-view-pager';
const viewPagerStyles = { flex: '1 1 auto', position: 'relative' };
const frameStyles = { outline: 0 };
import {
defaultCarouselComponents,
type CarouselComponents,
} from './defaultComponents';
import { defaultCarouselStyles, type CarouselStylesConfig } from '../styles';
import { type ModalProps } from './Modal/Modal';
import { className, isTouch } from '../utils';
import formatters from '../formatters';
import { type ViewsType } from '../types';
type SpringConfig = { [key: string]: number };
export type fn = any => void;
export type IndicesType = Array<number>;
export type CarouselProps = {
/* Replace any of the carousel components */
components?: CarouselComponents,
/* Take control of the component's view index state */
currentIndex: number,
// See https://github.com/souporserious/react-view-pager#frame-props
frameProps: {
accessibility: boolean,
autoSize: true | false | 'width' | 'height',
springConfig: SpringConfig,
tag: any,
},
/* Formatters get called when language is used, defaults use english. */
formatters: typeof formatters,
/* Duration, in milliseconds, to wait before hiding controls when the user is idle */
hideControlsWhenIdle?: number | false,
/* When envoked within a modal, props are cloned from the modal */
modalProps?: ModalProps,
/* Style modifier methods */
styles: CarouselStylesConfig,
// See https://github.com/souporserious/react-view-pager#track-props
trackProps: {
align: number,
animations: Array<{ props: string, stops: Array<[number, number]> }>,
axis: 'x' | 'y',
contain: boolean,
currentView: any,
flickTimeout: number,
infinite: boolean,
instant: boolean,
onRest: fn,
onScroll: fn,
onSwipeEnd: fn,
onSwipeMove: fn,
onSwipeStart: fn,
onViewChange: number => void,
springConfig: SpringConfig,
swipe: true | false | 'mouse' | 'touch',
swipeThreshold: number,
tag: any,
viewsToMove: number,
viewsToShow: number | 'auto',
},
/* The items to render in the carousel */
views: ViewsType,
};
export type CarouselState = {
currentIndex: number,
interactionIsIdle: boolean,
};
const defaultProps = {
currentIndex: 0,
formatters,
hideControlsWhenIdle: 3000,
styles: {},
trackProps: {
instant: !isTouch(),
swipe: 'touch',
},
};
class Carousel extends Component<CarouselProps, CarouselState> {
commonProps: any; // TODO
components: CarouselComponents;
container: HTMLElement;
footer: HTMLElement;
frame: ElementRef<Frame>;
header: HTMLElement;
mounted: boolean = false;
track: ElementRef<Track>;
timer: number;
static defaultProps = defaultProps;
constructor(props: CarouselProps) {
super(props);
this.cacheComponents(props.components);
this.state = {
currentIndex: props.currentIndex,
interactionIsIdle: isTouch(),
};
}
componentDidMount() {
const { hideControlsWhenIdle, modalProps } = this.props;
const isModal = Boolean(modalProps);
this.mounted = true;
if (hideControlsWhenIdle && this.container) {
this.container.addEventListener('mousedown', this.handleMouseActivity);
this.container.addEventListener('mousemove', this.handleMouseActivity);
this.container.addEventListener('touchmove', this.handleMouseActivity);
}
if (isModal) {
this.focusViewFrame();
}
}
componentWillReceiveProps(nextProps: CarouselProps) {
if (nextProps.components !== this.props.components) {
this.cacheComponents(nextProps.components);
}
if (this.props.currentIndex !== nextProps.currentIndex) {
this.setState({ currentIndex: nextProps.currentIndex });
}
}
componentWillUnmount() {
this.mounted = false;
if (this.props.hideControlsWhenIdle && this.container) {
this.container.removeEventListener('mousedown', this.handleMouseActivity);
this.container.removeEventListener('mousemove', this.handleMouseActivity);
this.container.removeEventListener('touchmove', this.handleMouseActivity);
this.handleMouseActivity.cancel();
}
}
cacheComponents = (comps?: CarouselComponents) => {
this.components = defaultCarouselComponents(comps);
};
// ==============================
// Refs
// ==============================
getContainer = (ref: HTMLElement) => {
this.container = ref;
};
getFooter = (ref: HTMLElement) => {
this.footer = ref;
};
getFrame = (ref: Frame) => {
this.frame = findDOMNode(ref);
};
getHeader = (ref: HTMLElement) => {
this.header = ref;
};
getTrack = (ref: Track) => {
this.track = ref;
};
// ==============================
// Utilities
// ==============================
hasPreviousView = (): boolean => {
const { trackProps } = this.props;
const { currentIndex } = this.state;
return trackProps.infinite || currentIndex !== 0;
};
hasNextView = (): boolean => {
const { trackProps, views } = this.props;
const { currentIndex } = this.state;
return trackProps.infinite || currentIndex !== views.length - 1;
};
getStyles = (key: string, props: {}): {} => {
const base = defaultCarouselStyles[key](props);
base.boxSizing = 'border-box';
const custom = this.props.styles[key];
return custom ? custom(base, props) : base;
};
// combine defaultProps with consumer props to maintain expected behaviour
getTrackProps = (props: CarouselProps) => {
return { ...defaultProps.trackProps, ...props.trackProps };
};
// combine defaultProps with consumer props to maintain expected behaviour
getFormatters = () => {
return { ...defaultProps.formatters, ...this.props.formatters };
};
getViewData = () => {
const { views } = this.props;
const { currentIndex } = this.state;
return views[currentIndex];
};
focusViewFrame = () => {
if (this.frame && document.activeElement !== this.frame) {
this.frame.focus();
}
};
prev = () => {
this.track.prev();
this.focusViewFrame();
};
next = () => {
this.track.next();
this.focusViewFrame();
};
// ==============================
// Handlers
// ==============================
handleMouseActivity = rafScheduler(() => {
clearTimeout(this.timer);
if (this.state.interactionIsIdle) {
this.setState({ interactionIsIdle: false });
}
this.timer = setTimeout(() => {
if (this.mounted) {
this.setState({ interactionIsIdle: true });
}
}, this.props.hideControlsWhenIdle);
});
handleViewChange = (indicies: IndicesType) => {
const { trackProps } = this.props;
// simplify by enforcing number
const currentIndex = indicies[0];
this.setState({ currentIndex });
// call the consumer's onViewChange fn
if (trackProps && trackProps.onViewChange) {
trackProps.onViewChange(currentIndex);
}
};
// ==============================
// Renderers
// ==============================
renderNavigation = () => {
const {
getNextLabel,
getPrevLabel,
getNextTitle,
getPrevTitle,
} = this.getFormatters();
const { Navigation, NavigationPrev, NavigationNext } = this.components;
const { commonProps } = this;
const showPrev = this.hasPreviousView();
const showNext = this.hasNextView();
const showNav = (showPrev || showNext) && Navigation;
return showNav ? (
<Navigation {...commonProps}>
{showPrev && (
<NavigationPrev
{...commonProps}
align="left"
innerProps={{
'aria-label': getPrevLabel(commonProps),
onClick: this.prev,
title: getPrevTitle(commonProps),
}}
/>
)}
{showNext && (
<NavigationNext
{...commonProps}
align="right"
innerProps={{
'aria-label': getNextLabel(commonProps),
onClick: this.next,
title: getNextTitle(commonProps),
}}
/>
)}
</Navigation>
) : null;
};
renderFooter = () => {
const { Footer, FooterCaption, FooterCount } = this.components;
const { commonProps } = this;
return Footer ? (
<Footer
{...commonProps}
components={{
Caption: FooterCaption,
Count: FooterCount,
}}
innerProps={{ innerRef: this.getFooter }}
/>
) : null;
};
renderHeader = () => {
const { Header, HeaderClose, HeaderFullscreen } = this.components;
const { getCloseLabel, getFullscreenLabel } = this.getFormatters();
const { commonProps } = this;
return Header ? (
<Header
{...commonProps}
getCloseLabel={getCloseLabel}
getFullscreenLabel={getFullscreenLabel}
components={{
CloseButton: HeaderClose,
FullscreenButton: HeaderFullscreen,
}}
data={this.getViewData()}
innerProps={{ innerRef: this.getHeader }}
/>
) : null;
};
getCommonProps() {
const { frameProps, trackProps, modalProps, views } = this.props;
const isModal = Boolean(modalProps);
const isFullscreen = Boolean(modalProps && modalProps.isFullscreen);
const { currentIndex, interactionIsIdle } = this.state;
const currentView = this.getViewData();
return {
carouselProps: this.props,
currentIndex,
currentView,
formatters: this.props.formatters,
frameProps,
getStyles: this.getStyles,
isFullscreen,
isModal,
modalProps,
interactionIsIdle,
trackProps,
views,
};
}
render() {
const { Container, View } = this.components;
const { currentIndex } = this.state;
const { frameProps, views } = this.props;
const commonProps = (this.commonProps = this.getCommonProps());
return (
<Container {...commonProps} innerProps={{ innerRef: this.getContainer }}>
{this.renderHeader()}
<ViewPager
tag="main"
style={viewPagerStyles}
className={className('pager')}
>
<Frame
{...frameProps}
ref={this.getFrame}
className={className('frame')}
style={frameStyles}
>
<Track
{...this.getTrackProps(this.props)}
style={{ display: 'flex', alignItems: 'center' }}
currentView={currentIndex}
className={className('track')}
onViewChange={this.handleViewChange}
ref={this.getTrack}
>
{views &&
views.map((data, index) => {
return (
<PageView className={className('view-wrapper')} key={index}>
<View {...commonProps} data={data} index={index} />
</PageView>
);
})}
</Track>
</Frame>
{this.renderNavigation()}
</ViewPager>
{this.renderFooter()}
</Container>
);
}
}
export default Carousel;
export type CarouselType = typeof Carousel;