codestates / codestates/Almost-There
[Dev log] 임지호 / 2022-02-23
- Dominant language
- TypeScript
- Stars
- 0
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
Description
### 오늘은 어떻게 프로젝트에 기여했나요?
- 캘린더 모달 구현
- 초대 모달 구현
- 그룹 생성 페이지 state 설정 및 이벤트 설정
### 오늘의 프로젝트에서 힘든 점은 무엇인가요?
- scroll picker 구현이 힘들었다. 을 사용해서 구현하려고 했지만 의 multiple 옵션만으로는 스크롤로 선택하는 부분 구현이 안되어서
```js
// ...
{
hourArr.map((h, idx) => {
return (
{h}
)
})
}
// ...
const HourBox = styled.div`
width: 80px;
height: 150px;
overflow: scroll;
border: solid black 1px;
&::-webkit-scrollbar {
display:none;
}
`
interface OptionI {
select: string
}
const Option = styled.div`
height: 50px;
display: flex;
justify-content: center;
align-items: center;
font-size: 15px;
font-weight: bold;
background-color: ${(props) => props.id===props.select ? 'rgba(52, 106, 255, 0.4)' : 'none'}
`
```
### 내일은 프로젝트에 기여하기 위해 무엇을 해야 하나요?
- [x] socket.io room 테스트 해보기
- [ ] 초대 모달 아이디 체크 기능 넣기
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.