-
Notifications
You must be signed in to change notification settings - Fork 6
Refactor: 즐겨찾기 페이지 리팩토링 #116
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 6 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
af3643a
Design: 즐겨찾기 style 수정 및 마이링크로 돌아가기 추가
99minji e97b315
Fix: useViewport debounce 라이브러리 적용
99minji 815968a
Fix: 페이지네이션 pageSize 변경
99minji 713b8ad
Merge branch 'develop' of https://github.com/codeit9-temporary/linkbr…
99minji 251561d
Fix: 토큰없을 때 로그인페이지로 리다이렉트 적용
99minji 5d13545
Fix: 불필요 주석 삭제 및 배포 url 변경
99minji d9ed780
Chore: conflict 해결
99minji e137f65
Fix: tb만 6개 pc,mo 9개
99minji 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| import React from "react"; | ||
|
|
||
| const EmptyFavoriteList = () => { | ||
| return ( | ||
| <div className="flex flex-col justify-center items-center h-full p-10 bg-gray100 text-center text-gray600"> | ||
| <div className="text-2xl md:text-3xl font-semibold text-gray600"> | ||
| <span className="block mb-4">⭐️</span> | ||
| 즐겨찾기 항목이 없습니다. | ||
| </div> | ||
| <div className="text-sm text-purple100 mt-2"> | ||
| 저장한 즐겨찾기 항목을 추가해보세요. | ||
| </div> | ||
| </div> | ||
| ); | ||
| }; | ||
|
|
||
| export default EmptyFavoriteList; |
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 |
|---|---|---|
| @@ -1,9 +1,3 @@ | ||
| // tailwind 동적 스타일을 위한 함수 | ||
| export const bindCls = (...cls: string[]) => { | ||
| return cls.join(" "); | ||
| }; | ||
|
|
||
| // 데이터나 API에서 이미지 URL이 //로 오는 경우 자동으로 프로토콜 추가 | ||
| export const ensureAbsoluteUrl = (url: string) => { | ||
| return url.startsWith("//") ? `https:${url}` : url; | ||
| }; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,4 @@ | ||
| // 데이터나 API에서 이미지 URL이 //로 오는 경우 자동으로 프로토콜 추가 | ||
| export const ensureAbsoluteUrl = (url: string) => { | ||
| return url.startsWith("//") ? `https:${url}` : url; | ||
| }; |
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.
이 파일 바로 삭제해주셔도 됩니당 !