-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive.js
139 lines (130 loc) · 3.95 KB
/
archive.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
import React from 'react';
import {
Button,
Div,
Icon,
Text,
} from 'atomize';
import reviews from '../src/data/reviews';
export class ReviewContainerList extends React.Component {
constructor(props) {
super(props);
this.containerListRef = React.createRef();
this.state = {
containerWidth: null,
containerHeight: null,
}
}
componentDidMount () {
window.addEventListener('resize', this.onResize);
this.onResize();
}
componentWillUnmount () {
window.removeEventListener('resize', this.onResize);
}
onResize = () => {
this.setState({
carouselWidth: this.containerListRef.current.parentNode.clientWidth,
containerHeight: this.containerListRef.current.clientHeight,
});
}
render () {
const { itemIndex, reviews } = this.props;
const { carouselWidth, containerHeight } = this.state;
const slicedReviews = reviews.slice(0, reviews.length);
return (
<Div
ref={this.containerListRef}
d="flex"
bg="white"
id="review-containers"
style={{ whiteSpace: 'nowrap' }}
transform={{
xs: `translateX(${-itemIndex * carouselWidth / 2}px)`,
lg: `translateX(${-itemIndex * carouselWidth / 4}px)`,
}}
w={carouselWidth * slicedReviews.length + 'px'}
transition="all 0.5s ease-in-out"
>
{
slicedReviews.map((review, index) => (
<Div
key={index}
d="inline-flex"
w={{
xs: carouselWidth / 2 + 'px',
lg: carouselWidth / 4 + 'px',
}}
className="container"
style={{
whiteSpace: 'pre-line',
}}
>
<Div
d="flex"
flexDir="column"
justify="space-between"
className="review-wrapper"
p="1.5rem"
>
<Div
d="flex" flexDir="column"
w="100%" align="center"
p={{ b: '1.5rem' }}
className="review-text-content"
>
<Div
d="flex"
flexDir="row"
justify="center"
>
<Icon name="StarSolid" color="warning500" />
<Icon name="StarSolid" color="warning500" />
<Icon name="StarSolid" color="warning500" />
<Icon name="StarSolid" color="warning500" />
<Icon name="StarSolid" color="warning500" />
</Div>
<Text
tag="h3" textSize="title"
p={{ t: '1rem' , b: '0.5rem' }}
>
{review.title}
</Text>
<Div className="review-text-container">
<Text
tag="p" textSize="subheader"
textAlign="center"
style={{ lineHeight: '1.5rem' }}
w="100%"
>
"{review.text}"
</Text>
</Div>
</Div>
<Div
d="flex"
flexDir="row"
align="center"
justify="center"
bg="white"
className="review-reviewer-name"
textAlign="center"
border={{ t: '1px solid '}}
borderColor="gray400"
p={{ t: '0.5rem' }}
>
<Text tag="p" textSize="subheader">
{review.reviewer}
</Text>
<Text tag="p" textSize="body" p={{ l: '0.5rem' }}>
Verified Buyer
</Text>
</Div>
</Div>
</Div>
))
}
</Div>
);
}
}