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
cad54c04
Commit
cad54c04
authored
May 25, 2020
by
Alexandre Delanoë
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[REFACT][Tree] clean name
parent
657b356f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
Box.purs
src/Gargantext/Components/Forest/Tree/Node/Box.purs
+6
-6
No files found.
src/Gargantext/Components/Forest/Tree/Node/Box.purs
View file @
cad54c04
...
@@ -18,7 +18,7 @@ import Gargantext.Components.Forest.Tree.Node.Action.Add (NodePopup(..), createN
...
@@ -18,7 +18,7 @@ import Gargantext.Components.Forest.Tree.Node.Action.Add (NodePopup(..), createN
import Gargantext.Components.Forest.Tree.Node.Action.Rename (renameBox)
import Gargantext.Components.Forest.Tree.Node.Action.Rename (renameBox)
import Gargantext.Components.Forest.Tree.Node.Action.Upload (uploadFileView, fileTypeView, uploadTermListView, copyFromCorpusView)
import Gargantext.Components.Forest.Tree.Node.Action.Upload (uploadFileView, fileTypeView, uploadTermListView, copyFromCorpusView)
import Gargantext.Components.Forest.Tree.Node.ProgressBar (asyncProgressBar, BarType(..))
import Gargantext.Components.Forest.Tree.Node.ProgressBar (asyncProgressBar, BarType(..))
import Gargantext.Components.GraphExplorer.API as G
E
API
import Gargantext.Components.GraphExplorer.API as G
raph
API
import Gargantext.Components.Lang (allLangs, Lang(EN))
import Gargantext.Components.Lang (allLangs, Lang(EN))
import Gargantext.Components.Search.SearchBar (searchBar)
import Gargantext.Components.Search.SearchBar (searchBar)
import Gargantext.Components.Search.SearchField (Search, defaultSearch, isIsTex)
import Gargantext.Components.Search.SearchField (Search, defaultSearch, isIsTex)
...
@@ -89,7 +89,8 @@ nodeMainSpan p@{ dispatch, folderOpen, frontends, session } = R.createElement el
...
@@ -89,7 +89,8 @@ nodeMainSpan p@{ dispatch, folderOpen, frontends, session } = R.createElement el
, H.a { href: (url frontends (GT.NodePath (sessionId session) nodeType (Just id)))
, H.a { href: (url frontends (GT.NodePath (sessionId session) nodeType (Just id)))
}
}
[ nodeText { isSelected: mAppRouteId mCurrentRoute == Just id
[ nodeText { isSelected: mAppRouteId mCurrentRoute == Just id
, name: name' props } ]
, name: name' props
} ]
, nodeActions { id
, nodeActions { id
, nodeType
, nodeType
, refreshTree: const $ dispatch RefreshTree
, refreshTree: const $ dispatch RefreshTree
...
@@ -213,13 +214,13 @@ nodeActionsCpt = R.hooksComponent "G.C.F.T.N.B.nodeActions" cpt
...
@@ -213,13 +214,13 @@ nodeActionsCpt = R.hooksComponent "G.C.F.T.N.B.nodeActions" cpt
cpt _ _ = do
cpt _ _ = do
pure $ H.div {} []
pure $ H.div {} []
graphVersions session graphId = G
E
API.graphVersions { graphId, session }
graphVersions session graphId = G
raph
API.graphVersions { graphId, session }
triggerRefresh refreshTree = refreshTree
triggerRefresh refreshTree = refreshTree
type NodeActionsGraphProps =
type NodeActionsGraphProps =
(
(
id :: ID
id :: ID
, graphVersions :: Record G
E
API.GraphVersions
, graphVersions :: Record G
raph
API.GraphVersions
, session :: Session
, session :: Session
, triggerRefresh :: Unit -> Aff Unit
, triggerRefresh :: Unit -> Aff Unit
)
)
...
@@ -263,7 +264,7 @@ graphUpdateButtonCpt = R.hooksComponent "G.C.F.T.N.B.graphUpdateButton" cpt
...
@@ -263,7 +264,7 @@ graphUpdateButtonCpt = R.hooksComponent "G.C.F.T.N.B.graphUpdateButton" cpt
onClick (true /\ setEnabled) _ = do
onClick (true /\ setEnabled) _ = do
launchAff_ $ do
launchAff_ $ do
liftEffect $ setEnabled $ const false
liftEffect $ setEnabled $ const false
g <- G
E
API.updateGraphVersions { graphId: id, session }
g <- G
raph
API.updateGraphVersions { graphId: id, session }
liftEffect $ setEnabled $ const true
liftEffect $ setEnabled $ const true
triggerRefresh unit
triggerRefresh unit
pure unit
pure unit
...
@@ -286,7 +287,6 @@ mAppRouteId (Just (Routes.UserPage _ id)) = Just id
...
@@ -286,7 +287,6 @@ mAppRouteId (Just (Routes.UserPage _ id)) = Just id
mAppRouteId (Just (Routes.Document _ id _ )) = Just id
mAppRouteId (Just (Routes.Document _ id _ )) = Just id
mAppRouteId (Just (Routes.ContactPage _ id _ )) = Just id
mAppRouteId (Just (Routes.ContactPage _ id _ )) = Just id
mAppRouteId (Just (Routes.CorpusDocument _ id _ _)) = Just id
mAppRouteId (Just (Routes.CorpusDocument _ id _ _)) = Just id
mAppRouteId _ = Nothing
mAppRouteId _ = 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