Skip to content
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

Feat/chat room page #84

Merged
merged 2 commits into from
Nov 4, 2021
Merged

Feat/chat room page #84

merged 2 commits into from
Nov 4, 2021

Conversation

jin-Pro
Copy link
Member

@jin-Pro jin-Pro commented Nov 3, 2021

  • 채팅 디테일 재사용 컴포넌트 생성
  • 채팅룸 오른쪽 기본 / 게임 / 게더타운 틀 구현
  • 채팅룸 게임 모달창 구현
  • 채팅룸 게더타운 모달창 구현

질문

1

캐릭터 모달 보면 인덱스값으로 캐릭터 이미지를 가져오는데 파일명이 캐릭터1 인 이미지를 읽어올때 client/src/assets로 가져오기가 너무 어려워서 public에 넣었음.. 의견 부탁드림

2

게더타운 입장시 캐릭터 정보를 좀 저장해야할 것 같음

@jin-Pro jin-Pro added the 👑 리뷰 요청 리뷰 요청 label Nov 3, 2021
@jin-Pro jin-Pro added this to the 1주차 개발 마일스톤 milestone Nov 3, 2021
@jin-Pro jin-Pro self-assigned this Nov 3, 2021
const [openGather, setOpenGather] = useState<boolean>(false);
const [index, setIndex] = useState<number>(0);
const [datas, setDatas] = useState<String[] | null>(null);

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

리팩토링할때 useReduce 사용하는게 좋아보임


const searchParams = new URLSearchParams(useLocation().search);
const chatRoomID = Number(searchParams.get("chatRoomID"));
const gameURL = `/ChatRoom/Game?chatRoomID=${chatRoomID}`;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

chatRoomId를 props로 전달해주는 건 어떰 ?

<Route path="/ChatRoom" component={() => ChatRoomBasic({ member })} exact />
<Route path="/ChatRoom/Game" component={ChatRoomGame} />
<Route path="/ChatRoom/Gather" component={ChatRoomGather} />
</Switch>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good

@Noelsky-code
Copy link
Member

1

캐릭터 모달 보면 인덱스값으로 캐릭터 이미지를 가져오는데 파일명이 캐릭터1 인 이미지를 읽어올때 client/src/assets로 가져오기가 너무 어려워서 public에 넣었음.. 의견 부탁드림
https://codingapple.com/forums/topic/%EB%A6%AC%EC%95%A1%ED%8A%B8-%EB%B9%8C%EB%93%9C-%EC%8B%9C-public-%ED%95%98%EC%9C%84-%ED%8F%B4%EB%8D%94-%EC%9D%B4%EB%AF%B8%EC%A7%80-%EA%B2%BD%EB%A1%9C/
https://create-react-app.dev/docs/using-the-public-folder/
찾아보니까 개발할 때는 문제가 없지만 build할 떄 문제가 생기는 거 같음
그래서 public 에 쓸거면 <img src={process.env.PUBLIC_URL + '/img/logo.png'} />; 이렇게 써줘야함
근데 이 방법도 몇가지 단점이 있다고 함
그래서 CRA 에서는 js 파일에서 import 하는 방식을 권장함

2

게더타운 입장시 캐릭터 정보를 좀 저장해야할 것 같음

@ddaynew365
Copy link
Collaborator

1번 질문에 대해 어떤 어려움이 있으셨는지 궁금합니다.
2번에 대해서는 소켓으로 캐릭 정보 저장하는 것도 좋을 것 같습니다.

@jin-Pro jin-Pro merged commit af72132 into dev Nov 4, 2021
@jin-Pro jin-Pro deleted the Feat/ChatRoomPage branch August 8, 2022 01:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
👑 리뷰 요청 리뷰 요청
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants