-
Notifications
You must be signed in to change notification settings - Fork 1
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
팀원소개서 팀원 목록 #213
팀원소개서 팀원 목록 #213
Conversation
울 웹쁜이 고생많았어 ! 여기서 미리보기로 보면서 쉬어~ 다른 웹쁜이들한테도 자랑해줘~ |
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.
주말인데 벌써 뷰 하나를 뚝딱 🥘 수고많았어유~!!
import { TeamMemberNoneId } from '@api/types/team'; | ||
import { MAX_TEAM_MEMBER } from '@utils/constant'; |
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.
상수로 뺀거 넘 조아요~!
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.
좋아요~!
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.
👍👍
background: ${COLOR.WHITE}; | ||
border-radius: 8.07692px; | ||
border: 0.8px solid ${COLOR.GRAY_3}; | ||
border-radius: 8.08px; |
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.
소수점이 줄어들었넹 ㅌㅋㅋㅋㅋㅋ 👍😍
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.
ㅋㅋㅋㅋㅋ 드디어 !! 😻
const memberNameList = | ||
slicedMemberList && slicedMemberList.map((member) => member.profileName).join(', '); |
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.
텍스트 한 줄로 해도 좋지만 나중에 호스트 친구는 굵은 글씨로 표시해야 해서 이전 방법처럼 span으로 하는 것도 좋은 선택일듯혀..!!
호스트가 생겨도 그냥 맨 앞에 따로 붙여두면 되니까 상관 없으려나?
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.
이거 나두 생각해 보니까 이전 방법이 더 좋은 것 같아서 되돌려놓을게 !! 땡큐😉
const { data: teamInfoData } = useQuery(['teamDetailData', teamID], () => | ||
api.teamService.getTeamInfo(Number(teamID)), | ||
); |
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.
리액트쿼리 천재만재!!! 🥰🥰
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.
서진이가 첨에 잘 써놓은 덕분 ㅎㅎ😘
const TeamRegister = lazy(() => import('@pages/Team/Register')); | ||
const TeamMain = lazy(() => import('@pages/Team/Main')); | ||
const TeamMember = lazy(() => import('@pages/Team/Member')); |
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.
레이지로딩도 천재만재 🧠🧠
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.
다른 애들 레이지로딩 되어있길래 알잘딱 맞춰놨으 ㅎㅎ
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.
굳굳 진짜 짱 빨라 고생했어! 💓
${FONT_STYLES.R_15_TITLE}; | ||
color: ${COLOR.GRAY_5}; | ||
${FONT_STYLES.M_14_TITLE}; | ||
color: #dedede; |
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.
이거 컬러 상수 추가하는게 좋지 않을까?? 번호 35로 해서 하면 될 것 같은뎀 근데 기존에 만들어둔 번호가 30 40 300 400 이런 식이었으면 더 좋았을 . . (내가 만듦 ㅠ)
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.
GRAY_35: '#DEDEDE'
로 컬러 상수 추가했습니당 ㅎㅎ
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.
굳굳 감사합니도 👍
const slicedMemberList = teamInfoData && teamInfoData.teamMemberList.slice(0, MAX_TEAM_MEMBER); | ||
const memberNameList = |
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.
이거 이름 slicedMemberNames로 하는거 어떨까? 일단 sliced를 붙이는게 더 이해하기 쉬울 것 같고 ~List는 배열 이름으로 쓰기로 해서 딱 봤을 때 배열 느낌이 너무 강한 것 같아서! 너낌 안오면 안바꿔도 됩니당
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.
원래 코드로 되돌리기로 해서 이 변수는 안 쓰기로 했습니당 의견 고마워 ~~!
<header> | ||
<IcBack onClick={() => navigate(-1)} /> | ||
<div>팀원 목록</div> | ||
</header> |
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.
이거 내가 공통 헤더 곧 만들어서 바꿔놓든지 할게!
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.
좋아유~~! 🤩
울 웹쁜이 고생많았어 ! 여기서 미리보기로 보면서 쉬어~ 다른 웹쁜이들한테도 자랑해줘~ |
울 웹쁜이 고생많았어 ! 여기서 미리보기로 보면서 쉬어~ 다른 웹쁜이들한테도 자랑해줘~ |
⛓ Related Issues
📋 작업 내용
📌 PR Point
teamMemberList: TeamMemberNoneId[];
에서teamMemberList: TeamMember[];
로 수정했습니다.👀 스크린샷 / GIF / 링크