Coder Social home page Coder Social logo

[State tree] large app about visualizer HOT 12 CLOSED

ui-router avatar ui-router commented on April 27, 2024
[State tree] large app

from visualizer.

Comments (12)

christopherthielen avatar christopherthielen commented on April 27, 2024

What? it looks fine to me. ;)

from visualizer.

christopherthielen avatar christopherthielen commented on April 27, 2024

The middle-click idea seems like pretty low-hanging fruit. I don't have time to enhance this now, but would be happy to help guide anyone interested in implementing this.

from visualizer.

christopherthielen avatar christopherthielen commented on April 27, 2024

One other thing to note: you can increase the size of the viewport by passing height and width props to the third argument of StateVisualizer.create:

  var vis = window['ui-router-visualizer']
  vis.StateVisualizer.create(ng1UIRouter, undefined, { width: 500, height: 500 });
  vis.TransitionVisualizer.create(ng1UIRouter);

https://plnkr.co/edit/dKT52b?p=preview

from visualizer.

aitboudad avatar aitboudad commented on April 27, 2024

thank you for the hint, I'll try to work on it next week!

from visualizer.

wpitallo avatar wpitallo commented on April 27, 2024

Awesome tool, very cool!

Was wandering how the labels are rendering? If we wanted to send them through a custom parser to add some addition info etc. What code actually renders the labels?

from visualizer.

christopherthielen avatar christopherthielen commented on April 27, 2024

Here is where the state name is written out (as SVG text): https://github.com/ui-router/visualizer/blob/master/src/state/stateNode.tsx#L33-L40

Just below it is the "label text" (i.e., "active")

The node itself is the StateVisNode which wraps a ui-router state object.

from visualizer.

wpitallo avatar wpitallo commented on April 27, 2024

Thanks so much 👍

Was exactly what i was looking for!

from visualizer.

christopherthielen avatar christopherthielen commented on April 27, 2024

I added some enhancements which makes the visualizer much more usable with large state trees:

  1. Added other layout strategies: Tree (current), Cluster, Radial. The Radial layout works great for large apps.

screen shot 2017-01-27 at 10 19 05 am

  1. Add a zoom level which scales the state nodes and labels:

screen shot 2017-01-27 at 10 19 19 am

  1. Add an interactive resize handle:

screen shot 2017-01-27 at 10 24 27 am

from visualizer.

christopherthielen avatar christopherthielen commented on April 27, 2024
  1. Added Collapse/uncollapsing.
  • Toggle collapse by double-clicking a state
  • The count of collapsed descendents is shown inside the state
  • The state is automatically un-collapsed if it is entered.
  • States without children cannot be collapsed.

anim

from visualizer.

christopherthielen avatar christopherthielen commented on April 27, 2024

@aitboudad version 3.0.0 released, please provide feedback

from visualizer.

aitboudad avatar aitboudad commented on April 27, 2024

@christopherthielen just checked on my side and it looks really nice, I have two remarks:

  • allow to configure inactive state with children collapsed as default
  • add horizontal tree (left to right)

Thanks in advance!

from visualizer.

christopherthielen avatar christopherthielen commented on April 27, 2024

@aitboudad just before registering the plugin you can set the initial collapsed status of each state.

For example:

let states: State[] = router.stateRegistry.get().map(s => s.$$state());
let secondLevel = states.filter(s => s.parent.name === 'app');
secondLevel.forEach(s => s._collapsed = true);

router.plugin(Visualizer);

Or in this plunker, collapse all top and second level states:
http://plnkr.co/edit/zrc8YzoXnlhLbSD3TtWc?p=preview

  // Auto-collapse children in state visualizer
  var registry = $uiRouter.stateRegistry;
  $uiRouter.stateRegistry.get().map(s => s.$$state())
      .filter(s => s.path.length === 2 || s.path.length === 3)
      .forEach(s => s._collapsed = true);

from visualizer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.