-
Notifications
You must be signed in to change notification settings - Fork 2
[FEAT/#162] 마이크 뮤트 기능을 구현했습니다. #173
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
Merged
Merged
Changes from 8 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
1dd8092
feat/#162 :: 오디오 입출력 옵션 추가
Kiyoung-Kim-57 7f48077
feat/#162 :: ConnectionClient들에게 전달하는 AudioTrack의 송출을 끊음
Kiyoung-Kim-57 9d59532
feat/#162 :: ConnectionRepository에서 ConnectionClients의 AudioTrack 상태 …
Kiyoung-Kim-57 aceb7c1
feat/#162 :: LocalMicState를 바꾸는 UseCase 생성
Kiyoung-Kim-57 c126b36
feat/#162 :: WaitingRoomVIewModel에서 handleMicButtonDidTap 구현
Kiyoung-Kim-57 c438905
chore/#162 :: changeLocalMicStateUseCase 의존성 주입
Kiyoung-Kim-57 fe5dcb7
feat/#162 :: PhotoRoomView에도 마이크 버튼 추가 후 UseCase 연결
Kiyoung-Kim-57 16d7a75
chore/#162 :: 오타 수정 및 의존성 주입
Kiyoung-Kim-57 2d2569c
chore/#162 :: 오디오 옵션 주석 추가
Kiyoung-Kim-57 728b636
chore/#162 :: 네이밍 변경
Kiyoung-Kim-57 e5e5e5c
feat/#162 :: 첫 시작을 마이크가 꺼진 상태로 시작하도록 변경
Kiyoung-Kim-57 3d6b748
feat/#162 :: 오디오 트랙 초기 설정 추가
Kiyoung-Kim-57 0df8bc8
feat/#162 :: micMuteState -> voiceInputState 로 변경
Kiyoung-Kim-57 3de7564
feat/#162 :: PhotoRoomView로 넘어갈 때 현재 마이크 상태 전달 후 마이크 버튼 뷰 업데이트
Kiyoung-Kim-57 4cdcb51
feat/#162 :: 편집화면 마이크 버튼 추가
0Hooni 63736a4
Merge branch 'feat/#162-mic-mute' of github.com:boostcampwm-2024/iOS0…
0Hooni 4e6c630
fix/#162 :: 촬영 시작시 elipsis 숨김
0Hooni 82e9fce
feat/#162 :: EditPhotoRoom에서 마이크 버튼 input, output 연결
Kiyoung-Kim-57 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
...ayer/PhotoGetherDomain/PhotoGetherDomain/UseCaseImpl/ChangeLocalMicStateUseCaseImpl.swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| import Combine | ||
| import PhotoGetherDomainInterface | ||
|
|
||
| public final class ChangeLocalMicStateUseCaseImpl: ChangeLocalMicStateUseCase { | ||
youn9k marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| public func execute() -> AnyPublisher<Bool, Never> { | ||
| connectionRepository.switchLocalAudioTrackState() | ||
| return connectionRepository.didChangeLocalAudioTrackStatePublisher | ||
| } | ||
|
|
||
| private let connectionRepository: ConnectionRepository | ||
|
|
||
| public init(connectionRepository: ConnectionRepository) { | ||
| self.connectionRepository = connectionRepository | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
...yer/PhotoGetherDomain/PhotoGetherDomainInterface/UseCase/ChangeLocalMicStateUseCase.swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| import Combine | ||
|
|
||
| public protocol ChangeLocalMicStateUseCase { | ||
| func execute() -> AnyPublisher<Bool, Never> | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.