-
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.
- Loading branch information
Showing
25 changed files
with
690 additions
and
693 deletions.
There are no files selected for viewing
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,36 @@ | ||
import { Box, Flex } from "@chakra-ui/react"; | ||
|
||
export interface InfoColOptions { | ||
left: string; | ||
right: string; | ||
} | ||
|
||
interface InfoColProps { | ||
optionsArr: InfoColOptions[]; | ||
isMint?: boolean; | ||
} | ||
|
||
function InfoCol({ optionsArr, isMint }: InfoColProps) { | ||
return ( | ||
<Flex | ||
direction="column" | ||
w="full" | ||
border="1px solid F7F7F7" | ||
borderRadius="8px" | ||
px={3} | ||
py={2} | ||
bg="rgba(97,106,97,0.04)" | ||
> | ||
{optionsArr.map(({ left, right }, idx) => ( | ||
<Flex key={idx} justify="space-between" fontSize="11px" my={1}> | ||
<Box color="gray.600">{left}</Box> | ||
<Box color={isMint ? "mint" : "gray.800"} fontWeight="medium"> | ||
{right} | ||
</Box> | ||
</Flex> | ||
))} | ||
</Flex> | ||
); | ||
} | ||
|
||
export default InfoCol; |
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,22 @@ | ||
import { Box, Flex, Skeleton } from "@chakra-ui/react"; | ||
|
||
interface InfoColSkeletonProps { | ||
leftArr: string[]; | ||
} | ||
|
||
function InfoColSkeleton({ leftArr }: InfoColSkeletonProps) { | ||
return ( | ||
<Flex direction="column" w="full"> | ||
{leftArr.map((text, idx) => ( | ||
<Flex key={idx} justify="space-between" fontSize="11px" my={1}> | ||
<Box color="gray.600">{text}</Box> | ||
<Box w="36px" h="20px"> | ||
<Skeleton>1</Skeleton> | ||
</Box> | ||
</Flex> | ||
))} | ||
</Flex> | ||
); | ||
} | ||
|
||
export default InfoColSkeleton; |
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 |
---|---|---|
@@ -1,35 +1,32 @@ | ||
import { IModal } from "../../types/components/modalTypes"; | ||
import RuleModal, { IRuleModalContent } from "../RuleModal"; | ||
function GatherRuleModal() { | ||
// const content: IRuleModalContent = { | ||
// headerContent: { | ||
// title: "모임 게시판", | ||
// text: "다양한 주제의 모임과 번개를 개설하거나 참여할 수 있어요! 재밌는 모임 같이 참여해요~!", | ||
// }, | ||
// mainContent: [ | ||
// { | ||
// title: "ABOUT 모임 게시판은 어떤게 다르나요?", | ||
// texts: [ | ||
// "누구나 모임을 개설할 수 있어요! 날짜와 장소, 주제를 선택해서 모임을 열어봐요!", | ||
// "필요한 내용들을 형식화해서 쉽게 모임을 열 수 있어요!", | ||
// "주제, 장소, 참여시간, 진행방식 등의 요소들을 한 눈에 볼 수 있어서 따로 고민하거나 설명하지 않아도 진행이 간단해요!", | ||
// "같은 동아리여도 초면인 사람들이 많아서 모임에 나가기가 고민될 수 있어요! 인원 수, 성별, 나이 등을 고려하여 참여자를 받을 수 있어서 새로운 만남에 대한 부담이 적어요!", | ||
// ], | ||
// }, | ||
// { | ||
// title: "모임 개설자 필독", | ||
// texts: [ | ||
// "카카오톡 공유를 통해 모임글을 공지 톡방에 올려주세요!", | ||
// "모임이 확정되면 인원들과 단톡방을 만들어주세요!", | ||
// "모임 취소는 신청자가 없는 경우 완전히 삭제되고, 신청자가 있는 경우에는 취소 상태로 변경됩니다.", | ||
// "모임 진행시 간단한 인증 사진을 찍어주세요!", | ||
// ], | ||
// }, | ||
// ], | ||
// }; | ||
|
||
function GatherRuleModal({ setIsModal }: IModal) { | ||
const content: IRuleModalContent = { | ||
headerContent: { | ||
title: "모임 게시판", | ||
text: "다양한 주제의 모임과 번개를 개설하거나 참여할 수 있어요! 재밌는 모임 같이 참여해요~!", | ||
}, | ||
mainContent: [ | ||
{ | ||
title: "ABOUT 모임 게시판은 어떤게 다르나요?", | ||
texts: [ | ||
"누구나 모임을 개설할 수 있어요! 날짜와 장소, 주제를 선택해서 모임을 열어봐요!", | ||
"필요한 내용들을 형식화해서 쉽게 모임을 열 수 있어요!", | ||
"주제, 장소, 참여시간, 진행방식 등의 요소들을 한 눈에 볼 수 있어서 따로 고민하거나 설명하지 않아도 진행이 간단해요!", | ||
"같은 동아리여도 초면인 사람들이 많아서 모임에 나가기가 고민될 수 있어요! 인원 수, 성별, 나이 등을 고려하여 참여자를 받을 수 있어서 새로운 만남에 대한 부담이 적어요!", | ||
], | ||
}, | ||
{ | ||
title: "모임 개설자 필독", | ||
texts: [ | ||
"카카오톡 공유를 통해 모임글을 공지 톡방에 올려주세요!", | ||
"모임이 확정되면 인원들과 단톡방을 만들어주세요!", | ||
"모임 취소는 신청자가 없는 경우 완전히 삭제되고, 신청자가 있는 경우에는 취소 상태로 변경됩니다.", | ||
"모임 진행시 간단한 인증 사진을 찍어주세요!", | ||
], | ||
}, | ||
], | ||
}; | ||
|
||
return <RuleModal content={content} setIsModal={setIsModal} />; | ||
return null; | ||
} | ||
|
||
export default GatherRuleModal; |
Oops, something went wrong.