-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Minor : 아이콘 추가 * Minor : 디렉토리 구조 변경에 따른 변경 * Refactor : 모달 position 속성 absolute 로 변경 * Minor : 포매팅 * Refactor : PostCard 스켈레톤 컴포넌트 구현 * New : 댓글 Interface 정의 * New : 댓글, 카드 관련 컨텍스트 정의 * Refactor : 페이지 디자인 개선 * Fix : 현재 페이지와 디테일 페이지가 일치하는 경우 이동하지 않도록 개선 * Minor : 인용기능 삭제 * New : PostComment 스켈레톤 컴포넌트 구현 * Refactor : Post Detail Suspense적용 * New : 댓글 작성, 조회 기능 구현
- Loading branch information
1 parent
1095ab9
commit 8ac5044
Showing
31 changed files
with
568 additions
and
191 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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 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 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 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 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 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,35 @@ | ||
import { Box, Card, Skeleton, Stack } from "@mui/material"; | ||
|
||
const PostCardSkeleton = () => { | ||
return ( | ||
<Card sx={{ display: "flex", gap: 2, p: 2 }}> | ||
<Skeleton width={40} height={40} variant="circular" /> | ||
<Box sx={{ flexGrow: 1 }}> | ||
<Stack justifyContent="space-between" gap={2} px={0}> | ||
<Stack | ||
direction="row" | ||
gap={1} | ||
alignItems= {"center"} | ||
> | ||
<Skeleton width={100} /> | ||
<Skeleton width={80} /> | ||
<Skeleton width={50} /> | ||
</Stack> | ||
<Stack> | ||
<Skeleton width={'100%'} /> | ||
<Skeleton width={'50%'} /> | ||
</Stack> | ||
<Skeleton width={"100%"} height={142} variant="rectangular" /> | ||
<Stack direction="row" justifyContent={"end"} gap={2}> | ||
<Skeleton width={50} /> | ||
<Skeleton width={50} /> | ||
<Skeleton width={50} /> | ||
<Skeleton width={50} /> | ||
</Stack> | ||
</Stack> | ||
</Box> | ||
</Card> | ||
); | ||
}; | ||
|
||
export default PostCardSkeleton; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.