-
Notifications
You must be signed in to change notification settings - Fork 35
Deeplink router #363
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
Deeplink router #363
Conversation
Stepic/AppDelegate.swift
Outdated
} | ||
}) | ||
let deepLinkRoutingService = DeepLinkRoutingService() | ||
delay(0.1) { |
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.
Оно не работает без delay? Или это хак с DispatchQueue.main.async? В таком случае, нужно ли нам 0.1?
Stepic/DeepLinkRoutingService.swift
Outdated
|
||
func route(path: String, from source: UIViewController? = nil) { | ||
let route = Route(path: path) | ||
getModuleStack(route: route).done { moduleStack in |
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.
Еще мы договаривались писать self явно везде. Считаю, что пора начинать и привыкать
мержу? |
Задача: #APPS-2012
Описание:
Новый сервис для диплинк роутинга.
Для инициализации старых модулей, где сложно добавить синхронные assembly, был использован старый
DeepLinkRouter
.