Is there a way to see all of the states that have been set on $stateProvider
?
In this case, I would like my state assignments to be distributed across many files. I would like to inspect the built states on run
or config
in a different file.
For example:
# component1.coffee
angular.module('zoo').config ($stateProvider) ->
$stateProvider.state 'component1',
url: '/component1'
template: _template
controller: 'Component1Ctrl'
# component2.coffee
angular.module('zoo').config ($stateProvider) ->
$stateProvider.state 'component2',
url: '/component2'
template: _template
controller: 'Component2Ctrl'
# componentNavigation.coffee
angular.module('zoo').run ($state) ->
console.log 'All configured states:', $state.configuredStates # doesn't exist.
Is there something that will list out the two states, component1
and component2
?