Skip to content

Commit

Permalink
WIP: button to collapse grouplist and peerlist in groups
Browse files Browse the repository at this point in the history
  • Loading branch information
zoff99 committed Nov 20, 2024
1 parent 0615ce8 commit b461973
Show file tree
Hide file tree
Showing 7 changed files with 115 additions and 50 deletions.
13 changes: 10 additions & 3 deletions src/main/kotlin/Main.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
@file:OptIn(ExperimentalComposeUiApi::class, ExperimentalFoundationApi::class)

import androidx.compose.animation.animateContentSize
import androidx.compose.desktop.ui.tooling.preview.Preview
import androidx.compose.foundation.BorderStroke
import androidx.compose.foundation.ExperimentalFoundationApi
Expand Down Expand Up @@ -59,7 +60,6 @@ import androidx.compose.runtime.CompositionLocalProvider
import androidx.compose.runtime.LaunchedEffect
import androidx.compose.runtime.collectAsState
import androidx.compose.runtime.getValue
import androidx.compose.runtime.key
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.remember
import androidx.compose.runtime.rememberCoroutineScope
Expand Down Expand Up @@ -226,8 +226,10 @@ val CONTACT_COLUMN_WIDTH = 230.dp
const val CONTACT_COLUMN_CONTACTNAME_LEN_THRESHOLD = 13
const val PUSHURL_SHOW_LEN_THRESHOLD = 60
val GROUPS_COLUMN_WIDTH = 190.dp
val GROUPS_COLLAPSED_COLUMN_WIDTH = 50.dp
const val GROUPS_COLUMN_GROUPNAME_LEN_THRESHOLD = 13
val GROUP_PEER_COLUMN_WIDTH = 165.dp
val GROUP_COLLAPSED_PEER_COLUMN_WIDTH = 45.dp
const val GROUP_PEER_COLUMN_PEERNAME_LEN_THRESHOLD = 12
val MESSAGE_INPUT_LINE_HEIGHT = 58.dp
val MAIN_TOP_TAB_HEIGHT = 160.dp
Expand Down Expand Up @@ -1229,8 +1231,11 @@ fun App()
val groupfocusRequester = remember { FocusRequester() }
val groups by groupstore.stateFlow.collectAsState()
val grouppeers by grouppeerstore.stateFlow.collectAsState()
val globalstore__ by globalstore.stateFlow.collectAsState()
Row(modifier = Modifier.fillMaxWidth().randomDebugBorder()) {
GroupList(groupList = groups)
Box(modifier = Modifier.animateContentSize()) {
GroupList(groupList = groups, peercollapsed = globalstore__.peerListCollapse)
}
VerticalDivider()
val groupsettings by groupsettingsstore.stateFlow.collectAsState()
if ((groupsettings.visible) && (groups.selectedGroupId != null)) // show group settings
Expand All @@ -1245,7 +1250,9 @@ fun App()
load_grouppeers(groups.selectedGroupId!!)
}
val GroupPeerListScope = rememberCoroutineScope()
GroupPeerList(grouppeerList = grouppeers)
Box(modifier = Modifier.animateContentSize()) {
GroupPeerList(grouppeerList = grouppeers, peercollapsed = globalstore__.peerListCollapse)
}
VerticalDivider()
if (groups.selectedGroupId == null)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ data class globalstore_state(
val contacts_unread_message_count: Int = 0,
val contacts_unread_group_message_count: Int = 0,
val firstRun: Boolean = false,
val peerListCollapse: Boolean = false,
val startupSelfname: String = "",
val ui_scale: Float = 1.0f,
val ui_density: Float = 1.0f,
Expand All @@ -38,6 +39,7 @@ interface GlobalStore {
fun updateFirstRun(value: Boolean)
fun updateStartupSelfname(value: String)
fun updateUiScale(value: Float)
fun updatePeerListCollapse(value: Boolean)
fun updateUiDensity(value: Float)
fun setDefaultDensity(value: Float)
fun isMinimized(): Boolean
Expand All @@ -46,6 +48,7 @@ interface GlobalStore {
fun getStartupSelfname(): String
fun loadUiScale()
fun getUiScale(): Float
fun isPeerListCollapse(): Boolean
fun loadUiDensity()
fun getUiDensity(): Float
fun setToxRunning(value: Boolean)
Expand Down Expand Up @@ -86,6 +89,11 @@ fun CoroutineScope.createGlobalStore(): GlobalStore {
mutableStateFlow.value = state.copy(firstRun = value)
}

override fun updatePeerListCollapse(value: Boolean)
{
mutableStateFlow.value = state.copy(peerListCollapse = value)
}

override fun updateStartupSelfname(value: String)
{
mutableStateFlow.value = state.copy(startupSelfname = value)
Expand Down Expand Up @@ -139,6 +147,11 @@ fun CoroutineScope.createGlobalStore(): GlobalStore {
return state.firstRun
}

override fun isPeerListCollapse(): Boolean
{
return state.peerListCollapse
}

override fun getStartupSelfname(): String
{
return state.startupSelfname
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ import androidx.compose.material.Text
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.LockPerson
import androidx.compose.material.icons.filled.Public
import androidx.compose.material.icons.filled.Videocam
import androidx.compose.runtime.Composable
import androidx.compose.runtime.collectAsState
import androidx.compose.runtime.getValue
Expand All @@ -49,12 +48,9 @@ import androidx.compose.ui.text.style.TextOverflow.Companion.Ellipsis
import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp
import com.zoffcc.applications.trifa.HelperGroup.tox_group_by_groupid__wrapper
import com.zoffcc.applications.trifa.Log
import com.zoffcc.applications.trifa.MainActivity.Companion.tox_group_offline_peer_count
import com.zoffcc.applications.trifa.TAG
import com.zoffcc.applications.trifa.ToxVars
import com.zoffcc.applications.trifa.ToxVars.TOX_GROUP_PRIVACY_STATE
import com.zoffcc.applications.trifa.TrifaToxService.Companion.orma
import globalgrpstoreunreadmsgs
import org.briarproject.briar.desktop.ui.NumberBadge
import org.briarproject.briar.desktop.ui.Tooltip
Expand All @@ -63,16 +59,18 @@ import randomDebugBorder
@Composable
@Preview
fun test__peercount_circle() = Row() {
PeerCountCircle(peerCount = 236)
val peercollapsed = false
PeerCountCircle(peercollapsed = peercollapsed, peerCount = 236)
}

@OptIn(ExperimentalFoundationApi::class)
@Composable
fun GroupItemView(
groupItem: GroupItem,
modifier: Modifier = Modifier,
peercollapsed: Boolean,
) = Row(
horizontalArrangement = spacedBy(8.dp),
horizontalArrangement = spacedBy(if(peercollapsed) 0.dp else 8.dp),
verticalAlignment = CenterVertically,
modifier = modifier.height(IntrinsicSize.Min)
) {
Expand All @@ -89,14 +87,16 @@ fun GroupItemView(
description = "Private Group"
}
Tooltip(text = description) {
Icon(imageVector = icon, modifier = Modifier.height(20.dp), contentDescription = description)
Icon(imageVector = icon, modifier = Modifier.height(if(peercollapsed) 8.dp else 20.dp),
contentDescription = description)
}
Spacer(modifier = Modifier.randomDebugBorder().width(2.dp))
if(!peercollapsed) { Spacer(modifier = Modifier.randomDebugBorder().width(2.dp)) }
Box() {
Column(Modifier.align(BottomStart).randomDebugBorder()) {
Spacer(modifier = Modifier.randomDebugBorder().height(16.dp))
GroupItemViewInfo(
groupItem = groupItem,
peercollapsed = peercollapsed
)
}
val current_groupstorerunreadmessagesstore by globalgrpstoreunreadmsgs.stateFlow.collectAsState()
Expand All @@ -107,35 +107,40 @@ fun GroupItemView(
)
}
}
ConnectionIndicator(
modifier = Modifier.padding(end = 1.dp).requiredSize(16.dp),
isConnected = if (groupItem.isConnected == 0) 0 else 2
)
if(!peercollapsed)
{
ConnectionIndicator(
modifier = Modifier.padding(end = 1.dp).requiredSize(16.dp),
isConnected = if (groupItem.isConnected == 0) 0 else 2
)
}
PeerCountCircle(
modifier = Modifier.padding(end = 1.dp).requiredSize(28.dp),
peerCount = groupItem.numPeers.toLong()
peercollapsed = peercollapsed,
peerCount = groupItem.numPeers.toLong(),
modifier = Modifier.padding(end = 1.dp).requiredSize(if(peercollapsed) 13.dp else 28.dp)
)
}

@Composable
fun PeerCountCircle(
modifier: Modifier = Modifier.size(25.dp),
peercollapsed: Boolean,
peerCount: Long,
modifier: Modifier = Modifier.size(if (peercollapsed) 12.dp else 25.dp),
) = Box(
modifier = modifier
.border(1.dp, Color.Black, CircleShape)
.border(if(peercollapsed) 0.dp else 1.dp, Color.Black, CircleShape)
.background(Color.LightGray, CircleShape)
)
{
Text(text = "" + peerCount,
modifier = Modifier.align(Alignment.Center),
style = TextStyle(fontSize = 12.sp)
style = TextStyle(fontSize = if(peercollapsed) 8.sp else 12.sp)
)
}

@OptIn(ExperimentalFoundationApi::class)
@Composable
private fun GroupItemViewInfo(groupItem: GroupItem) = Column(
private fun GroupItemViewInfo(groupItem: GroupItem, peercollapsed: Boolean) = Column(
horizontalAlignment = Start,
modifier = Modifier.padding(start = 0.dp).randomDebugBorder()
) {
Expand All @@ -151,8 +156,8 @@ private fun GroupItemViewInfo(groupItem: GroupItem) = Column(
+ "Offline Peers: " + offline_num_peers + "\n"
) {
Text(
text = groupItem.name,
style = if (groupItem.name.length > GROUPS_COLUMN_GROUPNAME_LEN_THRESHOLD)
text = if(peercollapsed) groupItem.name.take(2) else groupItem.name,
style = if ((groupItem.name.length > GROUPS_COLUMN_GROUPNAME_LEN_THRESHOLD) && (!peercollapsed))
MaterialTheme.typography.body1.copy(fontSize = 13.sp) else MaterialTheme.typography.body1,
maxLines = 1,
overflow = Ellipsis,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package org.briarproject.briar.desktop.contact

import GROUPITEM_HEIGHT
import GROUPS_COLLAPSED_COLUMN_WIDTH
import GROUPS_COLUMN_WIDTH
import androidx.compose.foundation.ContextMenuArea
import androidx.compose.foundation.ContextMenuItem
Expand All @@ -10,8 +11,6 @@ import androidx.compose.foundation.lazy.LazyColumn
import androidx.compose.foundation.lazy.items
import androidx.compose.foundation.selection.selectableGroup
import androidx.compose.runtime.Composable
import androidx.compose.runtime.collectAsState
import androidx.compose.runtime.getValue
import androidx.compose.runtime.rememberCoroutineScope
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
Expand All @@ -36,8 +35,9 @@ import org.briarproject.briar.desktop.utils.InternationalizationUtils.i18n
@Composable
fun GroupList(
groupList: StateGroups,
peercollapsed: Boolean,
) = Column(
modifier = Modifier.fillMaxHeight().width(GROUPS_COLUMN_WIDTH).background(Color.Transparent),
modifier = Modifier.fillMaxHeight().width(if(peercollapsed) GROUPS_COLLAPSED_COLUMN_WIDTH else GROUPS_COLUMN_WIDTH).background(Color.Transparent),
) {
VerticallyScrollableArea(modifier = Modifier.fillMaxSize()) { scrollState ->
LazyColumn(
Expand Down Expand Up @@ -69,7 +69,7 @@ fun GroupList(
.heightIn(min = GROUPITEM_HEIGHT)
.fillMaxWidth()
.padding(vertical = 8.dp)
.padding(start = 3.dp, end = 3.dp)
.padding(start = if(peercollapsed) 2.dp else 3.dp, end = if(peercollapsed) 0.dp else 3.dp)
ContextMenuArea(items = {
listOf(
ContextMenuItem("delete") {
Expand All @@ -83,7 +83,8 @@ fun GroupList(
}) {
GroupItemView(
groupItem = item,
modifier = modifier
modifier = modifier,
peercollapsed = peercollapsed
)
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
package org.briarproject.briar.desktop.contact

import GROUP_COLLAPSED_PEER_COLUMN_WIDTH
import GROUP_PEER_COLUMN_WIDTH
import GROUP_PEER_HEIGHT
import androidx.compose.animation.animateContentSize
import androidx.compose.animation.core.tween
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.*
import androidx.compose.foundation.lazy.LazyColumn
Expand All @@ -16,7 +19,6 @@ import androidx.compose.ui.unit.dp
import com.zoffcc.applications.trifa.HelperGroup
import com.zoffcc.applications.trifa.MainActivity.Companion.tox_group_self_get_public_key
import com.zoffcc.applications.trifa.StateGroupPeers
import grouppeerstore
import org.briarproject.briar.desktop.ui.ListItemView
import org.briarproject.briar.desktop.ui.VerticallyScrollableArea
import org.briarproject.briar.desktop.utils.InternationalizationUtils.i18n
Expand All @@ -27,8 +29,11 @@ import kotlin.math.min
@Composable
fun GroupPeerList(
grouppeerList: StateGroupPeers,
peercollapsed: Boolean,
) = Column(
modifier = Modifier.fillMaxHeight().width(GROUP_PEER_COLUMN_WIDTH).background(Color.Transparent),
modifier = Modifier.fillMaxHeight().
width(if(peercollapsed) GROUP_COLLAPSED_PEER_COLUMN_WIDTH else GROUP_PEER_COLUMN_WIDTH).
background(Color.Transparent)
) {
VerticallyScrollableArea(modifier = Modifier.randomDebugBorder().fillMaxSize()) { scrollState ->
LazyColumn(
Expand All @@ -55,10 +60,11 @@ fun GroupPeerList(
.fillMaxWidth()
.background(GroupPeerListBgColor(item))
.padding(vertical = 8.dp)
.padding(start = 3.dp, end = 3.dp)
.padding(start = if(peercollapsed) 2.dp else 3.dp, end = if(peercollapsed) 0.dp else 3.dp)
GrouppeerItemView(
grouppeerItem = item,
modifier = modifier
modifier = modifier,
peercollapsed = peercollapsed
)
}
}
Expand Down
Loading

0 comments on commit b461973

Please sign in to comment.