-
Notifications
You must be signed in to change notification settings - Fork 16
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
[Sample: MobileBuyIntegration] Handle Universal Links #243
Merged
Conversation
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
markmur
force-pushed
the
markmur/sample-universal-links
branch
2 times, most recently
from
November 13, 2024 11:22
ad5ff11
to
ee09b29
Compare
markmur
commented
Nov 13, 2024
Comment on lines
82
to
115
func scene(_ scene: UIScene, continue userActivity: NSUserActivity) { | ||
guard userActivity.activityType == NSUserActivityTypeBrowsingWeb, | ||
let incomingURL = userActivity.webpageURL else { | ||
return | ||
} | ||
|
||
handleUniversalLink(url: incomingURL) | ||
} | ||
|
||
func handleUniversalLink(url: URL) { | ||
guard let host = url.host, host == appConfiguration.storefrontDomain else { return } | ||
let storefrontUrl = StorefrontURL(from: url) | ||
|
||
switch true { | ||
/// Checkout URLs | ||
case appConfiguration.universalLinks.checkout && storefrontUrl.isCheckout() && !storefrontUrl.isThankYouPage(): | ||
presentCheckout(url) | ||
/// Cart URLs | ||
case appConfiguration.universalLinks.cart && storefrontUrl.isCart(): | ||
navigateToCart() | ||
/// Product URLs | ||
case appConfiguration.universalLinks.products: | ||
if let slug = storefrontUrl.getProductSlug() { | ||
navigateToProduct(with: slug) | ||
} | ||
/// Open everything else in Safari | ||
default: | ||
UIApplication.shared.open(url) | ||
} | ||
} |
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.
This is the 🧃
markmur
force-pushed
the
markmur/sample-universal-links
branch
3 times, most recently
from
November 13, 2024 11:49
74c9b64
to
bd62e4a
Compare
anulind
approved these changes
Nov 13, 2024
markmur
force-pushed
the
markmur/sample-universal-links
branch
from
November 13, 2024 12:06
bd62e4a
to
a68c6cb
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What changes are you making?
Handle universal links in app, providing configuration settings to enable/disable different routes.
Before you merge
Important
Checklist for releasing a new version
podspec
file.Tip
See the Contributing documentation for instructions on how to publish a new version of the library.