Description
In order to explore the extension points of swagger-ui, its likely useful to have a little helper plugin that can...
- Show all components ( maybe even mount them ? )
- Show all actions,selectors ( reducers are harder )
- Show current state, allow edits
Currently we can do most of this through window.ui
which ( by default ) is where we expose an instance swagger-ui.
Redux DevTools (super cool) also helps watch the actions that go through, but the actions there don't show the action-creator interface ( things like parameters, the actual name of the action as it would be called from code ).
Since the system ( the swagger-ui instance ) is a simple object, that exposes all this, as can be seen with window.ui
it should be trivial/fun to get something up quickly and its really about the extra value we can add such as mounting components, that we'd get the most value out of it.
Guestimate of work: < Normal for initial. non-trivial to get component mounting.
@shockey as always, shout if you have any thoughts.