-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathImageSliderNavigation.tsx
44 lines (38 loc) · 1.39 KB
/
ImageSliderNavigation.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
import React from 'react';
import styles from './ImageSliderStyle';
import ImageNavArrowBold from './images/arrow-bold.svg';
import ImageNavArrowNormal from './images/arrow-normal.svg';
export enum ImageSliderNavStyle {
NORMAL = 1,
BOLD = 2
}
export enum ImageSliderNavDirection {
LEFT = 'left',
RIGHT = 'right'
}
type ImageSliderNavigationProps = {
type: ImageSliderNavStyle;
size: number;
margin: number;
direction: ImageSliderNavDirection;
visible: boolean;
onClickNav: (direction: ImageSliderNavDirection) => (event: React.SyntheticEvent<HTMLButtonElement>) => void;
};
const altNavArrowLeft = 'slide to left';
const altNavArrowRight = 'slide to right';
const ImageSliderNavigation: React.FC<ImageSliderNavigationProps> = (props: ImageSliderNavigationProps) => {
return (
<>
{props.visible && (
<button type="button" style={styles.getNavStyle(props.direction, props.size, props.margin)} onClick={props.onClickNav(props.direction)}>
<img
src={props.type === ImageSliderNavStyle.NORMAL ? ImageNavArrowNormal : ImageNavArrowBold}
style={{ width: '100%', ...(props.direction === ImageSliderNavDirection.RIGHT && { transform: 'rotate(180deg)' }) }}
alt={props.direction === ImageSliderNavDirection.LEFT ? altNavArrowLeft : altNavArrowRight}
/>
</button>
)}
</>
);
};
export default ImageSliderNavigation;