Snapshot của devxoul/URLNavigator: 3.3k★ · Swift · Mobile. ⛵️ Elegant URL Routing for Swift
Tóm tắt dựng từ metadata GitHub của chính dự án — chưa có bài review TopGit. Trang sẽ tự động cập nhật khi bài review đầy đủ được xuất bản.
VÌ SAO CHƯA CÓ REVIEW
TopGit viết bài đầy đủ cho repo có nhiều sao nhất và được yêu cầu nhiều nhất. Trang này là snapshot trong thời gian chờ — xem README gốc ở tab READ ME.
⛵️ URLNavigator provides an elegant way to navigate through view controllers by URLs. URL patterns can be mapped by using URLNavigator.register(_:_:) function.
URLNavigator can be used for mapping URL patterns with 2 kind of types: URLNavigable and URLOpenHandler. URLNavigable is a type which defines an custom initializer and URLOpenHandler is a closure which can be executed. Both an initializer and a closure receive an URL and placeholder values.
Getting Started
1. Understanding URL Patterns
URL patterns can contain placeholders. Placeholders will be replaced with matching values from URLs. Use < and > to make placeholders. Placeholders can have types: string(default), int, float, and path.
For example, myapp://user/<int:id> matches with:
myapp://user/123
myapp://user/87
But it doesn't match with:
myapp://user/devxoul (expected int)
myapp://user/123/posts (different url structure)
/user/devxoul (missing scheme)
2. Mapping View Controllers and URL Open Handlers
URLNavigator allows to map view controllers and URL open handlers with URL patterns. Here's an example of mapping URL patterns with view controllers and a closure. Each closures has three parameters: url, values and context.
url is an URL that is passed from push() and present().
values is a dictionary that contains URL placeholder keys and values.
context is a dictionary which contains extra values passed from push(), present() or open().
let navigator = Navigator()
// register view controllers
navigator.register("myapp://user/<int:id>") { url, values, context in
guard let userID = values["id"] as? Int else { return nil }
return UserViewController(userID: userID)
}
navigator.register("myapp://post/<title>") { url, values, context in
return storyboard.instantiateViewController(withIdentifier: "PostViewController")
}
// register url open handlers
navigator.handle("myapp://alert") { url, values, context in
let title = url.queryParameters["title"]
let message = url.queryParameters["message"]
presentAlertController(title: title, message: message)
return true
}
3. Pushing, Presenting and Opening URLs
URLNavigator can push and present view controllers and execute closures with URLs.
Provide the from parameter to push() to specify the navigation controller which the new view controller will be pushed. Similarly, provide the from parameter to present() to specify the view controller which the new view controller will be presented. If the nil is passed, which is a default value, current application's top most view controller will be used to push or present view controllers.
present() takes an extra parameter: wrap. If a UINavigationController class is specified, the new view controller will be wrapped with the class. Default value is nil.
Then call initialize() at AppDelegate's application:didFinishLaunchingWithOptions:.
@UIApplicationMain
final class AppDelegate: UIResponder, UIApplicationDelegate {
func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?
) -> Bool {
// Navigator
URLNavigationMap.initialize(navigator: navigator)
// Do something else...
}
}
Implementing AppDelegate Launch Option URL
It's available to open your app with URLs if custom schemes are registered. In order to navigate to view controllers with URLs, you'll have to implement application:didFinishLaunchingWithOptions: method.
func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?
) -> Bool {
// ...
if let url = launchOptions?[.url] as? URL {
if let opened = navigator.open(url)
if !opened {
navigator.present(url)
}
}
return true
}
Implementing AppDelegate Open URL Method
You'll might want to implement custom URL open handler. Here's an example of using URLNavigator with other URL open handlers.
func application(_ application: UIApplication, open url: URL, sourceApplication: String?, annotation: Any) -> Bool {
// If you're using Facebook SDK
let fb = FBSDKApplicationDelegate.sharedInstance()
if fb.application(application, open: url, sourceApplication: sourceApplication, annotation: annotation) {
return true
}
// URLNavigator Handler
if navigator.open(url) {
return true
}
// URLNavigator View Controller
if navigator.present(url, wrap: UINavigationController.self) != nil {
return true
}
return false
}
Passing Extra Values when Pushing, Presenting and Opening
You can define custom URL Value Converters for URL placeholders.
For example, the placeholder <region> is only allowed for the strings ["us-west-1", "ap-northeast-2", "eu-west-3"]. If it doesn't contain any of these, the URL pattern should not match.
Add a custom value converter to the [String: URLValueConverter] dictionary on your instance of Navigator.
navigator.matcher.valueConverters["region"] = { pathComponents, index in
let allowedRegions = ["us-west-1", "ap-northeast-2", "eu-west-3"]
if allowedRegions.contains(pathComponents[index]) {
return pathComponents[index]
} else {
return nil
}
}
With the code above, for example, myapp://region/<region:_> matches with:
myapp://region/us-west-1
myapp://region/ap-northeast-2
myapp://region/eu-west-3
But it doesn't match with:
myapp://region/ca-central-1
For additional information, see the implementation of default URL Value Converters.
License
URLNavigator is under MIT license. See the LICENSE file for more info.
devxoul/URLNavigator thuộc nhóm Mobile trên TopGit, cùng 4 topic GitHub. Trang Trending và Topics liệt kê các repo cùng số sao và cùng ngôn ngữ để so sánh.
devxoul/URLNavigator có phải mã nguồn mở không?
Có — devxoul/URLNavigator phát hành theo license MIT, nghĩa là mã nguồn mở để đọc, fork và (tùy license) tái sử dụng. Mã: github.com/devxoul/URLNavigator.
devxoul/URLNavigator có website riêng không?
TopGit chưa ghi nhận URL trang chủ cho devxoul/URLNavigator. Phần README ở tab phía trên thường có link demo, hoặc xem mô tả GitHub của repo.
devxoul/URLNavigator dùng license gì?
devxoul/URLNavigator phát hành theo license MIT. Nên mở file LICENSE trên GitHub để xác nhận — license metadata đôi khi lệch với thực tế dự án.
devxoul/URLNavigator là gì?
devxoul/URLNavigator (devxoul/URLNavigator) là dự án Swift trên GitHub. Theo mô tả gốc: ⛵️ Elegant URL Routing for Swift
Đọc thêm về devxoul/URLNavigator ở đâu?
Trang TopGit này là một snapshot — tab "Readme" hiển thị nguyên văn README của repo (đã bỏ link, giữ ảnh). Repo GitHub ở github.com/devxoul/URLNavigator là nguồn chính thức.
Vì sao devxoul/URLNavigator được xếp vào nhóm Mobile?
TopGit xếp devxoul/URLNavigator vào nhóm Mobile dựa trên GitHub topics và mô tả của repo (gắn thẻ: "deeplink", "ios", "routing"). Việc phân loại dựa trên metadata thật của repo, không phải đoán theo cảm tính biên tập.
Đọc đầy đủ README ở tab phía trên.
Chưa chắc URLNavigator có hợp với bạn?
Để ChatGPT, Claude hoặc Perplexity tìm hiểu giúp — bấm bên dưới và xem AI nói gì về URLNavigator.