-
Notifications
You must be signed in to change notification settings - Fork 176
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Room List] Show offline indicator when the device is offline #239
Changes from 3 commits
73d12e8
1aaf35d
d0765f7
5c3274e
a9940e4
3171a5f
3dbc173
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Add a `NetworkMonitor` component to track the network connection status |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* Copyright (c) 2022 New Vector Ltd | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
// TODO: Remove once https://youtrack.jetbrains.com/issue/KTIJ-19369 is fixed | ||
@Suppress("DSL_SCOPE_VIOLATION") | ||
plugins { | ||
id("io.element.android-compose-library") | ||
} | ||
|
||
android { | ||
namespace = "io.element.android.features.networkmonitor.api" | ||
} | ||
|
||
dependencies { | ||
implementation(libs.coroutines.core) | ||
implementation(projects.libraries.designsystem) | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* | ||
* Copyright (c) 2023 New Vector Ltd | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package io.element.android.features.networkmonitor.api | ||
|
||
import kotlinx.coroutines.flow.Flow | ||
|
||
interface NetworkMonitor { | ||
val connectivity: Flow<NetworkStatus> | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* | ||
* Copyright (c) 2023 New Vector Ltd | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package io.element.android.features.networkmonitor.api | ||
|
||
enum class NetworkStatus { | ||
Online, | ||
Offline | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
/* | ||
* Copyright (c) 2023 New Vector Ltd | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package io.element.android.features.networkmonitor.api.ui | ||
|
||
import androidx.compose.animation.AnimatedVisibility | ||
import androidx.compose.animation.expandVertically | ||
import androidx.compose.animation.shrinkVertically | ||
import androidx.compose.foundation.Image | ||
import androidx.compose.foundation.background | ||
import androidx.compose.foundation.layout.Arrangement | ||
import androidx.compose.foundation.layout.Row | ||
import androidx.compose.foundation.layout.Spacer | ||
import androidx.compose.foundation.layout.fillMaxWidth | ||
import androidx.compose.foundation.layout.padding | ||
import androidx.compose.foundation.layout.size | ||
import androidx.compose.foundation.layout.statusBarsPadding | ||
import androidx.compose.foundation.layout.width | ||
import androidx.compose.material.Text | ||
import androidx.compose.material.icons.Icons | ||
import androidx.compose.material.icons.outlined.WifiOff | ||
import androidx.compose.material3.MaterialTheme | ||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.Alignment | ||
import androidx.compose.ui.Modifier | ||
import androidx.compose.ui.graphics.ColorFilter | ||
import androidx.compose.ui.tooling.preview.Preview | ||
import androidx.compose.ui.unit.dp | ||
import io.element.android.libraries.designsystem.ElementTextStyles | ||
import io.element.android.libraries.designsystem.preview.ElementPreviewDark | ||
import io.element.android.libraries.designsystem.preview.ElementPreviewLight | ||
import io.element.android.libraries.designsystem.theme.LocalColors | ||
|
||
@Composable | ||
fun ConnectivityIndicatorView( | ||
isOnline: Boolean, | ||
modifier: Modifier = Modifier | ||
) { | ||
// Display the network indicator with an animation | ||
AnimatedVisibility( | ||
visible = !isOnline, | ||
enter = expandVertically(), | ||
exit = shrinkVertically(), | ||
) { | ||
Row( | ||
modifier | ||
.fillMaxWidth() | ||
.background(LocalColors.current.gray400) | ||
.statusBarsPadding() | ||
.padding(vertical = 6.dp), | ||
horizontalArrangement = Arrangement.Center, | ||
verticalAlignment = Alignment.Bottom, | ||
) { | ||
val tint = MaterialTheme.colorScheme.primary | ||
Image( | ||
imageVector = Icons.Outlined.WifiOff, | ||
contentDescription = null, | ||
colorFilter = ColorFilter.tint(tint), | ||
modifier = Modifier.size(16.dp), | ||
) | ||
Spacer(modifier = Modifier.width(8.dp)) | ||
Text(text = "Offline", style = ElementTextStyles.Regular.bodyMD, color = tint) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I suppose this string should be defined in localazy There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed in b7dfd75 |
||
} | ||
} | ||
|
||
// Show missing status bar padding when the indicator is not visible | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This comment does not really match the behavior, I would expect to have the code below surrounded by There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Actually, the message is accurate, although it's a bit difficult to follow: the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. OK, I understand. I would have made the padding always visible and the network status bar not include the padding. It would also fix the weird effect (to me!) to see the status bar moving under the system top status bar. But not a blocker, thanks for the explanaition. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I tried to do that at first with a Box, but as the TopAppBar needs to move down when the indicator appears, it was quite hard to build it that way. There might be a simpler solution though. |
||
AnimatedVisibility( | ||
visible = isOnline, | ||
enter = expandVertically(), | ||
exit = shrinkVertically(), | ||
) { | ||
Spacer(modifier = Modifier.statusBarsPadding()) | ||
} | ||
} | ||
|
||
@Preview | ||
@Composable | ||
internal fun PreviewLightConnectivityIndicatorView() { | ||
ElementPreviewLight { | ||
ConnectivityIndicatorView(isOnline = false) | ||
} | ||
} | ||
|
||
@Preview | ||
@Composable | ||
internal fun PreviewDarkConnectivityIndicatorView() { | ||
ElementPreviewDark { | ||
ConnectivityIndicatorView(isOnline = false) | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
* Copyright (c) 2022 New Vector Ltd | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
// TODO: Remove once https://youtrack.jetbrains.com/issue/KTIJ-19369 is fixed | ||
@Suppress("DSL_SCOPE_VIOLATION") | ||
plugins { | ||
id("io.element.android-library") | ||
alias(libs.plugins.anvil) | ||
} | ||
|
||
anvil { | ||
generateDaggerFactories.set(true) | ||
} | ||
|
||
android { | ||
namespace = "io.element.android.features.networkmonitor.impl" | ||
} | ||
|
||
dependencies { | ||
implementation(libs.coroutines.core) | ||
implementation(libs.dagger) | ||
implementation(projects.libraries.core) | ||
implementation(projects.libraries.di) | ||
api(projects.features.networkmonitor.api) | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<!-- | ||
~ Copyright (c) 2023 New Vector Ltd | ||
~ | ||
~ Licensed under the Apache License, Version 2.0 (the "License"); | ||
~ you may not use this file except in compliance with the License. | ||
~ You may obtain a copy of the License at | ||
~ | ||
~ http://www.apache.org/licenses/LICENSE-2.0 | ||
~ | ||
~ Unless required by applicable law or agreed to in writing, software | ||
~ distributed under the License is distributed on an "AS IS" BASIS, | ||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
~ See the License for the specific language governing permissions and | ||
~ limitations under the License. | ||
--> | ||
|
||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | ||
</manifest> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The animation is mixing with the animation when switching between room list and message list, this is a bit weird. It should just animate when the network state changes.