Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev #162

Merged
merged 29 commits into from
Feb 4, 2021
Merged

Dev #162

merged 29 commits into from
Feb 4, 2021

Commits on Sep 22, 2020

  1. Configuration menu
    Copy the full SHA
    d5268ce View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2020

  1. Check to see if either label is undefined before displaying the node …

    …table, and if it is treat it as '' so that it won't crash.
    Joshua Danish committed Oct 15, 2020
    Configuration menu
    Copy the full SHA
    a5a2ba2 View commit details
    Browse the repository at this point in the history
  2. Address issue with blank labels crashing node table.

    Note, since a blank label is being used to delete nodes, I didn't want to mess with the validation yet, so this should be improved later. But for the short term, a missing label is now saved as '' and I also check for missing labels in the node table sorting so that if one got through it'll be fixed. Not ideal, but safer for short-term.
    Joshua Danish committed Oct 15, 2020
    Configuration menu
    Copy the full SHA
    1baa959 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2020

  1. Configuration menu
    Copy the full SHA
    9207a2b View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2020

  1. Added hidden columns to the edge table, so that when using a chrome (…

    …or other) extension to save the table as a csv, it has what it needs to be easily converted to Gephi or other.
    Joshua Danish committed Oct 18, 2020
    Configuration menu
    Copy the full SHA
    dbefd66 View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2020

  1. Fixes a newly discovered bug where degree counts were increasing with…

    …in the NodeTable every time that edit was clicked.
    Joshua Danish committed Oct 27, 2020
    Configuration menu
    Copy the full SHA
    121badb View commit details
    Browse the repository at this point in the history
  2. Minor fix.

    Joshua Danish committed Oct 27, 2020
    Configuration menu
    Copy the full SHA
    40a6c91 View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2020

  1. Fixes bug where node table would re-sort when selecting a node to vie…

    …w / edit.
    Joshua Danish committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    a8eb83a View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2020

  1. If edit is pressed in NodeTable when this should be locked, ignore it.

    We need a better solution so that Edit is hidden in the NodeTable but keeping track of the state was outside my capabilities.
    Joshua Danish committed Oct 31, 2020
    Configuration menu
    Copy the full SHA
    55cde7a View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2020

  1. Added hidden id field to table so that exports could be imported into…

    … Gephi or similar
    Joshua Danish committed Nov 6, 2020
    Configuration menu
    Copy the full SHA
    6bd05a6 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2020

  1. Configuration menu
    Copy the full SHA
    79055d2 View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2020

  1. First pass at setting transparency for nodes and edges via the filter…

    … panel.
    
    Note, also changed edge color to be easier to read in nodes (more of a yellow now).
    
    Also added a fix to id's not showing up hidden in tables (that was also added to the prior commit).
    Joshua Danish committed Nov 19, 2020
    Configuration menu
    Copy the full SHA
    18f9d44 View commit details
    Browse the repository at this point in the history
  2. Moved default transparency to the nodePrompts and edgePrompts areas o…

    …f the template, and use .2 for default if it is missing.
    Joshua Danish committed Nov 19, 2020
    Configuration menu
    Copy the full SHA
    177ff7a View commit details
    Browse the repository at this point in the history
  3. This adds a degree value to each node so that it can be used for the …

    …filters
    
    I am not sure why degrees are re-calculated within the node and edge table, so this might be wrong, or that might just be an oversight. Worth reviewing.
    Joshua Danish committed Nov 19, 2020
    Configuration menu
    Copy the full SHA
    3b5a330 View commit details
    Browse the repository at this point in the history
  4. Added a clear filters button to the infopanel so that you can remove …

    …them without having to re-open the filters panel.
    Joshua Danish committed Nov 19, 2020
    Configuration menu
    Copy the full SHA
    c747991 View commit details
    Browse the repository at this point in the history
  5. Fixed an issue where the degrees weren't updating immediately, and us…

    …e those degrees instead of constantly re-calculating them in the node table ... not sure why it was doing that so make sure nothing broke.
    Joshua Danish committed Nov 19, 2020
    Configuration menu
    Copy the full SHA
    71084eb View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2020

  1. Moved searchColor and sourceColor (current label for all selected nod…

    …es) to template at top level.
    
    Both use the old default if they are missing for backwards compatibility, but ...
    
    ToDo: update template default to include these and defaultTransparency
    Joshua Danish committed Nov 21, 2020
    Configuration menu
    Copy the full SHA
    70e744f View commit details
    Browse the repository at this point in the history
  2. added table padding so that the edit button isn't flush for node and …

    …edge table
    Joshua Danish committed Nov 21, 2020
    Configuration menu
    Copy the full SHA
    da05320 View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2020

  1. When viewing the edge editor, the linked node is now a hyperlink that…

    … will load it so that you can follow the links.
    
    Todo: get this to scroll up so that it is obvious.
    Joshua Danish committed Nov 22, 2020
    Configuration menu
    Copy the full SHA
    e79335d View commit details
    Browse the repository at this point in the history
  2. Changed from targetID to linkID to be more consistent.

    Joshua Danish committed Nov 22, 2020
    Configuration menu
    Copy the full SHA
    99accd2 View commit details
    Browse the repository at this point in the history
  3. Switch edge links back to disabled if it is being edited to avoid all…

    … that confusion.
    Joshua Danish committed Nov 22, 2020
    Configuration menu
    Copy the full SHA
    424a629 View commit details
    Browse the repository at this point in the history
  4. Call autocomplete select so that when you click on an edge link it'll…

    … move up to avoid confusion.
    Joshua Danish committed Nov 22, 2020
    Configuration menu
    Copy the full SHA
    cafe49b View commit details
    Browse the repository at this point in the history
  5. Added a message call so that when a node from within an edge is selec…

    …ted, the edge editor closes as we navigate to the new node.
    Joshua Danish committed Nov 22, 2020
    Configuration menu
    Copy the full SHA
    2c94b30 View commit details
    Browse the repository at this point in the history
  6. Started to add Date type for filters, but didn't get to functionality…

    … yet (just enums)
    Joshua Danish committed Nov 22, 2020
    Configuration menu
    Copy the full SHA
    294e29a View commit details
    Browse the repository at this point in the history
  7. Fixed drag on info-panel so that it won't go past the top of the actu…

    …al panel
    Joshua Danish committed Nov 22, 2020
    Configuration menu
    Copy the full SHA
    86b83ef View commit details
    Browse the repository at this point in the history
  8. Just removing some unnecessary comments.

    Joshua Danish committed Nov 22, 2020
    Configuration menu
    Copy the full SHA
    a0ee588 View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2020

  1. Fix sorting on nodetable so that it is coming from degree and not the…

    … defunct edgetable.
    Joshua Danish committed Dec 2, 2020
    Configuration menu
    Copy the full SHA
    eae2b2d View commit details
    Browse the repository at this point in the history

Commits on Dec 7, 2020

  1. Updated default template to a) have better empty description, b) have…

    … default colors for selected / searched nodes, and c) have default transparencies
    Joshua Danish committed Dec 7, 2020
    Configuration menu
    Copy the full SHA
    756213c View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2020

  1. Standalone mode was showing a funny blank bar. Changed the session in…

    …fo to match the logged in approach (using a div instead of form group) to fix that.
    Joshua Danish committed Dec 10, 2020
    Configuration menu
    Copy the full SHA
    f23c011 View commit details
    Browse the repository at this point in the history