Displays % of uptime in relay settings
This commit is contained in:
+5
-10
@@ -104,17 +104,12 @@ fun BasicRelaySetupInfoClickableRow(
|
|||||||
|
|
||||||
UsedBy(item, accountViewModel, nav)
|
UsedBy(item, accountViewModel, nav)
|
||||||
|
|
||||||
Row(
|
RelayStatusRow(
|
||||||
verticalAlignment = Alignment.CenterVertically,
|
item = item,
|
||||||
|
onClick = onClick,
|
||||||
modifier = ReactionRowHeightChatMaxWidth,
|
modifier = ReactionRowHeightChatMaxWidth,
|
||||||
) {
|
accountViewModel = accountViewModel,
|
||||||
RelayStatusRow(
|
)
|
||||||
item = item,
|
|
||||||
onClick = onClick,
|
|
||||||
modifier = Modifier.weight(1f),
|
|
||||||
accountViewModel = accountViewModel,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+177
-133
@@ -20,8 +20,11 @@
|
|||||||
*/
|
*/
|
||||||
package com.vitorpamplona.amethyst.ui.screen.loggedIn.relays.common
|
package com.vitorpamplona.amethyst.ui.screen.loggedIn.relays.common
|
||||||
|
|
||||||
|
import android.R.attr.onClick
|
||||||
import androidx.compose.foundation.gestures.detectTapGestures
|
import androidx.compose.foundation.gestures.detectTapGestures
|
||||||
|
import androidx.compose.foundation.layout.Arrangement
|
||||||
import androidx.compose.foundation.layout.Row
|
import androidx.compose.foundation.layout.Row
|
||||||
|
import androidx.compose.foundation.layout.padding
|
||||||
import androidx.compose.material.icons.Icons
|
import androidx.compose.material.icons.Icons
|
||||||
import androidx.compose.material.icons.filled.DeleteSweep
|
import androidx.compose.material.icons.filled.DeleteSweep
|
||||||
import androidx.compose.material.icons.filled.Download
|
import androidx.compose.material.icons.filled.Download
|
||||||
@@ -31,13 +34,18 @@ import androidx.compose.material3.Icon
|
|||||||
import androidx.compose.material3.MaterialTheme
|
import androidx.compose.material3.MaterialTheme
|
||||||
import androidx.compose.material3.Text
|
import androidx.compose.material3.Text
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
|
import androidx.compose.ui.Alignment
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.input.pointer.pointerInput
|
import androidx.compose.ui.input.pointer.pointerInput
|
||||||
import androidx.compose.ui.res.stringResource
|
import androidx.compose.ui.res.stringResource
|
||||||
|
import androidx.compose.ui.tooling.preview.Preview
|
||||||
|
import androidx.compose.ui.unit.dp
|
||||||
import com.vitorpamplona.amethyst.R
|
import com.vitorpamplona.amethyst.R
|
||||||
|
import com.vitorpamplona.amethyst.model.LocalCache.users
|
||||||
import com.vitorpamplona.amethyst.service.countToHumanReadable
|
import com.vitorpamplona.amethyst.service.countToHumanReadable
|
||||||
import com.vitorpamplona.amethyst.service.countToHumanReadableBytes
|
import com.vitorpamplona.amethyst.service.countToHumanReadableBytes
|
||||||
import com.vitorpamplona.amethyst.ui.screen.loggedIn.AccountViewModel
|
import com.vitorpamplona.amethyst.ui.screen.loggedIn.AccountViewModel
|
||||||
|
import com.vitorpamplona.amethyst.ui.screen.loggedIn.mockAccountViewModel
|
||||||
import com.vitorpamplona.amethyst.ui.stringRes
|
import com.vitorpamplona.amethyst.ui.stringRes
|
||||||
import com.vitorpamplona.amethyst.ui.theme.Font12SP
|
import com.vitorpamplona.amethyst.ui.theme.Font12SP
|
||||||
import com.vitorpamplona.amethyst.ui.theme.HalfStartPadding
|
import com.vitorpamplona.amethyst.ui.theme.HalfStartPadding
|
||||||
@@ -46,6 +54,35 @@ import com.vitorpamplona.amethyst.ui.theme.allGoodColor
|
|||||||
import com.vitorpamplona.amethyst.ui.theme.placeholderText
|
import com.vitorpamplona.amethyst.ui.theme.placeholderText
|
||||||
import com.vitorpamplona.amethyst.ui.theme.redColorOnSecondSurface
|
import com.vitorpamplona.amethyst.ui.theme.redColorOnSecondSurface
|
||||||
import com.vitorpamplona.amethyst.ui.theme.warningColor
|
import com.vitorpamplona.amethyst.ui.theme.warningColor
|
||||||
|
import com.vitorpamplona.quartz.nip01Core.relay.client.stats.RelayStat
|
||||||
|
import com.vitorpamplona.quartz.nip01Core.relay.normalizer.normalizeRelayUrl
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
@Preview
|
||||||
|
fun RelayStatusRowPreview() {
|
||||||
|
RelayStatusRow(
|
||||||
|
BasicRelaySetupInfo(
|
||||||
|
"nos.lol".normalizeRelayUrl(),
|
||||||
|
relayStat =
|
||||||
|
RelayStat(
|
||||||
|
receivedBytes = 10000,
|
||||||
|
sentBytes = 10000,
|
||||||
|
spamCounter = 3,
|
||||||
|
errorCounter = 4,
|
||||||
|
pingInMs = 300,
|
||||||
|
compression = true,
|
||||||
|
connectionTentatives = 20,
|
||||||
|
connectionCompleted = 10,
|
||||||
|
),
|
||||||
|
paidRelay = true,
|
||||||
|
forcesTor = true,
|
||||||
|
users = listOf(),
|
||||||
|
),
|
||||||
|
onClick = {},
|
||||||
|
modifier = Modifier,
|
||||||
|
accountViewModel = mockAccountViewModel(),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
fun RelayStatusRow(
|
fun RelayStatusRow(
|
||||||
@@ -55,144 +92,151 @@ fun RelayStatusRow(
|
|||||||
accountViewModel: AccountViewModel,
|
accountViewModel: AccountViewModel,
|
||||||
) {
|
) {
|
||||||
Row(
|
Row(
|
||||||
modifier =
|
verticalAlignment = Alignment.CenterVertically,
|
||||||
modifier.pointerInput(Unit) {
|
horizontalArrangement = Arrangement.SpaceEvenly,
|
||||||
detectTapGestures(
|
modifier = modifier,
|
||||||
onTap = {
|
|
||||||
onClick()
|
|
||||||
},
|
|
||||||
onLongPress = {
|
|
||||||
accountViewModel.toastManager.toast(
|
|
||||||
R.string.read_from_relay,
|
|
||||||
R.string.read_from_relay_description,
|
|
||||||
)
|
|
||||||
},
|
|
||||||
)
|
|
||||||
},
|
|
||||||
) {
|
) {
|
||||||
Icon(
|
Row(
|
||||||
imageVector = Icons.Default.Download,
|
modifier =
|
||||||
contentDescription = stringRes(R.string.read_from_relay),
|
Modifier.weight(1f).pointerInput(Unit) {
|
||||||
modifier = Size15Modifier,
|
detectTapGestures(
|
||||||
tint = MaterialTheme.colorScheme.allGoodColor,
|
onTap = {
|
||||||
)
|
onClick()
|
||||||
|
},
|
||||||
Text(
|
onLongPress = {
|
||||||
text = countToHumanReadableBytes(item.relayStat.receivedBytes),
|
accountViewModel.toastManager.toast(
|
||||||
maxLines = 1,
|
R.string.read_from_relay,
|
||||||
fontSize = Font12SP,
|
R.string.read_from_relay_description,
|
||||||
modifier = HalfStartPadding,
|
)
|
||||||
color = MaterialTheme.colorScheme.placeholderText,
|
},
|
||||||
)
|
)
|
||||||
}
|
|
||||||
|
|
||||||
Row(
|
|
||||||
modifier =
|
|
||||||
modifier.pointerInput(Unit) {
|
|
||||||
detectTapGestures(
|
|
||||||
onTap = {
|
|
||||||
onClick()
|
|
||||||
},
|
|
||||||
onLongPress = {
|
|
||||||
accountViewModel.toastManager.toast(
|
|
||||||
R.string.write_to_relay,
|
|
||||||
R.string.write_to_relay_description,
|
|
||||||
)
|
|
||||||
},
|
|
||||||
)
|
|
||||||
},
|
|
||||||
) {
|
|
||||||
Icon(
|
|
||||||
imageVector = Icons.Default.Upload,
|
|
||||||
stringRes(R.string.write_to_relay),
|
|
||||||
modifier = Size15Modifier,
|
|
||||||
tint = MaterialTheme.colorScheme.allGoodColor,
|
|
||||||
)
|
|
||||||
|
|
||||||
Text(
|
|
||||||
text = countToHumanReadableBytes(item.relayStat.sentBytes),
|
|
||||||
maxLines = 1,
|
|
||||||
fontSize = Font12SP,
|
|
||||||
modifier = HalfStartPadding,
|
|
||||||
color = MaterialTheme.colorScheme.placeholderText,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
Row(
|
|
||||||
modifier =
|
|
||||||
modifier.pointerInput(Unit) {
|
|
||||||
detectTapGestures(
|
|
||||||
onTap = {
|
|
||||||
onClick()
|
|
||||||
},
|
|
||||||
onLongPress = {
|
|
||||||
accountViewModel.toastManager.toast(
|
|
||||||
R.string.errors,
|
|
||||||
R.string.connection_success_rate_description,
|
|
||||||
)
|
|
||||||
},
|
|
||||||
)
|
|
||||||
},
|
|
||||||
) {
|
|
||||||
val successRate = ((item.relayStat.connectionCompleted / item.relayStat.connectionTentatives.toFloat()) * 100).toInt()
|
|
||||||
|
|
||||||
Icon(
|
|
||||||
imageVector = Icons.Default.SyncProblem,
|
|
||||||
stringRes(R.string.errors),
|
|
||||||
modifier = Size15Modifier,
|
|
||||||
tint =
|
|
||||||
if (successRate < 0.1) {
|
|
||||||
MaterialTheme.colorScheme.redColorOnSecondSurface
|
|
||||||
} else if (successRate < 0.60) {
|
|
||||||
MaterialTheme.colorScheme.warningColor
|
|
||||||
} else {
|
|
||||||
MaterialTheme.colorScheme.allGoodColor
|
|
||||||
},
|
},
|
||||||
)
|
) {
|
||||||
|
Icon(
|
||||||
|
imageVector = Icons.Default.Download,
|
||||||
|
contentDescription = stringRes(R.string.read_from_relay),
|
||||||
|
modifier = Size15Modifier,
|
||||||
|
tint = MaterialTheme.colorScheme.allGoodColor,
|
||||||
|
)
|
||||||
|
|
||||||
Text(
|
Text(
|
||||||
text = stringResource(R.string.uptime, successRate),
|
text = countToHumanReadableBytes(item.relayStat.receivedBytes),
|
||||||
maxLines = 1,
|
maxLines = 1,
|
||||||
fontSize = Font12SP,
|
fontSize = Font12SP,
|
||||||
modifier = HalfStartPadding,
|
modifier = HalfStartPadding,
|
||||||
color = MaterialTheme.colorScheme.placeholderText,
|
color = MaterialTheme.colorScheme.placeholderText,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
Row(
|
Row(
|
||||||
modifier =
|
modifier =
|
||||||
modifier.pointerInput(Unit) {
|
Modifier.weight(1f).pointerInput(Unit) {
|
||||||
detectTapGestures(
|
detectTapGestures(
|
||||||
onTap = {
|
onTap = {
|
||||||
onClick()
|
onClick()
|
||||||
},
|
},
|
||||||
onLongPress = {
|
onLongPress = {
|
||||||
accountViewModel.toastManager.toast(
|
accountViewModel.toastManager.toast(
|
||||||
R.string.spam,
|
R.string.write_to_relay,
|
||||||
R.string.spam_description,
|
R.string.write_to_relay_description,
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
},
|
|
||||||
) {
|
|
||||||
Icon(
|
|
||||||
imageVector = Icons.Default.DeleteSweep,
|
|
||||||
stringRes(R.string.spam),
|
|
||||||
modifier = Size15Modifier,
|
|
||||||
tint =
|
|
||||||
if (item.relayStat.spamCounter > 0) {
|
|
||||||
MaterialTheme.colorScheme.warningColor
|
|
||||||
} else {
|
|
||||||
MaterialTheme.colorScheme.allGoodColor
|
|
||||||
},
|
},
|
||||||
)
|
) {
|
||||||
|
Icon(
|
||||||
|
imageVector = Icons.Default.Upload,
|
||||||
|
stringRes(R.string.write_to_relay),
|
||||||
|
modifier = Size15Modifier,
|
||||||
|
tint = MaterialTheme.colorScheme.allGoodColor,
|
||||||
|
)
|
||||||
|
|
||||||
Text(
|
Text(
|
||||||
text = countToHumanReadable(item.relayStat.spamCounter, "spam"),
|
text = countToHumanReadableBytes(item.relayStat.sentBytes),
|
||||||
maxLines = 1,
|
maxLines = 1,
|
||||||
fontSize = Font12SP,
|
fontSize = Font12SP,
|
||||||
modifier = HalfStartPadding,
|
modifier = HalfStartPadding,
|
||||||
color = MaterialTheme.colorScheme.placeholderText,
|
color = MaterialTheme.colorScheme.placeholderText,
|
||||||
)
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
Row(
|
||||||
|
modifier =
|
||||||
|
Modifier.weight(1.3f).pointerInput(Unit) {
|
||||||
|
detectTapGestures(
|
||||||
|
onTap = {
|
||||||
|
onClick()
|
||||||
|
},
|
||||||
|
onLongPress = {
|
||||||
|
accountViewModel.toastManager.toast(
|
||||||
|
R.string.errors,
|
||||||
|
R.string.connection_success_rate_description,
|
||||||
|
)
|
||||||
|
},
|
||||||
|
)
|
||||||
|
},
|
||||||
|
) {
|
||||||
|
val successRate = ((item.relayStat.connectionCompleted / item.relayStat.connectionTentatives.toFloat()) * 100).toInt()
|
||||||
|
|
||||||
|
Icon(
|
||||||
|
imageVector = Icons.Default.SyncProblem,
|
||||||
|
stringRes(R.string.errors),
|
||||||
|
modifier = Size15Modifier,
|
||||||
|
tint =
|
||||||
|
if (successRate < 0.1) {
|
||||||
|
MaterialTheme.colorScheme.redColorOnSecondSurface
|
||||||
|
} else if (successRate < 0.60) {
|
||||||
|
MaterialTheme.colorScheme.warningColor
|
||||||
|
} else {
|
||||||
|
MaterialTheme.colorScheme.allGoodColor
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
Text(
|
||||||
|
text = stringResource(R.string.uptime, successRate),
|
||||||
|
maxLines = 1,
|
||||||
|
fontSize = Font12SP,
|
||||||
|
modifier = HalfStartPadding,
|
||||||
|
color = MaterialTheme.colorScheme.placeholderText,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
Row(
|
||||||
|
modifier =
|
||||||
|
Modifier.weight(0.9f).padding(end = 5.dp).pointerInput(Unit) {
|
||||||
|
detectTapGestures(
|
||||||
|
onTap = {
|
||||||
|
onClick()
|
||||||
|
},
|
||||||
|
onLongPress = {
|
||||||
|
accountViewModel.toastManager.toast(
|
||||||
|
R.string.spam,
|
||||||
|
R.string.spam_description,
|
||||||
|
)
|
||||||
|
},
|
||||||
|
)
|
||||||
|
},
|
||||||
|
horizontalArrangement = Arrangement.End,
|
||||||
|
) {
|
||||||
|
Icon(
|
||||||
|
imageVector = Icons.Default.DeleteSweep,
|
||||||
|
stringRes(R.string.spam),
|
||||||
|
modifier = Size15Modifier,
|
||||||
|
tint =
|
||||||
|
if (item.relayStat.spamCounter > 0) {
|
||||||
|
MaterialTheme.colorScheme.warningColor
|
||||||
|
} else {
|
||||||
|
MaterialTheme.colorScheme.allGoodColor
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
Text(
|
||||||
|
text = countToHumanReadable(item.relayStat.spamCounter, "spam"),
|
||||||
|
maxLines = 1,
|
||||||
|
fontSize = Font12SP,
|
||||||
|
modifier = HalfStartPadding,
|
||||||
|
color = MaterialTheme.colorScheme.placeholderText,
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1744,5 +1744,5 @@
|
|||||||
<string name="following_accounts">Following %1$d accounts…</string>
|
<string name="following_accounts">Following %1$d accounts…</string>
|
||||||
<string name="import_follows_tips">"Enter the profile of a friend or community leader. You can use their npub, NIP-05 address, or a Namecoin name like alice@example.bit or id/alice for blockchain-verified identities."</string>
|
<string name="import_follows_tips">"Enter the profile of a friend or community leader. You can use their npub, NIP-05 address, or a Namecoin name like alice@example.bit or id/alice for blockchain-verified identities."</string>
|
||||||
<string name="select_all">Select All</string>
|
<string name="select_all">Select All</string>
|
||||||
<string name="uptime">%1$d% uptime</string>
|
<string name="uptime">%1$d%% uptime</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
|||||||
Reference in New Issue
Block a user