|
|
|
@ -2,7 +2,6 @@ package org.thoughtcrime.securesms.conversation.start.home
|
|
|
|
|
|
|
|
|
|
import androidx.compose.foundation.background
|
|
|
|
|
import androidx.compose.foundation.layout.Column
|
|
|
|
|
import androidx.compose.foundation.layout.ColumnScope
|
|
|
|
|
import androidx.compose.foundation.layout.Spacer
|
|
|
|
|
import androidx.compose.foundation.layout.height
|
|
|
|
|
import androidx.compose.foundation.layout.padding
|
|
|
|
@ -11,18 +10,21 @@ import androidx.compose.foundation.verticalScroll
|
|
|
|
|
import androidx.compose.material.Surface
|
|
|
|
|
import androidx.compose.material.Text
|
|
|
|
|
import androidx.compose.runtime.Composable
|
|
|
|
|
import androidx.compose.runtime.CompositionLocalProvider
|
|
|
|
|
import androidx.compose.ui.Modifier
|
|
|
|
|
import androidx.compose.ui.input.nestedscroll.nestedScroll
|
|
|
|
|
import androidx.compose.ui.platform.rememberNestedScrollInteropConnection
|
|
|
|
|
import androidx.compose.ui.res.stringResource
|
|
|
|
|
import androidx.compose.ui.tooling.preview.Preview
|
|
|
|
|
import androidx.compose.ui.tooling.preview.PreviewParameter
|
|
|
|
|
import androidx.compose.ui.unit.dp
|
|
|
|
|
import network.loki.messenger.R
|
|
|
|
|
import org.thoughtcrime.securesms.conversation.start.NullStartConversationDelegate
|
|
|
|
|
import org.thoughtcrime.securesms.conversation.start.StartConversationDelegate
|
|
|
|
|
import org.thoughtcrime.securesms.ui.Divider
|
|
|
|
|
import org.thoughtcrime.securesms.ui.SmallItemButton
|
|
|
|
|
import org.thoughtcrime.securesms.ui.ItemButton
|
|
|
|
|
import org.thoughtcrime.securesms.ui.LocalDimensions
|
|
|
|
|
import org.thoughtcrime.securesms.ui.LocalItemButtonMinHeight
|
|
|
|
|
import org.thoughtcrime.securesms.ui.PreviewTheme
|
|
|
|
|
import org.thoughtcrime.securesms.ui.SessionColorsParameterProvider
|
|
|
|
|
import org.thoughtcrime.securesms.ui.color.Colors
|
|
|
|
@ -47,47 +49,52 @@ internal fun StartConversationScreen(
|
|
|
|
|
Column(
|
|
|
|
|
modifier = Modifier.verticalScroll(rememberScrollState())
|
|
|
|
|
) {
|
|
|
|
|
Items(accountId, delegate)
|
|
|
|
|
CompositionLocalProvider(LocalItemButtonMinHeight provides 40.dp) {
|
|
|
|
|
ItemButton(
|
|
|
|
|
textId = R.string.messageNew,
|
|
|
|
|
icon = R.drawable.ic_message,
|
|
|
|
|
onClick = delegate::onNewMessageSelected)
|
|
|
|
|
Divider(startIndent = LocalDimensions.current.dividerIndent)
|
|
|
|
|
ItemButton(
|
|
|
|
|
textId = R.string.activity_create_group_title,
|
|
|
|
|
icon = R.drawable.ic_group,
|
|
|
|
|
onClick = delegate::onCreateGroupSelected
|
|
|
|
|
)
|
|
|
|
|
Divider(startIndent = LocalDimensions.current.dividerIndent)
|
|
|
|
|
ItemButton(
|
|
|
|
|
textId = R.string.dialog_join_community_title,
|
|
|
|
|
icon = R.drawable.ic_globe,
|
|
|
|
|
onClick = delegate::onJoinCommunitySelected
|
|
|
|
|
)
|
|
|
|
|
Divider(startIndent = LocalDimensions.current.dividerIndent)
|
|
|
|
|
ItemButton(
|
|
|
|
|
textId = R.string.activity_settings_invite_button_title,
|
|
|
|
|
icon = R.drawable.ic_invite_friend,
|
|
|
|
|
Modifier.contentDescription(R.string.AccessibilityId_invite_friend_button),
|
|
|
|
|
onClick = delegate::onInviteFriend
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
Column(
|
|
|
|
|
modifier = Modifier
|
|
|
|
|
.padding(horizontal = LocalDimensions.current.margin)
|
|
|
|
|
.padding(top = LocalDimensions.current.itemSpacing)
|
|
|
|
|
.padding(bottom = LocalDimensions.current.margin)
|
|
|
|
|
) {
|
|
|
|
|
Text(stringResource(R.string.accountIdYours), style = xl)
|
|
|
|
|
Spacer(modifier = Modifier.height(LocalDimensions.current.xxxsItemSpacing))
|
|
|
|
|
Text(
|
|
|
|
|
text = stringResource(R.string.qrYoursDescription),
|
|
|
|
|
color = LocalColors.current.textSecondary,
|
|
|
|
|
style = small
|
|
|
|
|
)
|
|
|
|
|
Spacer(modifier = Modifier.height(LocalDimensions.current.smallItemSpacing))
|
|
|
|
|
QrImage(string = accountId, Modifier.contentDescription(R.string.AccessibilityId_qr_code))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Items of the StartConversationHome screen. Use in a [Column]
|
|
|
|
|
*/
|
|
|
|
|
@Suppress("UnusedReceiverParameter")
|
|
|
|
|
@Composable
|
|
|
|
|
private fun ColumnScope.Items(
|
|
|
|
|
accountId: String,
|
|
|
|
|
delegate: StartConversationDelegate
|
|
|
|
|
) {
|
|
|
|
|
SmallItemButton(textId = R.string.messageNew, icon = R.drawable.ic_message, onClick = delegate::onNewMessageSelected)
|
|
|
|
|
Divider(startIndent = LocalDimensions.current.dividerIndent)
|
|
|
|
|
SmallItemButton(textId = R.string.activity_create_group_title, icon = R.drawable.ic_group, onClick = delegate::onCreateGroupSelected)
|
|
|
|
|
Divider(startIndent = LocalDimensions.current.dividerIndent)
|
|
|
|
|
SmallItemButton(textId = R.string.dialog_join_community_title, icon = R.drawable.ic_globe, onClick = delegate::onJoinCommunitySelected)
|
|
|
|
|
Divider(startIndent = LocalDimensions.current.dividerIndent)
|
|
|
|
|
SmallItemButton(textId = R.string.activity_settings_invite_button_title, icon = R.drawable.ic_invite_friend, Modifier.contentDescription(
|
|
|
|
|
R.string.AccessibilityId_invite_friend_button), onClick = delegate::onInviteFriend)
|
|
|
|
|
Column(
|
|
|
|
|
modifier = Modifier
|
|
|
|
|
.padding(horizontal = LocalDimensions.current.margin)
|
|
|
|
|
.padding(top = LocalDimensions.current.itemSpacing)
|
|
|
|
|
.padding(bottom = LocalDimensions.current.margin)
|
|
|
|
|
) {
|
|
|
|
|
Text(stringResource(R.string.accountIdYours), style = xl)
|
|
|
|
|
Spacer(modifier = Modifier.height(LocalDimensions.current.xxxsItemSpacing))
|
|
|
|
|
Text(
|
|
|
|
|
text = stringResource(R.string.qrYoursDescription),
|
|
|
|
|
color = LocalColors.current.textSecondary,
|
|
|
|
|
style = small
|
|
|
|
|
)
|
|
|
|
|
Spacer(modifier = Modifier.height(LocalDimensions.current.smallItemSpacing))
|
|
|
|
|
QrImage(string = accountId, Modifier.contentDescription(R.string.AccessibilityId_qr_code))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Preview
|
|
|
|
|
@Composable
|
|
|
|
|
private fun PreviewStartConversationScreen(
|
|
|
|
|