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

Edge slicing #372

Merged
merged 30 commits into from
Mar 9, 2022
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
a677b64
Add edge slicing component
gotdairyya Feb 10, 2022
b580ad6
Add edge slicing component
gotdairyya Feb 10, 2022
7d4a2a6
Use instance for edge slice width
gotdairyya Feb 10, 2022
fe0b541
Change cog to chevron
gotdairyya Feb 10, 2022
b5aacaa
Refactor edge attribute list creation
gotdairyya Feb 11, 2022
d26e069
Represent total edges in edge slices
gotdairyya Feb 11, 2022
abe8699
Fix position of tooltip
gotdairyya Feb 11, 2022
485911d
Visualize categorical attributes
gotdairyya Feb 14, 2022
467e52a
Format numeric labels
gotdairyya Feb 14, 2022
f6887cb
Remove edge slices on query
gotdairyya Feb 14, 2022
82f685a
Fix most type issues
JackWilb Feb 14, 2022
c16d769
Fix tooltip error
gotdairyya Feb 17, 2022
58ef38c
Merge 'origin/main' into edge-slicing
gotdairyya Feb 17, 2022
50ecc03
Show labels under slices for numeric
gotdairyya Feb 17, 2022
6323c14
Add padding
gotdairyya Feb 17, 2022
36e697a
Manage clearing form and sliced network
gotdairyya Feb 17, 2022
ea67b17
Reset edge slice number
gotdairyya Feb 17, 2022
01e16c4
Set sliced network to empty on updateNetwork
gotdairyya Feb 17, 2022
83448b8
Fix numeric edge slices
gotdairyya Feb 17, 2022
35ece64
Format edge slicing + fix label display
gotdairyya Feb 17, 2022
cd9cf04
Add isTime to reset
gotdairyya Feb 17, 2022
439163e
Disable buttpns when network not sliced
gotdairyya Feb 18, 2022
b219da0
Remove unnecessary network update
gotdairyya Feb 18, 2022
95ad01a
Remove unused variables
gotdairyya Feb 18, 2022
c303cc5
Remove d3 for edge selection
gotdairyya Feb 18, 2022
4e67144
Check for valid input
gotdairyya Mar 9, 2022
73cae4e
Remove computed ref manipulation
gotdairyya Mar 9, 2022
47e3f9c
Fix categorical slicing
gotdairyya Mar 9, 2022
0fa5f4b
Fix reset clearing removes min and max
gotdairyya Mar 9, 2022
63f104e
Update time selection
gotdairyya Mar 9, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/components/ConnectivityQuery.vue
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,8 @@ export default defineComponent({
store.dispatch.updateNetwork({ network: newNetwork });
loading.value = false;
store.commit.setDirectionalEdges(true);
// remove sliced network
store.commit.setSlicedNetwork([]);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe this should just be a part of updateNetwork? It seems that every time it updates, we'd want to unset this

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great idea!

}
});
}
Expand Down