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
1
Merge Requests
1
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
Przemyslaw Kaminski
purescript-gargantext
Commits
9bab7a23
Commit
9bab7a23
authored
Oct 06, 2021
by
arturo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
>>> BEGIN 340
parent
41ecf1e2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
90 additions
and
37 deletions
+90
-37
Tabs.purs
src/Gargantext/Components/Nodes/Lists/Tabs.purs
+90
-37
No files found.
src/Gargantext/Components/Nodes/Lists/Tabs.purs
View file @
9bab7a23
module Gargantext.Components.Nodes.Lists.Tabs where
module Gargantext.Components.Nodes.Lists.Tabs where
import Gargantext.Components.Nodes.Lists.Types hiding (here)
import Data.Array as A
import Data.Array as A
import Data.Maybe (Maybe(..), fromMaybe)
import Data.Maybe (Maybe(..), fromMaybe)
import Data.Tuple.Nested ((/\))
import Data.Tuple.Nested ((/\))
...
@@ -12,15 +14,14 @@ import Gargantext.Components.Nodes.Corpus.Chart.Pie (pie, bar)
...
@@ -12,15 +14,14 @@ import Gargantext.Components.Nodes.Corpus.Chart.Pie (pie, bar)
import Gargantext.Components.Nodes.Corpus.Chart.Tree (tree)
import Gargantext.Components.Nodes.Corpus.Chart.Tree (tree)
import Gargantext.Components.Nodes.Corpus.Chart.Utils (mNgramsTypeFromTabType)
import Gargantext.Components.Nodes.Corpus.Chart.Utils (mNgramsTypeFromTabType)
import Gargantext.Components.Nodes.Corpus.Types (CorpusData)
import Gargantext.Components.Nodes.Corpus.Types (CorpusData)
import Gargantext.Components.Nodes.Lists.Types hiding (here)
import Gargantext.Components.Tab as Tab
import Gargantext.Components.Tab as Tab
import Gargantext.Prelude (bind, pure, unit, ($), (<>))
import Gargantext.Components.Table.Types (Params)
import Gargantext.Prelude (bind, pure, unit, ($))
import Gargantext.Sessions (Session)
import Gargantext.Sessions (Session)
import Gargantext.Types (CTabNgramType(..), Mode(..), TabSubType(..), TabType(..), modeTabType)
import Gargantext.Types (CTabNgramType(..), Mode(..), TabSubType(..), TabType(..), modeTabType)
import Gargantext.Utils.Reactix as R2
import Gargantext.Utils.Reactix as R2
import Gargantext.Utils.Toestand as T2
import Gargantext.Utils.Toestand as T2
import Reactix as R
import Reactix as R
import Reactix.DOM.HTML as H
import Record as Record
import Record as Record
import Record.Extra as RX
import Record.Extra as RX
import Toestand as T
import Toestand as T
...
@@ -70,33 +71,32 @@ ngramsViewCpt = here.component "ngramsView" cpt where
...
@@ -70,33 +71,32 @@ ngramsViewCpt = here.component "ngramsView" cpt where
path <- T.useBox $ NTC.initialPageParams props.session initialPath.corpusId [initialPath.listId] initialPath.tabType
path <- T.useBox $ NTC.initialPageParams props.session initialPath.corpusId [initialPath.listId] initialPath.tabType
{ listIds, nodeId, params } <- T.useLive T.unequal path
{ listIds, nodeId, params } <- T.useLive T.unequal path
let path' = {
corpusId: nodeId
pure $
, limit: params.limit
R.fragment
, listId: fromMaybe defaultListId $ A.head listIds
[
, tabType: tabType
ngramsView'
}
{ mode
let chartParams = {
, boxes
corpusId: path'.corpusId
, session
, limit: Just path'.limit
, params
, listId: path'.listId
, listIds
, tabType: path'.tabType
, nodeId
}
, corpusData: props.corpusData
} []
pure $ R.fragment
,
( charts chartParams tabNgramType
NT.mainNgramsTable
<> [ NT.mainNgramsTable { afterSync: afterSync chartsReload
{ afterSync: afterSync chartsReload
, boxes
, boxes
, cacheState
, cacheState
, defaultListId
, defaultListId
, path
, path
, session
, session
, tabNgramType
, tabNgramType
, tabType
, tabType
, withAutoUpdate: false
, withAutoUpdate: false
} []
} []
]
]
)
where
where
afterSync chartsReload _ = do
afterSync chartsReload _ = do
case mNgramsType of
case mNgramsType of
...
@@ -118,7 +118,56 @@ ngramsViewCpt = here.component "ngramsView" cpt where
...
@@ -118,7 +118,56 @@ ngramsViewCpt = here.component "ngramsView" cpt where
, tabType
, tabType
}
}
charts _params CTabTerms = [
----------------
-- @XXX re-render issue -> clone component
type NgramsViewProps' =
( mode :: Mode
, boxes :: Boxes
, session :: Session
, listIds :: Array Int
, params :: Params
, nodeId :: Int
, corpusData :: CorpusData
)
ngramsView' :: R2.Component NgramsViewProps'
ngramsView' = R.createElement ngramsViewCpt'
ngramsViewCpt' :: R.Memo NgramsViewProps'
ngramsViewCpt' = R.memo' $ here.component "ngramsView_clone" cpt where
cpt { mode
, boxes
, session
, listIds
, params
, nodeId
, corpusData: { defaultListId }
} _ = do
let path' = {
corpusId: nodeId
, limit: params.limit
, listId: fromMaybe defaultListId $ A.head listIds
, tabType: tabType
}
let chartParams = {
corpusId: path'.corpusId
, limit: Just path'.limit
, listId: path'.listId
, tabType: path'.tabType
}
pure $
R.fragment $
charts chartParams tabNgramType
where
charts _params CTabTerms = [
{-
{-
H.div {className: "row"}
H.div {className: "row"}
[ H.div {className: "col-12 d-flex justify-content-center"}
[ H.div {className: "col-12 d-flex justify-content-center"}
...
@@ -147,10 +196,14 @@ ngramsViewCpt = here.component "ngramsView" cpt where
...
@@ -147,10 +196,14 @@ ngramsViewCpt = here.component "ngramsView" cpt where
]
]
, getChartFunction chartType $ { path: params, session }
, getChartFunction chartType $ { path: params, session }
-}
-}
]
]
charts params _ = [ chart params mode ]
charts params' _ = [ chart params' mode ]
chart path Authors = pie { boxes, path, session, onClick: Nothing, onInit: Nothing }
chart path Institutes = tree { boxes, path, session, onClick: Nothing, onInit: Nothing }
chart path Sources = bar { boxes, path, session, onClick: Nothing, onInit: Nothing }
chart path Terms = metrics { boxes, path, session, onClick: Nothing, onInit: Nothing }
tabType = TabCorpus (TabNgramType tabNgramType)
chart path Authors = pie { boxes, path, session, onClick: Nothing, onInit: Nothing }
tabNgramType = modeTabType mode
chart path Institutes = tree { boxes, path, session, onClick: Nothing, onInit: Nothing }
chart path Sources = bar { boxes, path, session, onClick: Nothing, onInit: Nothing }
chart path Terms = metrics { boxes, path, session, onClick: Nothing, onInit: Nothing }
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