summaryrefslogtreecommitdiff
path: root/src/client/view/graph_view.js
AgeCommit message (Collapse)Author
2015-04-02client: graph_view: two renames: linktext->link_text, nodetext->node_textAlon Levy
2015-04-02client: hover on nodes and links almost there, missing textAlon Levy
2015-04-02Renamed Layout UI name of "concentric" into "Ring"garbash
2015-04-02client/view/graph_view: small bug fix plus indentationAlon Levy
2015-04-02client/graph_view: turn off selection ring for nowAlon Levy
2015-04-02client/graph_view/concentric: smaller radius for smaller number of nodesAlon Levy
2015-04-02wip/selection-ring: add grid layout, add buttons to switch, starts at force ↵Alon Levy
layout
2015-04-02client: remove cola dependencyAlon Levy
2015-04-02client: graph_view: layout abstraction, empty + concentric layouts (empty ↵Alon Levy
for temporary)
2015-04-02wip/selection: selected nodes are now in an equal distance ring of fixed ↵Alon Levy
radius (so no ring transform)
2015-04-02wip selection ring - working but not quite thereAlon Levy
2015-04-02wip: selection ringAlon Levy
2015-03-29client/view/graph_view: allow links with x/y that is zeroAlon Levy
2015-03-25Revert "client/view/graph_view: force recalculation of linkDistance on each ↵Alon Levy
force__load_graph" Dor: I have to say it's less usable now with the nodes moving after every click... I suggest to quickly fix it or revert. This reverts commit 4218f8fdf7c47ce8b8baa8f6fd2b95f1d93f358a.
2015-03-24client/view/graph_view: remove debug printAlon Levy
2015-03-24client/graph_view: add link distance depending on degree of nodeAlon Levy
2015-03-24client/view/graph_view: force recalculation of linkDistance on each ↵Alon Levy
force__load_graph
2015-03-23client: dragging a node fixes it's position; unfixing needs to be thought outAlon Levy
2015-03-17client: Bacon/jquery dependency: use shimAlon Levy
add shim requirement for Bacon to have jquery loaded first, since Bacon patches in asEventStream (and other APIs). Undo the Bacon_wrapper non fix: git grep -l Bacon_wrapper | while read f; do sed -i -e s/Bacon_wrapper/Bacon/g $f; done
2015-03-16client: plus/minus zoom implementation using log scale, state still in ↵Alon Levy
d3.behavior.zoom
2015-03-15client/graph_view: record rest force layout position and load right after ↵Alon Levy
clone (per node id) (copied inline comment): HACK to load positions stored locally: on the first diff, which is the result of the initial clone, load positions from stored last settled position (see record_position_to_local_storage and restore_position_from_local_storage) this is before we have proper layout recording in the database, loaded together with the nodes and links.
2015-03-15client/graph_view: rename debug only function with double underscore prefixAlon Levy
2015-03-15client/graph_view: extract force__load_graphAlon Levy
2015-03-13client/graph_view: double force layout distance (CRI patch)Alon Levy
2015-03-10client: graph_view: handle keyboard events when svg nodes are focusedAlon Levy
enter to open edit, space and shift-space to select/append.
2015-03-10client: graph_view: make nodes tabindex'able sorted top to bottom left to rightAlon Levy
2015-03-09client/graph_view: set maximal size of 100px for an image, keeping aspect ratioAlon Levy
2015-03-09client/graph_view: show images with correct size, but force layout doesn't ↵Alon Levy
take it into account
2015-03-09client/graph_view: console debug log when link is an image according to ↵Alon Levy
crude heuristic What we need to do is two things: 1. when a new link is supplied, go download it and let the browser tell us if it is an image and if so what are it's dimensions 2. cache that data in the db (on the to-be-added view node). Actually 3. cache the image itself. This will also allow uploading images with no link. Where to cache the images - on disk with a hash, plus breakdown into multiple directories to avoid filesystem limits.
2015-03-09client: graph_view: update image href+width+height on every "frame"Alon Levy
2015-03-09client/graph_view: remove extra useless 'a' element on nodesAlon Levy
2015-03-09client: graph_view: make nodes tab focusable. no visible indication (:focus) ↵Alon Levy
and no interaction possible yet
2015-03-08client/filter: fix broken filter from recent model/types intro and ↵Alon Levy
third-internship-proposal removal
2015-03-07client: remove third-internship-proposal; Fixes #356Alon Levy
2015-03-07client: move nodetypes from consts to model/typesAlon Levy
2015-03-04client:selection: invert on shiftAlon Levy
2015-03-04client: fix res/static forgotten rename; Fixes #355Alon Levy
2015-03-03client: rename consistently links__delete, nodes__deleteAlon Levy
2015-03-01client/graph_view: don't translate/zoom if node already in viewAlon Levy
2015-03-01client: add Bacon_wrapper, use instead of Bacon; forced loading of jquery ↵Alon Levy
before Bacon
2015-03-01view/graph_view: yet another fix for scalingAlon Levy
2015-03-01client/graph_view: fix scalingAlon Levy
2015-03-01client/graph_view: use transition when setting zoom for visibilityAlon Levy
Fixes #339
2015-03-01client/graph_view: fix visibility setting to include scaleAlon Levy
2015-03-01client/graph_view: add a debug message, remove commented out codeAlon Levy
2015-03-01client/graph_view: implement nodes__user_visible (no scale yet, just ↵Alon Levy
translation)
2015-03-01client: move obj_take to utilAlon Levy
2015-02-27client: graph_view: handle zoom correctly for bubble effectAlon Levy
2015-02-27client: graph_view: handle screen resizeAlon Levy
2015-02-15client: make shift+click be selection augmentation for better pc/mac ↵Alon Levy
compatibility, instead of ctrl+click