Commit 90f53112 authored by Karen Konou's avatar Karen Konou

[Graph] Remove node limit in clusters in legend

parent 3175cde4
Pipeline #6668 passed with stages
in 24 minutes and 25 seconds
......@@ -130,10 +130,6 @@ sideTabLegendCpt = here.component "sideTabLegend" cpt where
legend' /\ legendBox <- R2.useBox' legend
-- | Computed
-- |
let
maxItemPerCluster = 4
-- | Hooks
-- |
......@@ -144,7 +140,6 @@ sideTabLegendCpt = here.component "sideTabLegend" cpt where
( getter _.id_
>>> GEU.takeGreatestNodeByCluster
hyperdataGraph
maxItemPerCluster
)
-- For each provided Cluster (see Legend), count the number of nodes
......
......@@ -78,8 +78,8 @@ normalizeNodeSize minSize maxSize ns = over traversed (over sizeLens (\s -> minS
------------------------------------------------------------------------
takeGreatestNodeByCluster :: GET.HyperdataGraph -> Int -> Int -> Array GEGT.Node
takeGreatestNodeByCluster graphData take clusterId
takeGreatestNodeByCluster :: GET.HyperdataGraph -> Int -> Array GEGT.Node
takeGreatestNodeByCluster graphData clusterId
= graphData
# getter _.graph
>>> getter _.nodes
......@@ -91,7 +91,6 @@ takeGreatestNodeByCluster graphData take clusterId
>>> A.sortWith
( getter _.size
)
>>> A.takeEnd take
>>> A.reverse
countNodeByCluster :: GET.HyperdataGraph -> Int -> GEGT.ClusterCount
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment