-
Notifications
You must be signed in to change notification settings - Fork 1
fix: 마이페이지 및 피드소소 QA 반영 #802
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
Merged
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
a0186b8
fix: 마진 값 수정
m6z1 62dc5bb
fix: 글 작성 취소 모달 사이즈 수정
m6z1 b21d74c
fix: 썸네일 내 이미지 개수 수정
m6z1 9cb9ce0
fix: 터치 영역 수정
m6z1 4d8c024
fix: 피드 별점 내 별점으로 수정
m6z1 03143e6
fix: 서재 필터 클릭 시 바텀시트 뜨지 않는 현상 해결
m6z1 512ade5
fix: 내 피드 글 찾기 필터 로직 수정
m6z1 192db5e
refactor: 피드 상세 뷰 새로고침 제거
m6z1 acd2d16
fix: 피드 상세 작품 타이틀 typography 수정
m6z1 e864ff8
fix: 내 피드 필터 모달 공개/비공개 선택 로직 수정
m6z1 17ec3b7
fix: api query name 수정
m6z1 e74f6d4
build: 불필요한 태그 제거
m6z1 416def7
fix: 추천 글 보이도록 수정
m6z1 a96fe1e
fix: 더보기 모달 내 피드 로직 수정
m6z1 867dfde
fix: 내 필터 상태 값 누락된 부분 추가
m6z1 62d0bcd
refactor: 커서 기반 피드 로딩 로직 수정
m6z1 77b91fb
fix: 피드 연결 카테고리 빠진 로직 추가
m6z1 d5da8ab
refactor: 불필요한 배킹프로퍼티 네이밍 제거
m6z1 4c1096b
fix: 내 필터 모달 첫 진입 시 모든 칩 선택되어 있도록 수정
m6z1 c141149
fix: 날짜 형식 수정
m6z1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,73 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <layout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| xmlns:app="http://schemas.android.com/apk/res-auto"> | ||
|
|
||
| <androidx.constraintlayout.widget.ConstraintLayout | ||
| android:layout_width="wrap_content" | ||
| android:layout_height="wrap_content" | ||
| android:background="@drawable/bg_novel_detail_white_radius_14dp" | ||
| android:padding="20dp"> | ||
|
|
||
| <ImageView | ||
| android:id="@+id/iv_editing_cancel_feed" | ||
| android:layout_width="46dp" | ||
| android:layout_height="46dp" | ||
| android:layout_marginHorizontal="102dp" | ||
| android:src="@drawable/ic_novel_detail_warning" | ||
| app:layout_constraintEnd_toEndOf="parent" | ||
| app:layout_constraintStart_toStartOf="parent" | ||
| app:layout_constraintTop_toTopOf="parent" /> | ||
|
|
||
| <TextView | ||
| android:id="@+id/tv_editing_cancel_feed_title" | ||
| android:layout_width="0dp" | ||
| android:layout_height="wrap_content" | ||
| android:layout_marginTop="18dp" | ||
| android:gravity="center" | ||
| android:maxLines="2" | ||
| android:text="@string/tv_remove_popup_menu_stop_creating" | ||
| android:textAlignment="center" | ||
| android:textAppearance="@style/title2" | ||
| android:textColor="@color/black" | ||
| app:layout_constraintEnd_toEndOf="parent" | ||
| app:layout_constraintStart_toStartOf="parent" | ||
| app:layout_constraintTop_toBottomOf="@id/iv_editing_cancel_feed" /> | ||
|
|
||
| <TextView | ||
| android:id="@+id/tv_editing_cancel_feed_cancel_button" | ||
| android:layout_width="wrap_content" | ||
| android:layout_height="wrap_content" | ||
| android:layout_marginTop="18dp" | ||
| android:background="@drawable/bg_novel_info_gray_50_radius_8dp" | ||
| android:gravity="center" | ||
| android:paddingHorizontal="36dp" | ||
| android:paddingVertical="10dp" | ||
| android:text="@string/novel_rating_cancel_alert_accept" | ||
| android:textAlignment="center" | ||
| android:textAppearance="@style/label1" | ||
| android:textColor="@color/gray_300_52515F" | ||
| app:layout_constraintBottom_toBottomOf="parent" | ||
| app:layout_constraintEnd_toStartOf="@+id/tv_editing_cancel_feed_alert_cancel_button" | ||
| app:layout_constraintStart_toStartOf="parent" | ||
| app:layout_constraintTop_toBottomOf="@+id/tv_editing_cancel_feed_title" /> | ||
|
|
||
| <TextView | ||
| android:id="@+id/tv_editing_cancel_feed_alert_cancel_button" | ||
| android:layout_width="wrap_content" | ||
| android:layout_height="wrap_content" | ||
| android:layout_marginStart="8dp" | ||
| android:background="@drawable/bg_novel_info_primary_100_radius_8dp" | ||
| android:gravity="center" | ||
| android:paddingHorizontal="34dp" | ||
| android:paddingVertical="10dp" | ||
| android:text="@string/novel_rating_cancel_alert_cancel" | ||
| android:textAlignment="center" | ||
| android:textAppearance="@style/label1" | ||
| android:textColor="@color/white" | ||
| app:layout_constraintBottom_toBottomOf="@+id/tv_editing_cancel_feed_cancel_button" | ||
| app:layout_constraintEnd_toEndOf="parent" | ||
| app:layout_constraintStart_toEndOf="@+id/tv_editing_cancel_feed_cancel_button" | ||
| app:layout_constraintTop_toTopOf="@+id/tv_editing_cancel_feed_cancel_button" /> | ||
|
|
||
| </androidx.constraintlayout.widget.ConstraintLayout> | ||
| </layout> | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
경고 아이콘 접근성 설정이 필요합니다.
장식용 이미지라면 스크린리더 노출을 막고, 의미가 있다면 설명을 추가하세요.
✅ 제안 수정
<ImageView android:id="@+id/iv_editing_cancel_feed" + android:contentDescription="@null" + android:importantForAccessibility="no" android:layout_width="46dp" android:layout_height="46dp"📝 Committable suggestion
🤖 Prompt for AI Agents