-
Notifications
You must be signed in to change notification settings - Fork 743
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3863 from vector-im/feature/fga/new_voip_design
Feature/fga/new voip design
- Loading branch information
Showing
96 changed files
with
2,271 additions
and
1,448 deletions.
There are no files selected for viewing
This file contains 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 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 @@ | ||
New call designs |
This file contains 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 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 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 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 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 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 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
110 changes: 0 additions & 110 deletions
110
vector/src/main/java/im/vector/app/core/ui/views/ActiveConferenceView.kt
This file was deleted.
Oops, something went wrong.
This file contains 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
55 changes: 55 additions & 0 deletions
55
vector/src/main/java/im/vector/app/core/ui/views/CurrentCallsViewPresenter.kt
This file contains 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,55 @@ | ||
/* | ||
* Copyright (c) 2021 New Vector Ltd | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package im.vector.app.core.ui.views | ||
|
||
import androidx.core.view.isVisible | ||
import im.vector.app.features.call.webrtc.WebRtcCall | ||
|
||
class CurrentCallsViewPresenter { | ||
|
||
private var currentCallsView: CurrentCallsView? = null | ||
private var currentCall: WebRtcCall? = null | ||
private var calls: List<WebRtcCall> = emptyList() | ||
|
||
private val tickListener = object : WebRtcCall.Listener { | ||
override fun onTick(formattedDuration: String) { | ||
currentCallsView?.render(calls, formattedDuration) | ||
} | ||
} | ||
|
||
fun updateCall(currentCall: WebRtcCall?, calls: List<WebRtcCall>) { | ||
this.currentCall?.removeListener(tickListener) | ||
this.currentCall = currentCall | ||
this.currentCall?.addListener(tickListener) | ||
this.calls = calls | ||
val hasActiveCall = currentCall != null | ||
currentCallsView?.isVisible = hasActiveCall | ||
currentCallsView?.render(calls, currentCall?.formattedDuration() ?: "") | ||
} | ||
|
||
fun bind(activeCallView: CurrentCallsView, interactionListener: CurrentCallsView.Callback) { | ||
this.currentCallsView = activeCallView | ||
this.currentCallsView?.callback = interactionListener | ||
this.currentCall?.addListener(tickListener) | ||
} | ||
|
||
fun unBind() { | ||
this.currentCallsView?.callback = null | ||
this.currentCall?.removeListener(tickListener) | ||
currentCallsView = null | ||
} | ||
} |
Oops, something went wrong.