Skip to content

Commit

Permalink
⚡ :: 서버 이지 가져오기
Browse files Browse the repository at this point in the history
  • Loading branch information
yongbeomkwak committed Jun 16, 2024
1 parent 0173505 commit 722dbb4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ final class ListSearchResultReactor: Reactor {

extension ListSearchResultReactor {
private func updateSortType(_ type: SortType) -> Observable<Mutation> {
#warning("데이터 소스 가져오기")
return .just(.updateSortType(type))
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ final class ListResultCell: UICollectionViewCell {
private let thumbnailView: UIImageView = UIImageView().then {
$0.contentMode = .scaleAspectFill
$0.clipsToBounds = true
$0.image = DesignSystemAsset.PlayListTheme.theme10.image
$0.layer.cornerRadius = 4
}

Expand Down Expand Up @@ -92,9 +91,9 @@ extension ListResultCell {
}

public func update(_ model: SearchPlaylistEntity) {
#warning("플레이 리스트 이미지")
titleLabel.text = model.title
creatorLabel.text = model.userName
dateLabel.text = model.date
thumbnailView.kf.setImage(with:URL(string: model.image),placeholder: nil,options: [.transition(.fade(0.2))])
}
}

0 comments on commit 722dbb4

Please sign in to comment.