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
a1870bf8
Commit
a1870bf8
authored
Nov 29, 2019
by
Przemyslaw Kaminski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Forest] cache forest so that it doesn't flicker on graph
parent
5497f294
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
32 additions
and
25 deletions
+32
-25
App.purs
src/Gargantext/Components/App.purs
+1
-1
Forest.purs
src/Gargantext/Components/Forest.purs
+8
-6
GraphExplorer.purs
src/Gargantext/Components/GraphExplorer.purs
+21
-18
Routes.purs
src/Gargantext/Routes.purs
+2
-0
No files found.
src/Gargantext/Components/App.purs
View file @
a1870bf8
...
@@ -76,7 +76,7 @@ appCpt = R.hooksComponent "G.C.App.app" cpt where
...
@@ -76,7 +76,7 @@ appCpt = R.hooksComponent "G.C.App.app" cpt where
\session ->
\session ->
simpleLayout $
simpleLayout $
explorerLayout { graphId, mCurrentRoute, session
explorerLayout { graphId, mCurrentRoute, session
, sessions: (fst sessions),
treeId: Nothing,
frontends
, sessions: (fst sessions), frontends
, showLogin}
, showLogin}
forestLayout :: Frontends -> Sessions -> AppRoute -> R2.Setter Boolean -> R.Element -> R.Element
forestLayout :: Frontends -> Sessions -> AppRoute -> R2.Setter Boolean -> R.Element -> R.Element
...
...
src/Gargantext/Components/Forest.purs
View file @
a1870bf8
module Gargantext.Components.Forest where
module Gargantext.Components.Forest where
import Prelude (const, ($), (<$>))
import Prelude (const,
pure,
($), (<$>))
import Data.Array as A
import Data.Array as A
import Data.Maybe (Maybe(..))
import Data.Maybe (Maybe(..))
import Data.Tuple.Nested((/\))
import Reactix as R
import Reactix as R
import Reactix.DOM.HTML as H
import Reactix.DOM.HTML as H
import Gargantext.Ends (Frontends)
import Gargantext.Ends (Frontends)
...
@@ -12,9 +13,9 @@ import Gargantext.Components.Forest.Tree (treeView)
...
@@ -12,9 +13,9 @@ import Gargantext.Components.Forest.Tree (treeView)
import Gargantext.Utils.Reactix as R2
import Gargantext.Utils.Reactix as R2
type Props =
type Props =
(
sessions :: Session
s
(
frontends :: Frontend
s
, route :: AppRoute
, route :: AppRoute
,
frontends :: Frontend
s
,
sessions :: Session
s
, showLogin :: R2.Setter Boolean
, showLogin :: R2.Setter Boolean
)
)
...
@@ -22,9 +23,10 @@ forest :: Record Props -> R.Element
...
@@ -22,9 +23,10 @@ forest :: Record Props -> R.Element
forest props = R.createElement forestCpt props []
forest props = R.createElement forestCpt props []
forestCpt :: R.Component Props
forestCpt :: R.Component Props
forestCpt = R.staticComponent "G.C.Forest.forest" cpt where
forestCpt = R.hooksComponent "G.C.Forest.forest" cpt where
cpt {sessions, route, frontends, showLogin} _ =
cpt {frontends, route, sessions, showLogin} _ = R2.useCache (frontends /\ route /\ sessions) (cpt' showLogin)
R.fragment $ A.cons (plus showLogin) trees
cpt' showLogin (frontends /\ route /\ sessions) =
pure $ R.fragment $ A.cons (plus showLogin) trees
where
where
trees = tree <$> unSessions sessions
trees = tree <$> unSessions sessions
tree s@(Session {treeId}) =
tree s@(Session {treeId}) =
...
...
src/Gargantext/Components/GraphExplorer.purs
View file @
a1870bf8
...
@@ -11,9 +11,9 @@ import Data.Sequence as Seq
...
@@ -11,9 +11,9 @@ import Data.Sequence as Seq
import Data.Set as Set
import Data.Set as Set
import Data.Tuple (fst, snd, Tuple(..))
import Data.Tuple (fst, snd, Tuple(..))
import Data.Tuple.Nested ((/\))
import Data.Tuple.Nested ((/\))
import DOM.Simple.Console (log2)
import DOM.Simple.Types (Element)
import DOM.Simple.Types (Element)
import Effect.Aff (Aff)
import Effect.Aff (Aff)
import Effect (Effect)
import Reactix as R
import Reactix as R
import Reactix.DOM.HTML as RH
import Reactix.DOM.HTML as RH
...
@@ -31,6 +31,7 @@ import Gargantext.Ends (Frontends)
...
@@ -31,6 +31,7 @@ import Gargantext.Ends (Frontends)
import Gargantext.Routes (SessionRoute(NodeAPI), AppRoute)
import Gargantext.Routes (SessionRoute(NodeAPI), AppRoute)
import Gargantext.Sessions (Session, Sessions, get)
import Gargantext.Sessions (Session, Sessions, get)
import Gargantext.Types (NodeType(Graph))
import Gargantext.Types (NodeType(Graph))
import Gargantext.Utils.Reactix as R2
type GraphId = Int
type GraphId = Int
...
@@ -41,7 +42,6 @@ type LayoutProps =
...
@@ -41,7 +42,6 @@ type LayoutProps =
, session :: Session
, session :: Session
, sessions :: Sessions
, sessions :: Sessions
, showLogin :: R.State Boolean
, showLogin :: R.State Boolean
, treeId :: Maybe Int
)
)
type Props = (
type Props = (
...
@@ -57,12 +57,12 @@ explorerLayout props = R.createElement explorerLayoutCpt props []
...
@@ -57,12 +57,12 @@ explorerLayout props = R.createElement explorerLayoutCpt props []
explorerLayoutCpt :: R.Component LayoutProps
explorerLayoutCpt :: R.Component LayoutProps
explorerLayoutCpt = R.hooksComponent "G.C.GraphExplorer.explorerLayout" cpt
explorerLayoutCpt = R.hooksComponent "G.C.GraphExplorer.explorerLayout" cpt
where
where
cpt {graphId, mCurrentRoute,
treeId,
session, sessions, frontends, showLogin} _ = do
cpt {graphId, mCurrentRoute, session, sessions, frontends, showLogin} _ = do
useLoader graphId (getNodes session) handler
useLoader graphId (getNodes session) handler
where
where
handler loaded =
handler loaded =
explorer { graphId, mCurrentRoute, mMetaData
explorer { graphId, mCurrentRoute, mMetaData
,
treeId,
session, sessions, graph: Just graph, frontends, showLogin}
, session, sessions, graph: Just graph, frontends, showLogin}
where (Tuple mMetaData graph) = convert loaded
where (Tuple mMetaData graph) = convert loaded
--------------------------------------------------------------
--------------------------------------------------------------
...
@@ -72,7 +72,7 @@ explorer props = R.createElement explorerCpt props []
...
@@ -72,7 +72,7 @@ explorer props = R.createElement explorerCpt props []
explorerCpt :: R.Component Props
explorerCpt :: R.Component Props
explorerCpt = R.hooksComponent "G.C.GraphExplorer.explorer" cpt
explorerCpt = R.hooksComponent "G.C.GraphExplorer.explorer" cpt
where
where
cpt {frontends, graph, graphId, mCurrentRoute, mMetaData, session, sessions,
treeId,
showLogin} _ = do
cpt {frontends, graph, graphId, mCurrentRoute, mMetaData, session, sessions, showLogin} _ = do
dataRef <- R.useRef graph
dataRef <- R.useRef graph
graphRef <- R.useRef null
graphRef <- R.useRef null
controls <- Controls.useGraphControls
controls <- Controls.useGraphControls
...
@@ -107,7 +107,7 @@ explorerCpt = R.hooksComponent "G.C.GraphExplorer.explorer" cpt
...
@@ -107,7 +107,7 @@ explorerCpt = R.hooksComponent "G.C.GraphExplorer.explorer" cpt
, col [ pullRight [ Toggle.sidebarToggleButton controls.showSidePanel ] ]
, col [ pullRight [ Toggle.sidebarToggleButton controls.showSidePanel ] ]
]
]
, row [ Controls.controls controls ]
, row [ Controls.controls controls ]
, row [ tree (fst controls.showTree) {
mCurrentRoute, treeId
} (snd showLogin)
, row [ tree (fst controls.showTree) {
sessions, mCurrentRoute, frontends
} (snd showLogin)
, RH.div { ref: graphRef, id: "graph-view", className: graphClassName controls, style: {height: "95%"} } [] -- graph container
, RH.div { ref: graphRef, id: "graph-view", className: graphClassName controls, style: {height: "95%"} } [] -- graph container
, mGraph graphRef controls.sigmaRef {graphId, graph, graphStage: controls.graphStage, selectedNodeIds}
, mGraph graphRef controls.sigmaRef {graphId, graph, graphStage: controls.graphStage, selectedNodeIds}
, mSidebar graph mMetaData {frontends, session, selectedNodeIds, showSidePanel: fst controls.showSidePanel}
, mSidebar graph mMetaData {frontends, session, selectedNodeIds, showSidePanel: fst controls.showSidePanel}
...
@@ -118,18 +118,12 @@ explorerCpt = R.hooksComponent "G.C.GraphExplorer.explorer" cpt
...
@@ -118,18 +118,12 @@ explorerCpt = R.hooksComponent "G.C.GraphExplorer.explorer" cpt
]
]
]
]
]
]
where
-- tree {treeId: Nothing} _ _ = RH.div { id: "tree" } []
graphClassName :: Record Controls.Controls -> String
tree :: Boolean -> {mCurrentRoute :: AppRoute, treeId :: Maybe Int} -> ((Boolean -> Boolean) -> Effect Unit) -> R.Element
graphClassName {showSidePanel: (GET.Opened /\ _), showTree: (true /\ _)} = "col-md-8"
tree false _ _ = RH.div { id: "tree" } []
graphClassName {showTree: (true /\ _)} = "col-md-10"
tree true {mCurrentRoute: route, treeId: root} showLogin =
graphClassName {showSidePanel: (GET.Opened /\ _)} = "col-md-10"
RH.div {className: "col-md-2", style: {paddingTop: "60px"}}
graphClassName _ = "col-md-12"
[forest {sessions, route, frontends, showLogin}]
graphClassName :: Record Controls.Controls -> String
graphClassName {showSidePanel: (GET.Opened /\ _), showTree: (true /\ _)} = "col-md-8"
graphClassName {showTree: (true /\ _)} = "col-md-10"
graphClassName {showSidePanel: (GET.Opened /\ _)} = "col-md-10"
graphClassName _ = "col-md-12"
outer = RH.div { className: "col-md-12" }
outer = RH.div { className: "col-md-12" }
inner = RH.div { className: "container-fluid", style: { paddingTop: "90px" } }
inner = RH.div { className: "container-fluid", style: { paddingTop: "90px" } }
...
@@ -139,6 +133,15 @@ explorerCpt = R.hooksComponent "G.C.GraphExplorer.explorer" cpt
...
@@ -139,6 +133,15 @@ explorerCpt = R.hooksComponent "G.C.GraphExplorer.explorer" cpt
pullLeft = RH.div { className: "pull-left" }
pullLeft = RH.div { className: "pull-left" }
pullRight = RH.div { className: "pull-right" }
pullRight = RH.div { className: "pull-right" }
tree :: Boolean
-> {sessions :: Sessions, mCurrentRoute :: AppRoute, frontends :: Frontends}
-> R2.Setter Boolean
-> R.Element
tree false _ _ = RH.div { id: "tree" } []
tree true {sessions, mCurrentRoute: route, frontends} showLogin =
RH.div {className: "col-md-2", style: {paddingTop: "60px"}}
[forest {sessions, route, frontends, showLogin}]
mGraph :: R.Ref (Nullable Element)
mGraph :: R.Ref (Nullable Element)
-> R.Ref Sigma
-> R.Ref Sigma
-> { graphId :: GraphId
-> { graphId :: GraphId
...
...
src/Gargantext/Routes.purs
View file @
a1870bf8
...
@@ -19,6 +19,8 @@ data AppRoute
...
@@ -19,6 +19,8 @@ data AppRoute
| UserPage SessionId Int
| UserPage SessionId Int
| ContactPage SessionId Int Int
| ContactPage SessionId Int Int
derive instance eqAppRoute :: Eq AppRoute
type AnnuaireId = Int
type AnnuaireId = Int
type ContactId = Int
type ContactId = Int
...
...
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