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
fcd86a04
Commit
fcd86a04
authored
May 28, 2024
by
Alexandre Delanoë
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/670-dev-first-tree-lighter-calls' into dev
parents
11568684
34902e03
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
93 additions
and
35 deletions
+93
-35
BaseModal.purs
src/Gargantext/Components/Bootstrap/Floaty/BaseModal.purs
+6
-0
Tree.purs
src/Gargantext/Components/Forest/Tree.purs
+43
-7
Node.purs
src/Gargantext/Components/Forest/Tree/Node.purs
+44
-28
No files found.
src/Gargantext/Components/Bootstrap/Floaty/BaseModal.purs
View file @
fcd86a04
...
@@ -140,6 +140,12 @@ component = R.memo' $ R.hooksComponent componentName cpt where
...
@@ -140,6 +140,12 @@ component = R.memo' $ R.hooksComponent componentName cpt where
then showModal window selector modalEvents
then showModal window selector modalEvents
else hideModal window selector
else hideModal window selector
-- | When box is true, show the modal immediately
R.useEffectOnce' $ do
if isVisible
then showModal window selector modalEvents
else hideModal window selector
-- | Behaviors
-- | Behaviors
-- |
-- |
let
let
...
...
src/Gargantext/Components/Forest/Tree.purs
View file @
fcd86a04
...
@@ -90,9 +90,13 @@ type NSCommon =
...
@@ -90,9 +90,13 @@ type NSCommon =
, handed :: Handed
, handed :: Handed
, session :: Session )
, session :: Session )
-- The annoying 'render' here is busting a cycle in the low tech
-- | The annoying 'render' here is busting a cycle in the low tech
-- way. This function is only called by functions in this module, so
-- way. This function is only called by functions in this module, so
-- we just have to careful in what we pass.
-- we just have to careful in what we pass.
-- Without the 'render' function though, we get a 'tree' cpt that
-- depends on a 'renderTreeChildren' component, which itself depends
-- on 'tree'. This results in PS 'CycleInDeclaration' compilation
-- error.
type ChildLoaderProps =
type ChildLoaderProps =
( id :: ID
( id :: ID
, render :: R2.Leaf TreeProps
, render :: R2.Leaf TreeProps
...
@@ -109,7 +113,6 @@ type PerformActionProps =
...
@@ -109,7 +113,6 @@ type PerformActionProps =
-- | Loads and renders the tree starting at the given root node id.
-- | Loads and renders the tree starting at the given root node id.
treeLoader :: R2.Leaf ( key :: String | LoaderProps )
treeLoader :: R2.Leaf ( key :: String | LoaderProps )
treeLoader = R2.leaf treeLoaderCpt
treeLoader = R2.leaf treeLoaderCpt
treeLoaderCpt :: R.Component ( key :: String | LoaderProps )
treeLoaderCpt :: R.Component ( key :: String | LoaderProps )
treeLoaderCpt = R2.hereComponent here "treeLoader" hCpt where
treeLoaderCpt = R2.hereComponent here "treeLoader" hCpt where
-- treeLoaderCpt :: R.Memo LoaderProps
-- treeLoaderCpt :: R.Memo LoaderProps
...
@@ -155,7 +158,6 @@ getNodeTreeFirstLevel session nodeId = get session $ GR.TreeFirstLevel (Just nod
...
@@ -155,7 +158,6 @@ getNodeTreeFirstLevel session nodeId = get session $ GR.TreeFirstLevel (Just nod
tree :: R2.Leaf TreeProps
tree :: R2.Leaf TreeProps
tree props = R.createElement treeCpt props []
tree props = R.createElement treeCpt props []
treeCpt :: R.Component TreeProps
treeCpt :: R.Component TreeProps
treeCpt = here.component "tree" cpt where
treeCpt = here.component "tree" cpt where
cpt p@{ frontends
cpt p@{ frontends
...
@@ -255,8 +257,42 @@ renderTreeChildrenCpt = here.component "renderTreeChildren" cpt where
...
@@ -255,8 +257,42 @@ renderTreeChildrenCpt = here.component "renderTreeChildren" cpt where
where
where
nodeProps = RecordE.pick p :: Record NodeProps
nodeProps = RecordE.pick p :: Record NodeProps
renderChild (NTree (LNode {id: cId}) _) = childLoader props [] where
-- | | If a child doesn't have children, avoid normal
props = Record.merge nodeProps { id: cId, render, root }
-- | 'childLoader' which queries API for first-level data (there
-- | is nothing new here) and render the child immediately.
renderChild tree'@(NTree (LNode {id: cId}) []) = childDummyLoader renderProps []
where
renderProps = Record.merge nodeProps { id: cId, render, root, tree: tree' } :: Record ChildDummyLoaderProps
renderChild (NTree (LNode {id: cId}) _children) = childLoader renderProps []
where
renderProps = Record.merge nodeProps { id: cId, render, root } :: Record ChildLoaderProps
type ChildDummyLoaderProps =
( tree :: FTree
| ChildLoaderProps
)
-- | A "dummy" loader: this is because for nodes without children, we
-- | don't want to make the API call.
childDummyLoader :: R2.Component ChildDummyLoaderProps
childDummyLoader = R.createElement childDummyLoaderCpt
childDummyLoaderCpt :: R.Component ChildDummyLoaderProps
childDummyLoaderCpt = R2.hereComponent here "childDummyLoader" hCpt where
hCpt hp p@{ reloadTree
, render
, root
, tree: tree' } _ = do
{ reloadRoot } <- Store.use
reload <- T.useBox T2.newReload
pure $ paint reload tree'
where
paint reload tree' = render (Record.merge base extra) where
base = nodeProps { reload = reload }
extra = { root, tree: tree' }
nodeProps = RecordE.pick p :: Record NodeProps
childLoader :: R2.Component ChildLoaderProps
childLoader :: R2.Component ChildLoaderProps
...
...
src/Gargantext/Components/Forest/Tree/Node.purs
View file @
fcd86a04
...
@@ -31,6 +31,7 @@ import Gargantext.Components.Nodes.Corpus.Types (CorpusData)
...
@@ -31,6 +31,7 @@ import Gargantext.Components.Nodes.Corpus.Types (CorpusData)
import Gargantext.Context.Progress (asyncContext, asyncProgress)
import Gargantext.Context.Progress (asyncContext, asyncProgress)
import Gargantext.Ends (Frontends, url)
import Gargantext.Ends (Frontends, url)
import Gargantext.Hooks.Loader (useLoader)
import Gargantext.Hooks.Loader (useLoader)
import Gargantext.Hooks.UpdateEffect (useUpdateEffect1')
import Gargantext.Hooks.Version (Version, useVersion)
import Gargantext.Hooks.Version (Version, useVersion)
import Gargantext.Routes as Routes
import Gargantext.Routes as Routes
import Gargantext.Sessions (Session, sessionId)
import Gargantext.Sessions (Session, sessionId)
...
@@ -100,6 +101,19 @@ nodeSpanCpt = here.component "nodeSpan" cpt
...
@@ -100,6 +101,19 @@ nodeSpanCpt = here.component "nodeSpan" cpt
folderOpen' <- R2.useLive' folderOpen
folderOpen' <- R2.useLive' folderOpen
isBoxVisible' <- R2.useLive' isBoxVisible
isBoxVisiblePersist <- T.useBox isBoxVisible'
isBoxVisiblePersist' <- R2.useLive' isBoxVisiblePersist
-- | Modal not visible initially, but visible after first user
-- | click. This is to avoid modal loading initially
-- | (optimization for large trees), but persist it after user
-- | opens it.
useUpdateEffect1' isBoxVisible'
if isBoxVisible'
then T.write_ true isBoxVisiblePersist
else pure unit
-- tasks' <- T.read tasks
-- tasks' <- T.read tasks
-- Computed
-- Computed
...
@@ -221,17 +235,17 @@ nodeSpanCpt = here.component "nodeSpan" cpt
...
@@ -221,17 +235,17 @@ nodeSpanCpt = here.component "nodeSpan" cpt
-- // Abstract informations //
-- // Abstract informations //
nodeTooltip
--
nodeTooltip
{ id
--
{ id
, nodeType
--
, nodeType
, name
--
, name
}
--
}
[
--
[
case mVersion of
--
case mVersion of
Nothing -> mempty
--
Nothing -> mempty
Just v -> versionComparator v
--
Just v -> versionComparator v
]
--
]
,
--
,
R.createPortal
R.createPortal
[
[
fileTypeView
fileTypeView
...
@@ -340,24 +354,25 @@ nodeSpanCpt = here.component "nodeSpan" cpt
...
@@ -340,24 +354,25 @@ nodeSpanCpt = here.component "nodeSpan" cpt
-- // Modals //
-- // Modals //
B.baseModal
R2.when isBoxVisiblePersist' (
{ isVisibleBox: isBoxVisible
B.baseModal
, noBody: true
{ isVisibleBox: isBoxVisible
, noHeader: true
, noBody: true
, modalClassName: "forest-tree-node-modal"
, noHeader: true
}
, modalClassName: "forest-tree-node-modal"
[
nodePopupView
{ boxes
, closeCallback: \_ -> T.write_ false isBoxVisible
, dispatch
, id
, name
, nodeType
, session
}
}
]
[
]
nodePopupView
{ boxes
, closeCallback: \_ -> T.write_ false isBoxVisible
, dispatch
, id
, name
, nodeType
, session
}
]
)
,
,
-- // Mainleaf indicator of selected node //
-- // Mainleaf indicator of selected node //
--
--
...
@@ -372,6 +387,7 @@ nodeSpanCpt = here.component "nodeSpan" cpt
...
@@ -372,6 +387,7 @@ nodeSpanCpt = here.component "nodeSpan" cpt
{ className: "mainleaf-selection-indicator" }
{ className: "mainleaf-selection-indicator" }
[]
[]
]
]
]
---------------------------------------------------------
---------------------------------------------------------
...
...
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