File tree 3 files changed +6
-10
lines changed
EATSSU/App/Sources/Presentation/Review/MainReviewView/Component
3 files changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ final class ReviewListTableViewCell: BaseTableViewCell {
22
22
23
23
// MARK: - UI Components
24
24
25
- lazy var totalRateView = StarRatingView ( )
25
+ lazy var totalRateView = StarSummaryView ( )
26
26
lazy var reactionView = ReactionView ( )
27
27
28
28
private var dateLabel : UILabel = {
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ final class ReviewSummaryView: BaseUIView {
24
24
25
25
// MARK: 좌측
26
26
27
- private var starRatingView = StarRatingView ( )
27
+ private var starSummaryView = StarSummaryView ( )
28
28
private let thumbupCountView = ThumbsCountView ( thumbType: . up)
29
29
private let thumbdownpCountView = ThumbsCountView ( thumbType: . down)
30
30
@@ -37,7 +37,7 @@ final class ReviewSummaryView: BaseUIView {
37
37
} ( )
38
38
39
39
private lazy var ratingSummaryStackView : UIStackView = {
40
- let stackView = UIStackView ( arrangedSubviews: [ starRatingView , thumbCountStackView] )
40
+ let stackView = UIStackView ( arrangedSubviews: [ starSummaryView , thumbCountStackView] )
41
41
stackView. axis = . vertical
42
42
stackView. alignment = . center
43
43
stackView. spacing = 15
@@ -131,12 +131,8 @@ final class ReviewSummaryView: BaseUIView {
131
131
make. horizontalEdges. equalToSuperview ( ) . inset ( 20 . adjusted)
132
132
make. bottom. equalToSuperview ( )
133
133
}
134
- starRatingView . snp. makeConstraints { make in
134
+ starSummaryView . snp. makeConstraints { make in
135
135
make. top. equalToSuperview ( ) . offset ( 20 . adjusted)
136
136
}
137
137
}
138
138
}
139
-
140
- extension ReviewSummaryView {
141
-
142
- }
Original file line number Diff line number Diff line change 1
1
//
2
- // StarRatingView .swift
2
+ // StarSummaryView .swift
3
3
// EatSSU-iOS
4
4
//
5
5
// Created by 박윤빈 on 2023/06/29.
@@ -10,7 +10,7 @@ import UIKit
10
10
import EATSSUDesign
11
11
import SnapKit
12
12
13
- final class StarRatingView : BaseUIView {
13
+ final class StarSummaryView : BaseUIView {
14
14
15
15
// MARK: - UI Components
16
16
You can’t perform that action at this time.
0 commit comments