-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added legacy navigator to support navigating outside of Circuit. Reworked PetDetails "View full bio" external link to use new legacy navigator pattern.
- Loading branch information
Showing
7 changed files
with
282 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
samples/star/src/main/kotlin/com/slack/circuit/star/navigator/LegacyNavigator.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
* Copyright (C) 2022 Slack Technologies, LLC | ||
* | ||
* 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 | ||
* | ||
* https://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 com.slack.circuit.star.navigator | ||
|
||
import android.content.Intent | ||
import com.slack.circuit.Navigator | ||
import com.slack.circuit.Screen | ||
import kotlinx.parcelize.Parcelize | ||
|
||
class LegacyNavigator( | ||
private val navigator: Navigator, | ||
private val onAndroidScreen: (AndroidScreen) -> Unit | ||
) : Navigator by navigator { | ||
override fun goTo(screen: Screen) = | ||
when (screen) { | ||
is AndroidScreen -> onAndroidScreen(screen) | ||
else -> navigator.goTo(screen) | ||
} | ||
} | ||
|
||
sealed interface AndroidScreen : Screen { | ||
@Parcelize data class CustomTabsIntentScreen(val url: String) : AndroidScreen | ||
@Parcelize data class IntentScreen(val intent: Intent) : AndroidScreen | ||
} |
Oops, something went wrong.