Skip to content

Commit

Permalink
fix: max accounts dialog prevent dismiss (WPB-4818) (#2260)
Browse files Browse the repository at this point in the history
  • Loading branch information
yamilmedina authored and github-actions[bot] committed Sep 22, 2023
1 parent b6dd35d commit 44a4c5b
Showing 1 changed file with 55 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/*
* Wire
* Copyright (C) 2023 Wire Swiss GmbH
*
* 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.wire.android.ui.common.dialogs

import androidx.compose.runtime.Composable
import androidx.compose.ui.res.stringResource
import com.wire.android.R
import com.wire.android.ui.common.VisibilityState
import com.wire.android.ui.common.WireDialog
import com.wire.android.ui.common.WireDialogButtonProperties
import com.wire.android.ui.common.WireDialogButtonType
import com.wire.android.ui.common.visbility.VisibilityState
import com.wire.android.ui.common.wireDialogPropertiesBuilder

// todo: parametrize the dialog with the number of accounts using BuildConfig
@Composable
fun MaxAccountsReachedDialogContent(
dialogState: VisibilityState<MaxAccountsReachedDialogState>,
onActionButtonClicked: () -> Unit
) {
VisibilityState(dialogState) { state ->
WireDialog(
title = stringResource(id = R.string.max_account_reached_dialog_title),
text = stringResource(id = R.string.max_account_reached_dialog_message),
onDismiss = dialogState::dismiss,
optionButton1Properties = WireDialogButtonProperties(
text = stringResource(R.string.label_ok),
onClick = onActionButtonClicked,
type = WireDialogButtonType.Primary
),
properties = wireDialogPropertiesBuilder(
dismissOnBackPress = false,
dismissOnClickOutside = false
)
)
}
}

0 comments on commit 44a4c5b

Please sign in to comment.