Skip to content

Commit

Permalink
ktlintFormat
Browse files Browse the repository at this point in the history
Signed-off-by: sowjanyakch <[email protected]>
  • Loading branch information
sowjanyakch committed Oct 25, 2024
1 parent 888ee62 commit 74c3bd5
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 23 deletions.
32 changes: 15 additions & 17 deletions app/src/main/java/com/nextcloud/talk/activities/CallActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ class CallActivity : CallBaseActivity() {
private var isBreakoutRoom = false
private val localParticipantMessageListener = LocalParticipantMessageListener { token ->
switchToRoomToken = token
hangup(true,null)
hangup(true, null)
}
private val offerMessageListener = OfferMessageListener { sessionId, roomType, sdp, nick ->
getOrCreatePeerConnectionWrapperForSessionIdAndType(
Expand Down Expand Up @@ -505,7 +505,7 @@ class CallActivity : CallBaseActivity() {
}
.setNegativeButton(R.string.nc_no) { _, _ ->
recordingConsentGiven = false
hangup(true,null)
hangup(true, null)
}

viewThemeUtils.dialog.colorMaterialAlertDialogBackground(this, materialAlertDialogBuilder)
Expand Down Expand Up @@ -621,7 +621,11 @@ class CallActivity : CallBaseActivity() {
}

@SuppressLint("ClickableViewAccessibility")
private fun initClickListeners(isModerator:Boolean, isOneToOneConversation:Boolean, isGroupConversation:Boolean) {
private fun initClickListeners(
isModerator: Boolean,
isOneToOneConversation: Boolean,
isGroupConversation: Boolean
) {
binding!!.pictureInPictureButton.setOnClickListener { enterPipMode() }

binding!!.audioOutputButton.setOnClickListener {
Expand Down Expand Up @@ -672,33 +676,32 @@ class CallActivity : CallBaseActivity() {
}
}

if(isGroupConversation){
if (isGroupConversation) {
binding!!.hangupButton.setOnClickListener {
hangup(true, null)
}
}

if(isOneToOneConversation && isModerator){
if (isOneToOneConversation && isModerator) {
binding!!.hangupButton.setOnClickListener {
showPopupMenu()
}
}

if(isOneToOneConversation){
if (isOneToOneConversation) {
binding!!.hangupButton.setOnLongClickListener {
hangup(true, null)
true
}
}

if (isModerator && isGroupConversation) {
binding!!.hangupButton.setOnLongClickListener {
binding!!.hangupButton.setOnLongClickListener {
showPopupMenu()
true
}
}


binding!!.popupMenu.setOnClickListener {
hangup(true, true)
binding!!.popupMenu.visibility = View.GONE
Expand Down Expand Up @@ -741,7 +744,6 @@ class CallActivity : CallBaseActivity() {

private fun showPopupMenu() {
binding!!.popupMenu.visibility = View.VISIBLE

}

private fun createCameraEnumerator() {
Expand Down Expand Up @@ -1377,11 +1379,8 @@ class CallActivity : CallBaseActivity() {
}

override fun dispatchTouchEvent(event: MotionEvent): Boolean {

if (binding!!.popupMenu.visibility == View.VISIBLE) {

if (event.action == MotionEvent.ACTION_DOWN) {

val buttonLocation = IntArray(2)
binding!!.popupMenu.getLocationOnScreen(buttonLocation)

Expand All @@ -1403,7 +1402,6 @@ class CallActivity : CallBaseActivity() {
return super.dispatchTouchEvent(event)
}


fun clickRaiseOrLowerHandButton() {
raiseHandViewModel!!.clickHandButton()
}
Expand Down Expand Up @@ -2026,7 +2024,7 @@ class CallActivity : CallBaseActivity() {
}
}

private fun hangup(shutDownView: Boolean, endCallForAll:Boolean?) {
private fun hangup(shutDownView: Boolean, endCallForAll: Boolean?) {
Log.d(TAG, "hangup! shutDownView=$shutDownView")
if (shutDownView) {
setCallState(CallStatus.LEAVING)
Expand Down Expand Up @@ -2091,7 +2089,7 @@ class CallActivity : CallBaseActivity() {

ApplicationWideCurrentRoomHolder.getInstance().isInCall = false
ApplicationWideCurrentRoomHolder.getInstance().isDialing = false
hangupNetworkCalls(shutDownView,endCallForAll)
hangupNetworkCalls(shutDownView, endCallForAll)
}

private fun hangupNetworkCalls(shutDownView: Boolean, endCallForAll: Boolean?) {
Expand All @@ -2102,7 +2100,7 @@ class CallActivity : CallBaseActivity() {
callParticipantList!!.destroy()
}

ncApi!!.leaveCall(credentials, ApiUtils.getUrlForCall(apiVersion, baseUrl, roomToken!!),endCallForAll)
ncApi!!.leaveCall(credentials, ApiUtils.getUrlForCall(apiVersion, baseUrl, roomToken!!), endCallForAll)
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe(object : Observer<GenericOverall> {
Expand Down Expand Up @@ -2323,7 +2321,7 @@ class CallActivity : CallBaseActivity() {
context.resources.getString(R.string.nc_common_error_sorry),
Snackbar.LENGTH_LONG
).show()
hangup(true,null)
hangup(true, null)
return null
}
peerConnectionWrapper = if (hasMCU && publisher) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ object ConversationUtils {
Participant.ParticipantType.USER_FOLLOWING_LINK == conversation.participantType
}

fun isOneToOneConversation(conversation:ConversationModel):Boolean{
fun isOneToOneConversation(conversation: ConversationModel): Boolean {
return ConversationEnums.ConversationType.ROOM_TYPE_ONE_TO_ONE_CALL == conversation.type
}

fun isGroupConversation(conversation:ConversationModel):Boolean{
fun isGroupConversation(conversation: ConversationModel): Boolean {
return ConversationEnums.ConversationType.ROOM_GROUP_CALL == conversation.type
}

Expand Down Expand Up @@ -67,5 +67,4 @@ object ConversationUtils {
return currentConversation != null &&
currentConversation.type == ConversationEnums.ConversationType.NOTE_TO_SELF
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,6 @@ object BundleKeys {
const val KEY_CREDENTIALS: String = "KEY_CREDENTIALS"
const val KEY_FIELD_MAP: String = "KEY_FIELD_MAP"
const val KEY_CHAT_URL: String = "KEY_CHAT_URL"
const val KEY_IS_ROOM_ONE_TO_ONE : String = "KEY_IS_ROOM_ONE_TO_ONE"
const val KEY_IS_ROOM_GROUP : String = "KEY_IS_ROOM_GROUP"
const val KEY_IS_ROOM_ONE_TO_ONE: String = "KEY_IS_ROOM_ONE_TO_ONE"
const val KEY_IS_ROOM_GROUP: String = "KEY_IS_ROOM_GROUP"
}
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ How to translate with transifex:
<string name="lower_hand">Lower hand</string>
<string name="restrict_join_other_room_while_call">It\'s not possible to join other rooms while being in a call</string>
<string name="call_running_since_one_hour">The call has been running for one hour.</string>
<string name="end_call_for_everyone">End Call for Everyone</string>
<string name="end_call_for_everyone">End Call for everyone</string>

<!-- Picture in Picture -->
<string name="nc_pip_microphone_mute">Mute microphone</string>
Expand Down

0 comments on commit 74c3bd5

Please sign in to comment.