-
Notifications
You must be signed in to change notification settings - Fork 2
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/403: [FE] [녹음] 녹음 시 트랙 재생 관련 인터랙션 막기 #407
Conversation
- playstick 어색하지 않도록 스타일 수정
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@@ -4,6 +4,7 @@ | |||
display: flex; | |||
justify-content: center; | |||
align-items: center; | |||
background-color: #404040; | |||
background-color: rgba(255, 255, 255, 0.1); |
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.
player 스틱이 마이크 아이콘을 가리지 않도록 투명도를 설정했어요
@@ -26,29 +29,31 @@ const useCreateTrack = ({ | |||
initRecord, | |||
} = useRecord(inputDeviceId); | |||
|
|||
const { start: startTimer, pause: pauseTimer, isExpired, time: timerTime } = useTimer(30); |
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.
이전 로직에서는 녹음 타이머, player 재생을 위한 타이머가 각각 30초씩 동작하고 있었는데, 상태로 관리하다보니 녹음 상태와 Player 재생 상태가 불일치하는 문제가 발생해서 녹음은 트랙 재생 상태에 의존하여 시작하도록 수정했어요.
구현 기능
관련 이슈