-
-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- added call_started_message.xml - added CallStartedViewHolder.kt - added CallStartedMessageInterface.kt - Both join audio and join video buttons - Gets destroyed if call ends, persists despite state changes Signed-off-by: Julius Linus <julius.linus@nextcloud.com>
- Loading branch information
1 parent
703f2c0
commit 659d841
Showing
6 changed files
with
338 additions
and
9 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
app/src/main/java/com/nextcloud/talk/adapters/messages/CallStartedMessageInterface.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,25 @@ | ||
/* | ||
* Nextcloud Talk application | ||
* | ||
* @author Julius Linus | ||
* Copyright (C) 2023 Julius Linus <julius.linus@nextcloud.com> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
package com.nextcloud.talk.adapters.messages | ||
|
||
interface CallStartedMessageInterface { | ||
fun joinAudioCall() | ||
fun joinVideoCall() | ||
} |
129 changes: 129 additions & 0 deletions
129
app/src/main/java/com/nextcloud/talk/adapters/messages/CallStartedViewHolder.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,129 @@ | ||
/* | ||
* Nextcloud Talk application | ||
* | ||
* @author Julius Linus | ||
* Copyright (C) 2023 Julius Linus <julius.linus@nextcloud.com> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package com.nextcloud.talk.adapters.messages | ||
|
||
import android.content.Context | ||
import android.graphics.drawable.Drawable | ||
import android.view.View | ||
import autodagger.AutoInjector | ||
import coil.Coil.imageLoader | ||
import coil.request.ImageRequest | ||
import coil.target.Target | ||
import coil.transform.CircleCropTransformation | ||
import com.nextcloud.talk.application.NextcloudTalkApplication | ||
import com.nextcloud.talk.databinding.CallStartedMessageBinding | ||
import com.nextcloud.talk.models.json.chat.ChatMessage | ||
import com.nextcloud.talk.ui.theme.ViewThemeUtils | ||
import com.nextcloud.talk.users.UserManager | ||
import com.nextcloud.talk.utils.ApiUtils | ||
import com.stfalcon.chatkit.messages.MessageHolders | ||
import javax.inject.Inject | ||
|
||
@AutoInjector(NextcloudTalkApplication::class) | ||
class CallStartedViewHolder(incomingView: View, payload: Any) : | ||
MessageHolders.BaseIncomingMessageViewHolder<ChatMessage>(incomingView, payload) { | ||
private val binding: CallStartedMessageBinding = CallStartedMessageBinding.bind(incomingView) | ||
|
||
@Inject | ||
lateinit var context: Context | ||
|
||
@Inject | ||
lateinit var userManager: UserManager | ||
|
||
@Inject | ||
lateinit var viewThemeUtils: ViewThemeUtils | ||
|
||
private lateinit var messageInterface: CallStartedMessageInterface | ||
|
||
override fun onBind(message: ChatMessage) { | ||
super.onBind(message) | ||
NextcloudTalkApplication.sharedApplication!!.componentApplication.inject(this) | ||
themeBackground() | ||
setUpAvatarProfile(message) | ||
binding.callAuthorChip.text = message.actorDisplayName | ||
binding.joinVideoCall.setOnClickListener { messageInterface.joinVideoCall() } | ||
binding.joinAudioCall.setOnClickListener { messageInterface.joinAudioCall() } | ||
} | ||
|
||
private fun themeBackground() { | ||
binding.callStartedBackground.apply { | ||
viewThemeUtils.talk.themeOutgoingMessageBubble(this, grouped = true, false) | ||
} | ||
|
||
binding.callAuthorChip.apply { | ||
viewThemeUtils.material.colorChipBackground(this) | ||
} | ||
} | ||
|
||
private fun setUpAvatarProfile(message: ChatMessage) { | ||
val user = userManager.currentUser.blockingGet() | ||
val url: String = if (message.actorType == "guests" || message.actorType == "guest") { | ||
ApiUtils.getUrlForGuestAvatar( | ||
user!!.baseUrl, | ||
message.actorDisplayName, | ||
true | ||
) | ||
} else { | ||
ApiUtils.getUrlForAvatar(user!!.baseUrl, message.actorDisplayName, true) | ||
} | ||
|
||
val imageRequest: ImageRequest = ImageRequest.Builder(context) | ||
.data(url) | ||
.crossfade(true) | ||
.transformations(CircleCropTransformation()) | ||
.target(object : Target { | ||
override fun onStart(placeholder: Drawable?) { | ||
// unused atm | ||
} | ||
|
||
override fun onError(error: Drawable?) { | ||
// unused atm | ||
} | ||
|
||
override fun onSuccess(result: Drawable) { | ||
binding.callAuthorChip.chipIcon = result | ||
} | ||
}) | ||
.build() | ||
|
||
imageLoader(context).enqueue(imageRequest) | ||
} | ||
|
||
fun assignCallStartedMessageInterface(inf: CallStartedMessageInterface) { | ||
messageInterface = inf | ||
} | ||
|
||
companion object { | ||
var TAG: String? = CallStartedViewHolder::class.simpleName | ||
} | ||
|
||
override fun viewDetached() { | ||
// unused atm | ||
} | ||
|
||
override fun viewAttached() { | ||
// unused atm | ||
} | ||
|
||
override fun viewRecycled() { | ||
// unused atm | ||
} | ||
} |
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
Oops, something went wrong.