-
Notifications
You must be signed in to change notification settings - Fork 4
Feat/refactor/meeting list mvp feedback/DEVING-72 #73
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
lee1nna
merged 16 commits into
dev
from
feat/refactor/meeting-list-mvp-feedback/DEVING-72
Mar 15, 2025
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
5f8dec2
setting(DEVING-72): ๋ก์ปฌ https ์คํ ํ๊ฒฝ ์ธํ
lee1nna a6c9cfa
feat(DEVING-72): ๋ชจ์ ๋ชฉ๋ก ํ๋ฉด ์ ๋๋ฉ์ด์
์ถ๊ฐ
lee1nna 79b2805
feat(DEVING-72): ๋ชจ์ ๋ชฉ๋ก ํ๋ฉด ์ ๋๋ฉ์ด์
์ถ๊ฐ
lee1nna 4719a31
Merge branch 'dev' into feat/refactor/meeting-list-mvp-feedback/DEVINโฆ
lee1nna e54c553
Merge branch 'dev' into feat/refactor/meeting-list-mvp-feedback/DEVINโฆ
lee1nna 0528676
feat(DEVING-72): ์ฐํ๊ธฐ ์๋ฌ์ํ์ ๋ฐ๋ฅธ ์์ธ์ฒ๋ฆฌ ์ถ๊ฐ
lee1nna 499c1fa
Merge branch 'dev' into feat/refactor/meeting-list-mvp-feedback/DEVINโฆ
lee1nna 8bddfb3
feat(DEVING-72): ์ฐํ๊ธฐ ์ ๋๋ฉ์ด์
์ถ๊ฐ
lee1nna 5379dd1
Merge branch 'dev' into feat/refactor/meeting-list-mvp-feedback/DEVINโฆ
lee1nna 002b5e9
Merge branch 'dev' into feat/refactor/meeting-list-mvp-feedback/DEVINโฆ
lee1nna 406fb87
feat(DEVING-72): ๊ณตํต ์๋ฌ ์ปดํฌ๋ํธ ์ถ๊ฐ
lee1nna 53730ac
Merge branch 'dev' into feat/refactor/meeting-list-mvp-feedback/DEVINโฆ
lee1nna 540879a
feat(DEVING-72): ๊ณตํต ์๋ฌ ์ฒ๋ฆฌ ์ ์ธ
lee1nna a643292
feat(DEVING-72): fetchQuery -> prefetchQuery๋ก ์์
lee1nna 1e50d75
Merge branch 'dev' into feat/refactor/meeting-list-mvp-feedback/DEVINโฆ
lee1nna 2dea374
feat(DEVING-72): ์ฐํ ๋ชจ์ ์ฐํด์ ๊ธฐ๋ฅ ์ถ๊ฐ
lee1nna 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 |
|---|---|---|
|
|
@@ -39,3 +39,7 @@ yarn-error.log* | |
| # typescript | ||
| *.tsbuildinfo | ||
| next-env.d.ts | ||
|
|
||
| # key | ||
| /localhost-key.pem | ||
| /localhost.pem | ||
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
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,30 @@ | ||
| import { useRouter } from 'next/navigation'; | ||
|
|
||
| import { Button } from '../ui/Button'; | ||
|
|
||
| interface ErrorComponentProps { | ||
| className?: string; | ||
| } | ||
|
|
||
| const ErrorComponent = ({ className }: ErrorComponentProps) => { | ||
| const router = useRouter(); | ||
| const retryHandler = () => { | ||
| router.refresh(); | ||
| }; | ||
| return ( | ||
| <div | ||
| className={`flex flex-col justify-center text-white ${className} h-screen w-full`} | ||
| > | ||
| <div className="text-center"> | ||
| ๋ฌธ์ ๊ฐ ๋ฐ์ํ์ต๋๋ค. | ||
| <br /> | ||
| ๋ค์ ์๋ํด์ฃผ์ธ์. | ||
| </div> | ||
| <div className="mt-10 flex w-full justify-center"> | ||
| <Button onClick={retryHandler}>๋ค์ ์๋ํ๊ธฐ</Button> | ||
| </div> | ||
| </div> | ||
| ); | ||
| }; | ||
|
|
||
| export default ErrorComponent; |
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,39 @@ | ||
| // components/CardImage.js | ||
| import Image from 'next/image'; | ||
| import { useState } from 'react'; | ||
| import React from 'react'; | ||
|
|
||
| interface CardImageProps { | ||
| src: string; | ||
| width: number; | ||
| height: number; | ||
| } | ||
|
|
||
| const CardImage = React.memo(({ src, width, height }: CardImageProps) => { | ||
| const [thumbnail, setThumbnail] = useState(src); | ||
| const [thumbnailLoaded, setThumbnailLoaded] = useState(false); | ||
| return ( | ||
| <div | ||
| className="relative flex-shrink-0" | ||
| style={{ height: `${height}px`, width: `${width}px` }} | ||
| > | ||
| {!thumbnailLoaded && ( | ||
| <div className="animate-pulse h-full w-full rounded-[20px] bg-Cgray200"></div> | ||
| )} | ||
| <Image | ||
| className="transform-gpu rounded-[20px] object-cover" | ||
| src={thumbnail} | ||
| alt="card_image" | ||
| fill | ||
| onError={() => { | ||
| setThumbnail('/thumbnail.jpg'); | ||
| }} | ||
| onLoad={() => setThumbnailLoaded(true)} | ||
| /> | ||
| </div> | ||
| ); | ||
| }); | ||
|
|
||
| CardImage.displayName = 'CardImage'; | ||
|
|
||
| export default CardImage; |
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.
์๊ณ ์ถ์ฒ๋๋ฆฝ๋๋น ์ฌ์ฉ์ ๋ทฐํํธ 60%๊ฐ ์ด์๋๋ผ๊ตฌ์ฉ