-
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
feat: 시간 기록 기능을 구현합니다. #74
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.
👍
}, | ||
}} | ||
> | ||
<div className={layout.bottomSheet}> |
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.
저도 인지하고 있는데 빠른시간내에 처리가 어려울 것 같아서 우선은 남겨두었습니다...ㅎ
모든 api 연결 테스트 후 이런 세세한 부분들 수정해 나갈 예정입니다!
|
||
import { useEffect, useState } from 'react'; | ||
|
||
export default function useGetBrowserWidth() { |
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.
👍
저희는 최대 너비가 600px이기 때문에, 요 부분도 예외처리 해주면 좋을 것 같습니다!
@@ -0,0 +1,3 @@ | |||
.custom-picker input { | |||
visibility: hidden; | |||
} |
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.
요 스타일을 custom picker 컴포넌트 내부 선택자로 넣어줄 수는 없을까요?
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.
저도 그게 좋다고 생각하는데 Panda에서 어떻게 넣어줘야 할지 아직 알아보지 못해서 우선 위처럼 처리했습니다 ㅎㅎ
저 부분 더 알아보고 수정할 수 있다면 수정해 놓겠습니다!!
혹시 문법 알고 계시면 알려주시면 감사하겠습니다~~
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.
value="18:30" | ||
value={ | ||
methods.watch('startTime') ? methods.watch('startTime') : '' | ||
} |
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.
성능에는 미미한 영향을 미치겠지만.. watch를 한번만 호출하는 것이 좋을 것 같아요.
const startTime = methods.watch('startTime');
value={startTime || ''}
🤔 어떤 문제가 발생했나요?
🎉 어떻게 해결했나요?
📷 이미지 첨부 (Option)
default.mp4