Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
purescript-gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Grégoire Locqueville
purescript-gargantext
Commits
ad048f28
Commit
ad048f28
authored
Jan 31, 2020
by
Przemyslaw Kaminski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Dashboard] institutes tree chart
parent
7b20a22b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
75 additions
and
65 deletions
+75
-65
Dashboard.purs
src/Gargantext/Components/Nodes/Corpus/Dashboard.purs
+75
-65
No files found.
src/Gargantext/Components/Nodes/Corpus/Dashboard.purs
View file @
ad048f28
...
@@ -2,6 +2,7 @@ module Gargantext.Components.Nodes.Corpus.Dashboard where
...
@@ -2,6 +2,7 @@ module Gargantext.Components.Nodes.Corpus.Dashboard where
import Data.Array (zipWith)
import Data.Array (zipWith)
import Data.Int (toNumber)
import Data.Int (toNumber)
import Data.Maybe (Maybe(..))
import Data.Tuple (Tuple(..))
import Data.Tuple (Tuple(..))
import Reactix as R
import Reactix as R
import Reactix.DOM.HTML as H
import Reactix.DOM.HTML as H
...
@@ -17,6 +18,7 @@ import Gargantext.Components.Node (NodePoly(..))
...
@@ -17,6 +18,7 @@ import Gargantext.Components.Node (NodePoly(..))
import Gargantext.Components.Nodes.Corpus (loadCorpusWithChild)
import Gargantext.Components.Nodes.Corpus (loadCorpusWithChild)
import Gargantext.Components.Nodes.Corpus.Chart.Histo (histo)
import Gargantext.Components.Nodes.Corpus.Chart.Histo (histo)
import Gargantext.Components.Nodes.Corpus.Chart.Pie (pie)
import Gargantext.Components.Nodes.Corpus.Chart.Pie (pie)
import Gargantext.Components.Nodes.Corpus.Chart.Tree (tree)
import Gargantext.Components.Nodes.Corpus.Types (getCorpusInfo, CorpusInfo(..), Hyperdata(..))
import Gargantext.Components.Nodes.Corpus.Types (getCorpusInfo, CorpusInfo(..), Hyperdata(..))
import Gargantext.Hooks.Loader (useLoader)
import Gargantext.Hooks.Loader (useLoader)
import Gargantext.Sessions (Session)
import Gargantext.Sessions (Session)
...
@@ -40,11 +42,12 @@ dashboardLayoutCpt = R.hooksComponent "G.P.C.D.dashboardLayout" cpt
...
@@ -40,11 +42,12 @@ dashboardLayoutCpt = R.hooksComponent "G.P.C.D.dashboardLayout" cpt
let { name, date, hyperdata : Hyperdata h} = poly
let { name, date, hyperdata : Hyperdata h} = poly
CorpusInfo {desc,query,authors} = getCorpusInfo h.fields
CorpusInfo {desc,query,authors} = getCorpusInfo h.fields
in
in
dashboardLayoutLoaded {corpusId, nodeId, session}
dashboardLayoutLoaded {corpusId,
defaultListId,
nodeId, session}
type LoadedProps =
type LoadedProps =
(
(
corpusId :: Int
corpusId :: Int
, defaultListId :: Int
| Props
| Props
)
)
...
@@ -67,16 +70,24 @@ dashboardLayoutLoadedCpt = R.hooksComponent "G.P.C.D.dashboardLayoutLoaded" cpt
...
@@ -67,16 +70,24 @@ dashboardLayoutLoadedCpt = R.hooksComponent "G.P.C.D.dashboardLayoutLoaded" cpt
, H.div {className: "row"} (aSchool <$> schools)
, H.div {className: "row"} (aSchool <$> schools)
, chart scatterEx
, chart scatterEx
, chart sankeyEx
, chart sankeyEx
, chart treeMapEx
, tree (institutesParams props)
, chart treeEx
--, chart treeMapEx
--, chart treeEx
]
]
globalPublisParams {corpusId, session} = {path, session}
globalPublisParams {corpusId, session} = {
path, session}
where
where
path = {corpusId, tabType: TabCorpus TabDocs}
path = {corpusId, tabType: TabCorpus TabDocs}
authorsParams {corpusId, session} = {path, session}
authorsParams {corpusId, session} = {path, session}
where
where
path = {corpusId, tabType: TabCorpus (TabNgramType $ modeTabType Authors)}
path = {corpusId, tabType: TabCorpus (TabNgramType $ modeTabType Authors)}
institutesParams {corpusId, defaultListId, session} = {path, session}
where
path = { corpusId
, limit: Just 1000 -- TODO Fix
, listId: defaultListId -- TODO Is this correct?
, tabType: TabCorpus (TabNgramType $ modeTabType Institutes)
}
aSchool school = H.div {className: "col-md-4 content"} [ chart $ focus school ]
aSchool school = H.div {className: "col-md-4 content"} [ chart $ focus school ]
schools = [ "Télécom Bretagne", "Mines Nantes", "Eurecom" ]
schools = [ "Télécom Bretagne", "Mines Nantes", "Eurecom" ]
...
@@ -192,67 +203,66 @@ sankeyEx = Options
...
@@ -192,67 +203,66 @@ sankeyEx = Options
, addZoom : false
, addZoom : false
}
}
treeData :: Array TreeNode
-- treeData :: Array TreeNode
treeData =
-- treeData =
[ treeNode "nodeA" 10
-- [ treeNode "nodeA" 10
[ treeNode "nodeAa" 4 []
-- [ treeNode "nodeAa" 4 []
, treeNode "nodeAb" 5 []
-- , treeNode "nodeAb" 5 []
, treeNode "nodeAc" 1
-- , treeNode "nodeAc" 1
[ treeNode "nodeAca" 5 []
-- [ treeNode "nodeAca" 5 []
, treeNode "nodeAcb" 5 [] ] ]
-- , treeNode "nodeAcb" 5 [] ] ]
, treeNode "nodeB" 20
-- , treeNode "nodeB" 20
[ treeNode "nodeBa" 20
-- [ treeNode "nodeBa" 20
[ treeNode "nodeBa1" 20 [] ]]
-- [ treeNode "nodeBa1" 20 [] ]]
, treeNode "nodeC" 20
-- , treeNode "nodeC" 20
[ treeNode "nodeCa" 20
-- [ treeNode "nodeCa" 20
[ treeNode "nodeCa1" 10 []
-- [ treeNode "nodeCa1" 10 []
, treeNode "nodeCa2" 10 [] ]
-- , treeNode "nodeCa2" 10 [] ]
, treeNode "nodeD" 20
-- , treeNode "nodeD" 20
[ treeNode "nodeDa" 20
-- [ treeNode "nodeDa" 20
[ treeNode "nodeDa1" 2 []
-- [ treeNode "nodeDa1" 2 []
, treeNode "nodeDa2" 2 []
-- , treeNode "nodeDa2" 2 []
, treeNode "nodeDa3" 2 []
-- , treeNode "nodeDa3" 2 []
, treeNode "nodeDa4" 2 []
-- , treeNode "nodeDa4" 2 []
, treeNode "nodeDa5" 2 []
-- , treeNode "nodeDa5" 2 []
, treeNode "nodeDa6" 2 []
-- , treeNode "nodeDa6" 2 []
, treeNode "nodeDa7" 2 []
-- , treeNode "nodeDa7" 2 []
, treeNode "nodeDa8" 2 []
-- , treeNode "nodeDa8" 2 []
, treeNode "nodeDa9" 2 []
-- , treeNode "nodeDa9" 2 []
, treeNode "nodeDa10" 2 [] ]]]]
-- , treeNode "nodeDa10" 2 [] ]]]]
treeData' :: Array TreeNode
treeData' =
[ treeNode "nodeA" 10
[ treeLeaf "nodeAa" 4
, treeLeaf "nodeAb" 5
, treeNode "nodeAc" 1 [ treeLeaf "nodeAca" 5, treeLeaf "nodeAcb" 5 ]]
, treeNode "nodeB" 20 [ treeNode "nodeBa" 20 [ treeLeaf "nodeBa1" 20]]
, treeNode "nodeC" 20 [ treeNode "nodeBa" 20 [ treeLeaf "nodeBa1" 20]]
, treeNode "nodeD" 20 [ treeNode "nodeBa" 20 [ treeLeaf "nodeBa1" 20]]
, treeNode "nodeE" 20 [ treeNode "nodeBa" 20 [ treeLeaf "nodeBa1" 20]]
, treeNode "nodeF" 20 [ treeNode "nodeBa" 20 [ treeLeaf "nodeBa1" 20]]
, treeNode "nodeG" 20 [ treeNode "nodeBa" 20 [ treeLeaf "nodeBa1" 20]]
, treeNode "nodeH" 20 [ treeNode "nodeBa" 20 [ treeLeaf "nodeBa1" 20]]]
treeMapEx :: Options
-- treeData' :: Array TreeNode
treeMapEx = Options
-- treeData' =
{ mainTitle : ""
-- [ treeNode "nodeA" 10
, subTitle : ""
-- [ treeLeaf "nodeAa" 4
, xAxis : xAxis' []
-- , treeLeaf "nodeAb" 5
, yAxis : yAxis' { position: "", show: false, min:0}
-- , treeNode "nodeAc" 1 [ treeLeaf "nodeAca" 5, treeLeaf "nodeAcb" 5 ]]
, series : [mkTree TreeMap treeData]
-- , treeNode "nodeB" 20 [ treeNode "nodeBa" 20 [ treeLeaf "nodeBa1" 20]]
, addZoom : false
-- , treeNode "nodeC" 20 [ treeNode "nodeBa" 20 [ treeLeaf "nodeBa1" 20]]
, tooltip : tooltipTriggerAxis -- Necessary?
-- , treeNode "nodeD" 20 [ treeNode "nodeBa" 20 [ treeLeaf "nodeBa1" 20]]
}
-- , treeNode "nodeE" 20 [ treeNode "nodeBa" 20 [ treeLeaf "nodeBa1" 20]]
-- , treeNode "nodeF" 20 [ treeNode "nodeBa" 20 [ treeLeaf "nodeBa1" 20]]
-- , treeNode "nodeG" 20 [ treeNode "nodeBa" 20 [ treeLeaf "nodeBa1" 20]]
-- , treeNode "nodeH" 20 [ treeNode "nodeBa" 20 [ treeLeaf "nodeBa1" 20]]]
tree
Ex :: Options
-- treeMap
Ex :: Options
tree
Ex = Options
-- treeMap
Ex = Options
{ mainTitle : "Tree
"
-- { mainTitle : "
"
, subTitle : "Radial
"
-- , subTitle : "
"
, xAxis : xAxis' []
--
, xAxis : xAxis' []
, yAxis : yAxis' { position: "", show: false, min:0}
--
, yAxis : yAxis' { position: "", show: false, min:0}
, series : [mkTree TreeRadial treeData'
]
-- , series : [mkTree TreeMap treeData
]
, addZoom : false
--
, addZoom : false
, tooltip : tooltipTriggerAxis -- Necessary?
--
, tooltip : tooltipTriggerAxis -- Necessary?
}
--
}
-- treeEx :: Options
-- treeEx = Options
-- { mainTitle : "Tree"
-- , subTitle : "Radial"
-- , xAxis : xAxis' []
-- , yAxis : yAxis' { position: "", show: false, min:0}
-- , series : [mkTree TreeRadial treeData']
-- , addZoom : false
-- , tooltip : tooltipTriggerAxis -- Necessary?
-- }
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment