Skip to content

[#258]만든 사람들 페이지 수정 #277

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open

[#258]만든 사람들 페이지 수정 #277

wants to merge 2 commits into from

Conversation

Funital
Copy link
Collaborator

@Funital Funital commented May 12, 2025

#️⃣ 관련 이슈

Resolved #258

💡작업 내용

이번 PR에서 작업한 내용을 간략히 설명해주세요(이미지 첨부 가능)

스크린샷 2025-03-03 오후 7 43 48
  • 스크롤 기능 추가
  • 만든 사람들 이미지 변경
  • 화면 그라데이션 적용

💬리뷰 요구사항(선택)

리뷰어가 특별히 봐주었으면 하는 부분이 있다면 작성해주세요

ex) 메서드 XXX의 이름을 더 잘 짓고 싶은데 혹시 좋은 명칭이 있을까요?

- 만든 사람들 이미지 변경
- 그라데이션 설정

#258
@Funital Funital requested review from jayn2u, CJiu01 and Hrepay May 12, 2025 06:21
@Funital Funital self-assigned this May 12, 2025
Copy link
Collaborator

@CJiu01 CJiu01 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

수고하셨습니다. 리뷰 달아놓았는데 읽어보시고 답변주세요~!

Comment on lines 32 to 33
make.width.equalTo(276)
make.height.equalTo(1770)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

해당 코드는 setLayout() 함수 내에 있는 것이 더 적절해보입니다!

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

넵 수정하겠습니다!

Comment on lines 58 to 66
scrollView.snp.makeConstraints { make in
make.edges.equalToSuperview() // 화면 전체에 ScrollView
}

contentView.snp.makeConstraints { make in
make.edges.equalTo(scrollView) // ScrollView 내부에 맞춤
make.width.equalToSuperview() // 가로 크기는 화면 크기와 동일
make.bottom.equalTo(creatorsImageView.snp.bottom).offset(52) // 높이 지정
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

해당 부분에 대한 주석은 없어도 될 것 같은데 어떻게 생각하시나요? @Hrepay

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

저도 이 정도 설명의 주석은 불필요해 보입니다!

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

개선사항이니까, 꼭 PR 승인하실 필요없어요!
제가 다른 프로젝트를 하면서 요즘 들어 느꼈는데, 사소한 것이어도 결국 병합하게 되니까 바로바로 개선사항을 반영해야겠더라구요.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

불필요한 주석 모두 제거하겠습니다!

@@ -31,9 +31,9 @@ class CreatorViewController: BaseViewController {

override func setLayout() {
creatorsView.snp.makeConstraints { make in
make.top.equalToSuperview().inset(103)
make.top.equalToSuperview().inset(66)
make.leading.trailing.equalToSuperview().inset(24)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이렇게도 사용할 수 있어요!

Suggested change
make.leading.trailing.equalToSuperview().inset(24)
make.horizontalEdges.equalToSuperview().inset(24)

Comment on lines +61 to +62
UIColor(red: 184/255, green: 228/255, blue: 255/255, alpha: 1.0).cgColor,
UIColor(red: 199/255, green: 255/255, blue: 227/255, alpha: 1.0).cgColor
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

일회성으로 사용하는 컬러는 해당 파일에서 선언하여 사용하는 것이 좋을까요? 아님 디자인 시스템에 포함시키는 것이 좋을까요? @Hrepay

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

피그마 보니까 배경 그라데이션에 대한 색인 것 같은데, 이 페이지는 앞으로도 쭉 가져갈 것 같아서 저는 포함시키는 것도 좋은 방법인 것 같습니다.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

그럼 일회성 컬러여도 디자인 시스템에 추가하는 방향으로 통일합시다.

@@ -1,7 +1,7 @@
{
"images" : [
{
"filename" : "Creators.png",
"filename" : "Creators3.png",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

기존에 사용하고 있던 Creator파일과 중복되어 해당 파일명을 사용하신 것 같은데, 기존에 있던 이미지파일 삭제하셔도 됩니다!

Copy link
Member

@jayn2u jayn2u left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

불필요한 주석은 제거해서 다시 개선해주셨으면 합니다! 작업하신 건 너무 고생많았어요!

@jayn2u jayn2u moved this to In Progress in 2025년 1학기 May 12, 2025
- 리뷰 수정사항 변경

#258
Copy link
Collaborator Author

@Funital Funital left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

일회성 컬러 관련 리뷰 제외 모든 수정사항 반영했습니다!

Copy link
Collaborator

@CJiu01 CJiu01 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

수고하셨습니다!

Comment on lines +18 to 32
let scrollView: UIScrollView = UIScrollView().then {
$0.showsVerticalScrollIndicator = false
$0.contentInsetAdjustmentBehavior = .never
}

let contentView: UIView = UIView().then {
$0.backgroundColor = .clear
}

private let creatorsImageView: UIImageView = {
let imageView = UIImageView()
imageView.image = EATSSUDesignAsset.Images.creators.image
imageView.contentMode = .scaleAspectFit
imageView.snp.makeConstraints { make in
make.width.equalTo(342)
make.height.equalTo(689)
}
return imageView
}()
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

같은 파일 내에서 then 사용여부가 통일되었으면 합니다!.!
이번 기회에 프로젝트 내에서 then 사용여부를 통일하여도 좋을 것 같아요.
@Funital @Hrepay 의견 남겨주세요~!

Comment on lines +61 to +62
UIColor(red: 184/255, green: 228/255, blue: 255/255, alpha: 1.0).cgColor,
UIColor(red: 199/255, green: 255/255, blue: 227/255, alpha: 1.0).cgColor
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

피그마 보니까 배경 그라데이션에 대한 색인 것 같은데, 이 페이지는 앞으로도 쭉 가져갈 것 같아서 저는 포함시키는 것도 좋은 방법인 것 같습니다.

@CJiu01 CJiu01 mentioned this pull request May 15, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: In Progress
Development

Successfully merging this pull request may close these issues.

[Feat] [MyPage] 만든 사람들 페이지 수정
4 participants