@@ -18,8 +18,10 @@ import androidx.compose.runtime.Composable
18
18
import androidx.compose.runtime.LaunchedEffect
19
19
import androidx.compose.runtime.derivedStateOf
20
20
import androidx.compose.runtime.getValue
21
+ import androidx.compose.runtime.mutableStateOf
21
22
import androidx.compose.runtime.remember
22
23
import androidx.compose.runtime.rememberCoroutineScope
24
+ import androidx.compose.runtime.setValue
23
25
import androidx.compose.ui.Modifier
24
26
import androidx.compose.ui.input.key.KeyEventType
25
27
import androidx.compose.ui.input.key.onKeyEvent
@@ -42,6 +44,7 @@ import app.fyreplace.fyreplace.input.DestinationKeyboardShortcut
42
44
import app.fyreplace.fyreplace.input.getShortcut
43
45
import app.fyreplace.fyreplace.ui.screens.ArchiveScreen
44
46
import app.fyreplace.fyreplace.ui.screens.DraftsScreen
47
+ import app.fyreplace.fyreplace.ui.screens.EmailsScreen
45
48
import app.fyreplace.fyreplace.ui.screens.FeedScreen
46
49
import app.fyreplace.fyreplace.ui.screens.LoginScreen
47
50
import app.fyreplace.fyreplace.ui.screens.NotificationsScreen
@@ -54,7 +57,7 @@ import app.fyreplace.fyreplace.ui.views.navigation.BottomNavigation
54
57
import app.fyreplace.fyreplace.ui.views.navigation.Destination
55
58
import app.fyreplace.fyreplace.ui.views.navigation.SideNavigation
56
59
import app.fyreplace.fyreplace.ui.views.navigation.navigatePoppingBackStack
57
- import app.fyreplace.fyreplace.ui.views.navigation.toSingletonDestination
60
+ import app.fyreplace.fyreplace.ui.views.navigation.toDestination
58
61
import app.fyreplace.fyreplace.viewmodels.MainViewModel
59
62
import kotlinx.coroutines.launch
60
63
@@ -75,28 +78,34 @@ fun MainContent() {
75
78
val snackbarHostState = remember { SnackbarHostState () }
76
79
val navController = rememberNavController()
77
80
val entry by navController.currentBackStackEntryAsState()
78
- val currentDestination = entry?.toSingletonDestination ()
79
- val destinationGroups by remember {
81
+ val currentDestination = entry?.toDestination ()
82
+ val singletonDestinationGroups by remember {
80
83
derivedStateOf {
81
84
topLevelDestinationGroups(expanded = ! compact, userAuthenticated = isAuthenticated)
82
85
}
83
86
}
84
- val currentDestinationGroup =
85
- destinationGroups.find { (it.choices + it.root).contains(currentDestination) }
86
- val savedDestinations =
87
- remember { mutableMapOf<Destination .Singleton , Destination .Singleton >() }
87
+ val currentSingletonDestinationGroup = singletonDestinationGroups
88
+ .find { (it.choices + it.root).contains(currentDestination) }
89
+ var selectedSingletonDestination by remember {
90
+ mutableStateOf<Destination .Singleton >(Destination .Feed )
91
+ }
92
+ val savedDestinations = remember {
93
+ mutableMapOf<Destination .Singleton , Destination .Singleton >()
94
+ }
95
+
96
+ fun navigate (destination : Destination ) {
97
+ navController.navigatePoppingBackStack(destination)
98
+ }
88
99
89
100
fun onClickDestination (destination : Destination .Singleton ) {
90
101
val actualDestination = when {
91
102
! isAuthenticated && isRegistering && destination == Destination .Settings -> Destination .Register ()
92
- else -> destinationGroups .find { it.root == destination }
103
+ else -> singletonDestinationGroups .find { it.root == destination }
93
104
?.choices
94
105
?.firstOrNull()
95
106
? : destination
96
107
}
97
- navController.navigatePoppingBackStack(
98
- savedDestinations[actualDestination] ? : actualDestination
99
- )
108
+ navigate(savedDestinations[actualDestination] ? : actualDestination)
100
109
}
101
110
102
111
val keyboardHandler = Modifier .onKeyEvent { event ->
@@ -131,7 +140,10 @@ fun MainContent() {
131
140
composable<Destination .Archive > { ArchiveScreen () }
132
141
composable<Destination .Drafts > { DraftsScreen () }
133
142
composable<Destination .Published > { PublishedScreen () }
134
- composable<Destination .Settings > { SettingsScreen () }
143
+ composable<Destination .Settings > {
144
+ SettingsScreen { navigate(Destination .Emails ) }
145
+ }
146
+ composable<Destination .Emails > { EmailsScreen () }
135
147
136
148
composable<Destination .Login >(
137
149
deepLinks = context.makeDeepLinks(context.getString(R .string.deep_link_path_login))
@@ -158,15 +170,19 @@ fun MainContent() {
158
170
@Composable
159
171
fun Top () {
160
172
TopBar (
161
- destinations = currentDestinationGroup ?.choices ? : emptyList(),
173
+ destinations = currentSingletonDestinationGroup ?.choices ? : emptyList(),
162
174
selectedDestination = currentDestination,
163
175
enabled = ! isWaitingForRandomCode,
164
176
onClickDestination = {
165
- navController.navigatePoppingBackStack (it)
177
+ navigate (it)
166
178
167
- if (currentDestinationGroup ?.defaultDestination != null ) {
168
- savedDestinations[currentDestinationGroup .defaultDestination] = it
179
+ if (currentSingletonDestinationGroup ?.defaultDestination != null ) {
180
+ savedDestinations[currentSingletonDestinationGroup .defaultDestination] = it
169
181
}
182
+ },
183
+ onBack = when (currentDestination) {
184
+ null , is Destination .Singleton -> null
185
+ else -> { -> navController.navigateUp() }
170
186
}
171
187
)
172
188
}
@@ -180,9 +196,10 @@ fun MainContent() {
180
196
Top ()
181
197
},
182
198
bottomBar = {
199
+ val destinations = singletonDestinationGroups.map(Destination .Singleton .Group ::root)
183
200
BottomNavigation (
184
- destinations = destinationGroups.map( Destination . Singleton . Group ::root) ,
185
- selectedDestination = currentDestinationGroup?.root ,
201
+ destinations = destinations ,
202
+ selectedDestination = selectedSingletonDestination ,
186
203
isAuthenticated = isAuthenticated,
187
204
onClickDestination = ::onClickDestination
188
205
)
@@ -197,8 +214,8 @@ fun MainContent() {
197
214
}
198
215
) {
199
216
SideNavigation (
200
- destinations = destinationGroups .map(Destination .Singleton .Group ::root),
201
- selectedDestination = currentDestinationGroup?.root ,
217
+ destinations = singletonDestinationGroups .map(Destination .Singleton .Group ::root),
218
+ selectedDestination = selectedSingletonDestination ,
202
219
isAuthenticated = isAuthenticated,
203
220
windowPadding = it,
204
221
onClickDestination = ::onClickDestination,
@@ -216,17 +233,22 @@ fun MainContent() {
216
233
217
234
LaunchedEffect (isAuthenticated) {
218
235
val accountEntryDestinations = setOf (Destination .Login (), Destination .Register ())
219
- navController.navigatePoppingBackStack (
236
+ navigate (
220
237
when {
221
238
isAuthenticated && currentDestination in accountEntryDestinations -> Destination .Settings
222
239
isAuthenticated -> return @LaunchedEffect
223
240
currentDestination == Destination .Settings -> Destination .Login ()
224
- currentDestination? .requiresAuthentication == true -> Destination .Feed
241
+ currentDestination is Destination . Singleton && currentDestination .requiresAuthentication == true -> Destination .Feed
225
242
else -> return @LaunchedEffect
226
243
}
227
244
)
228
245
}
229
246
247
+ LaunchedEffect (currentSingletonDestinationGroup?.root) {
248
+ selectedSingletonDestination =
249
+ currentSingletonDestinationGroup?.root ? : return @LaunchedEffect
250
+ }
251
+
230
252
val scope = rememberCoroutineScope()
231
253
232
254
LaunchedEffect (scope) {
0 commit comments