| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-05-03 | client/graph_view: zen_mode zooming and layouting change | Alon Levy | |
| on zen mode entry: - start layout - automatic centering mode: every tick adjust the scale and translation to fit the visible nodes if user drags or wheels out cancel automatic centering mode (layout keeps updating regardless) implementation details: additional state 'zen_mode__auto_center' and additional handlers for wheel and mousedown. Better to have a single flow in the future: {mouse wheel event, mouse down event) -> update zen_mode__auto_center (or have implicit state via bacon) -> d3 zoom behavior | |||
| 2015-05-03 | view/graph_view: add helper center_on_selection_related | Alon Levy | |
| 2015-05-03 | client/graph_view: export layout (debugging only) | Alon Levy | |
| 2015-05-03 | client/graph_view: add duration argument to nodes__user_visible | Alon Levy | |
| 2015-05-03 | client/graph_view: make nodes__user_visible available locally | Alon Levy | |
| 2015-05-03 | client/graph_view: extract layout__reset | Alon Levy | |
| 2015-05-03 | client/graph_view: export parent_element (debugging only) | Alon Levy | |
| 2015-04-16 | client: node radius change on image remove: fix | Alon Levy | |
| 2015-04-16 | client: image-url: bigger radius | Alon Levy | |
| 2015-04-16 | client: move node_text_d{x,y} from rz_core to graph_view | Alon Levy | |
| 2015-04-15 | client: add images using existing circles | Alon Levy | |
| 2015-04-14 | client/graph_view: turn off image url display for now, not done yet, ↵ | Alon Levy | |
| accidentally pushed | |||
| 2015-04-14 | wip going to use style.fill url(image) | Alon Levy | |
| 2015-04-14 | client/graph_view: images are just valid urls | Alon Levy | |
| 2015-04-14 | client/graph_view: s/nodeTextX/node__text_x/ | Alon Levy | |
| 2015-04-14 | client: graph_view: fix position change when removing/adding image-url | Alon Levy | |
| 2015-04-14 | client/graph_view: move translate around | Alon Levy | |
| 2015-04-14 | client: place image+text on the middle of the bounding box | Alon Levy | |
| 2015-04-14 | client: support image from 'image-url' attribute | Alon Levy | |
| 2015-04-13 | client: zen_mode: store/restore fixed on enter/leave, unfix on enter. fixes #486 | Alon Levy | |
| 2015-04-13 | client: graph_view: deduplicate zen mode changes; close #489 | Alon Levy | |
| 2015-04-13 | client: fix regression with temporary graph appearance: fixes #481 | Alon Levy | |
| 2015-04-13 | client: fix related text not complete | Alon Levy | |
| 2015-04-13 | client/filter menu: allow click on text | Alon Levy | |
| 2015-04-13 | client/graph_view: filter updates graph's filtered_nodes; TODO: redo ↵ | Alon Levy | |
| selection when appropriate | |||
| 2015-04-13 | client/zen_mode/force layout: use uniform link distance | Alon Levy | |
| 2015-04-13 | client/graph_view: undo weird d3 data for node_text | Alon Levy | |
| 2015-04-12 | client: graph_view: fix zen mode extra node_text-s being created | Alon Levy | |
| 2015-04-12 | client: fix node name opacity on selection regression | Alon Levy | |
| Whereas node text class was not set correctly on selection. | |||
| 2015-04-12 | client: introduce zen mode | Alon Levy | |
| 2015-04-12 | client/graph_view: make sure links & nodes are always ordered by id | Alon Levy | |
| 2015-04-12 | client/selection: rename: selected & related | Alon Levy | |
| selected nodes - nodes the user selected directly, via search or click. related - nodes that we choose to show the user as a result of the selection made. | |||
| 2015-04-12 | client: fix broken space because of changed selection API | Alon Levy | |
| 2015-04-12 | client: zoom to selection button instead of automatic on selection | Alon Levy | |
| 2015-04-09 | client: graph_view: handle no filter (temporary graph). regresion #461 fixed | Alon Levy | |
| 2015-04-09 | client/graph_view: show also nodes with non domain types - makes it easier ↵ | Alon Levy | |
| to rename node types | |||
| 2015-04-09 | client: remove custom radius that wasn't used anyway. radius is 10. if ↵ | Alon Levy | |
| returned, place in domain specific type information | |||
| 2015-04-09 | client/graph_view: small cleanup | Alon Levy | |
| 2015-04-09 | client: item_view: make type dropdown domain based | Alon Levy | |
| 2015-04-09 | client/graph_view, index: filter checkboxes: remove hardcoding | Alon Levy | |
| 2015-04-09 | client/graph_view: extract init_checkboxes | Alon Levy | |
| 2015-04-09 | client: graph_view,layouts: use atomic nodes_links | Alon Levy | |
| 2015-04-07 | client: hide filter and layout menus on click on empty area. resolve partial ↵ | Alon Levy | |
| #444 | |||
| 2015-04-06 | client: return zoom buttons, make zoom conserve center point | Alon Levy | |
| 2015-04-06 | client: graph_view: use display instead of visibility. | Alon Levy | |
| SVG 1.1 visibility applies to element and not to children, display otoh does apply to the whole subtree resolves #401 | |||
| 2015-04-06 | client/view/graph_view: s/force__load_graph/layout__load_graph/ | Alon Levy | |
| 2015-04-06 | client: fix filter regression | Alon Levy | |
| 2015-04-06 | client: property tab cleanup; resolve #396 | Alon Levy | |
| 2015-04-05 | client: rename edge_info to link_info | Alon Levy | |
| for f in `git grep -l edge_info`; do sed -ie 's/edge_info/link_info/g' $f; done for f in `git grep -l EDGE_INFO`; do sed -ie 's/EDGE_INFO/LINK_INFO/g' $f; done git mv src/client/view/edge_info.js src/client/view/link_info.js | |||
| 2015-04-05 | client: selection: enable selection of link via 0 depth selection of both ↵ | Alon Levy | |
| nodes; resolve #393 shift selection still works, but now it's a bit not obvious when you shift select a link: - it acts as inverting the source and destination node. - an alternative could be to special case for both or single or none of the nodes already selected - a correct fix would be to track separately the nodes and links selection states. Right now we only have a nodes selection state (array of root nodes, the ones the user selected, and array of selected nodes, the ones we highlight as such). | |||
