summaryrefslogtreecommitdiff
path: root/src/client/view/graph_view.js
AgeCommit message (Collapse)Author
2015-07-30client/view/graph_view: export layouts for debuggingAlon Levy
2015-07-30client: reduce force initial alpha - less jittering, but less likely to ↵Alon Levy
reach minimum
2015-07-30client/view/graph_view: removed unused variables (jshint)Alon Levy
2015-07-30client: record position to db when dragging + fixedAlon Levy
Record position when dragging. Record fixed status. this is still not clear - what fixed means exactly.
2015-07-30client: on drag, do NOT rerun layoutAlon Levy
2015-07-30client/view/graph_view: position load: fix bug due to not calling ↵Alon Levy
d3.layout.start to initialize link lengths (linkStrength)
2015-07-30client/view/graph_view: no relayout on clone position load if all nodes loadedAlon Levy
2015-07-30client: node position storing: change key format to use underscores, more ↵Alon Levy
cypher friendly
2015-07-30client: jshint fixesAlon Levy
2015-07-28client/graph_view: #593: don't relayout after loading positions from dbAlon Levy
2015-07-28client/view/graph_view: group similar functionsAlon Levy
2015-07-28client/view/graph_view: more linting fixesAlon Levy
2015-07-28client/view/graph_view: remove dead code (range function)Alon Levy
2015-07-26client: store positions in db instead of local storageAlon Levy
attributes used are currently a bit lame, since we don't support nested attributes. So the attribute stored is: layouts.<layout_name>.{x,y} where layout_name is one of: force, user, ring. Note that force layout still takes time initially, because alpha is always set to 1 initially. This should probably be changed when a layout is loaded.
2015-07-23client/view/graph_view: add missing semicolonsAlon Levy
2015-07-06client: split view/filter.js from view/graph_viewAlon Levy
2015-07-06client/graph_view: remove dead codeAlon Levy
2015-07-06client: filter names: use node_titles, not types (fix translations)Alon Levy
2015-06-04add copyright and license headers for GNU AGPL v3Alon Levy
2015-05-22graph_view: rm unused debug_print()LV-426
2015-05-18Removed circle css class + clean graph-view.css filegarbash
2015-05-12client/view/graph_view: add and export {node,link}__hover__{start,end}Alon Levy
2015-05-12client/view/graph_view: link_hover: don't use thisAlon Levy
2015-05-12client/view/graph_view: removing debug argument to link_on_hoverAlon Levy
2015-05-12client/view/graph_view: factor out link__hover__{start,end}Alon Levy
2015-05-05client/view/graph_view: fix hidden link text with new link selectionAlon Levy
2015-05-05client: add distinct links selectionAlon Levy
2015-05-05client: fix Image overlapping link icon. fix #503Alon Levy
2015-05-03client/graph_view: zen_mode zooming and layouting changeAlon 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-03view/graph_view: add helper center_on_selection_relatedAlon Levy
2015-05-03client/graph_view: export layout (debugging only)Alon Levy
2015-05-03client/graph_view: add duration argument to nodes__user_visibleAlon Levy
2015-05-03client/graph_view: make nodes__user_visible available locallyAlon Levy
2015-05-03client/graph_view: extract layout__resetAlon Levy
2015-05-03client/graph_view: export parent_element (debugging only)Alon Levy
2015-04-16client: node radius change on image remove: fixAlon Levy
2015-04-16client: image-url: bigger radiusAlon Levy
2015-04-16client: move node_text_d{x,y} from rz_core to graph_viewAlon Levy
2015-04-15client: add images using existing circlesAlon Levy
2015-04-14client/graph_view: turn off image url display for now, not done yet, ↵Alon Levy
accidentally pushed
2015-04-14wip going to use style.fill url(image)Alon Levy
2015-04-14client/graph_view: images are just valid urlsAlon Levy
2015-04-14client/graph_view: s/nodeTextX/node__text_x/Alon Levy
2015-04-14client: graph_view: fix position change when removing/adding image-urlAlon Levy
2015-04-14client/graph_view: move translate aroundAlon Levy
2015-04-14client: place image+text on the middle of the bounding boxAlon Levy
2015-04-14client: support image from 'image-url' attributeAlon Levy
2015-04-13client: zen_mode: store/restore fixed on enter/leave, unfix on enter. fixes #486Alon Levy
2015-04-13client: graph_view: deduplicate zen mode changes; close #489Alon Levy
2015-04-13client: fix regression with temporary graph appearance: fixes #481Alon Levy