This is a tool which could easily observe and visualize each route and flow we are tracking on the real time.
There will display a tips view when your cursor is floating on a node text if you have configured the info that you want to show.
For a big App, sometime it's hard to check and debug which route we are using. what reaction will be happened once we click somewhere. in order to easily check those scenario whether or not meet the expectation, this tool is created to tackle this requirement.
This Navy
framework has a demo app that you can run it directly following the below steps to see what it looks like and how it runs. But if you want to integrate it into your project, you have to replace the BundleId
with your project BundleId in run-navy.sh
script and move this script into your project folder.
- Install npm
brew install node
- Install Browsersync
npm install -g browser-sync
If you want to run demo app, you just need to cd
to the Navy
project path and execute pod install
Then you have to run demo app first before you execute the command below.
./run-navy.sh
Navy
is on Cocoapods! After setting up Cocoapods in your project, simply add the folowing to your Podfile:
pod 'Navy'
then run pod install
from the directory containing the Podfile!
Don't forget to import Navy
when you use it.
class Navigation: NaviProtocol {
// Return root node name
func rootNodeName() -> String {
return "Navy"
}
// Return tabBar controllers
func tabBarViewControllers() -> [String] {
return ["NavyDemo.FavoriteViewController", "NavyDemo.DownloadViewController", "NavyDemo.HistoryViewController"]
}
// Map the business logic document link to corresponding node
func mapBusinessLogicDocument() -> [String: String] {
return ["NavyDemo.FavoriteViewController": "https://en.wikipedia.org/wiki/Marie_Curie",
"NavyDemo.ListViewController": "https://en.wikipedia.org/wiki/Albert_Einstein",
"NavyDemo.DetailViewController": "https://en.wikipedia.org/wiki/Tu_Youyou",
"NavyDemo.SettingViewController": "https://en.wikipedia.org/wiki/Alan_Turing",
"NavyDemo.DownloadViewController": "https://en.wikipedia.org/wiki/Main_Page"]
}
}
Note: if you are using custome Navigation, you have to implement the two optional protocols.
func currentController() -> UIViewController {
// Return current controller
}
func previousController() -> UIViewController {
// Return previous controller
}
Last, call the setup(with:)
method and pass the instance has implemented NaviProtocol
.
NaviHeader.shared.setup(with: Navigation())
You have to run your project first before you execute the command below.
BundleId
and move script into your project.
./run-navy.sh
- Display the code line number of the action which we are tracking
- Display call stack on web page
- Redirect to a new page by clicking the text on a node
- Map business logic documents
- Display history router paths
- Adapt mobile screen
- Monitor the network
- Swift 4.2+
- iOS 11.0+
Pull requests, feature requests and bug reports are welcome 🚀