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
5f3d7a83
Commit
5f3d7a83
authored
Nov 09, 2021
by
Alexandre Delanoë
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[FIX] back for NodeDocs
parent
143e9929
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
24 additions
and
23 deletions
+24
-23
Update.purs
...Gargantext/Components/Forest/Tree/Node/Action/Update.purs
+4
-4
Settings.purs
src/Gargantext/Components/Forest/Tree/Node/Settings.purs
+4
-3
Status.purs
src/Gargantext/Components/Forest/Tree/Node/Status.purs
+2
-2
Router.purs
src/Gargantext/Components/Router.purs
+2
-2
Router.purs
src/Gargantext/Router.purs
+1
-1
Routes.purs
src/Gargantext/Routes.purs
+4
-4
Types.purs
src/Gargantext/Types.purs
+7
-7
No files found.
src/Gargantext/Components/Forest/Tree/Node/Action/Update.purs
View file @
5f3d7a83
...
...
@@ -41,10 +41,10 @@ update = R.createElement updateCpt
updateCpt :: R.Component UpdateProps
updateCpt = here.component "update" cpt where
cpt props@{ nodeType: Dashboard } _ = pure $ updateDashboard props []
cpt props@{ nodeType: Graph
} _
= pure $ updateGraph props []
cpt props@{ nodeType: NodeList
} _
= pure $ updateNodeList props []
cpt props@{ nodeType:
Texts } _
= pure $ updateTexts props []
cpt props@{ nodeType: _
} _
= pure $ updateOther props []
cpt props@{ nodeType: Graph
} _
= pure $ updateGraph props []
cpt props@{ nodeType: NodeList
} _
= pure $ updateNodeList props []
cpt props@{ nodeType:
NodeTexts } _
= pure $ updateTexts props []
cpt props@{ nodeType: _
} _
= pure $ updateOther props []
updateDashboard :: R2.Component UpdateProps
updateDashboard = R.createElement updateDashboardCpt
...
...
src/Gargantext/Components/Forest/Tree/Node/Settings.purs
View file @
5f3d7a83
...
...
@@ -181,7 +181,8 @@ settingsBox Corpus =
, SearchBox
, Download
--, Clone
, Add [ NodeList
, Add [ NodeTexts
, NodeList
, Graph
, Dashboard
, NodeFrameWrite
...
...
@@ -195,10 +196,10 @@ settingsBox Corpus =
]
}
settingsBox Texts =
settingsBox
Node
Texts =
SettingsBox { show : true
, edit : false
, doc : Documentation Texts
, doc : Documentation
Node
Texts
, buttons : [ Refresh
, Upload
, Download
...
...
src/Gargantext/Components/Forest/Tree/Node/Status.purs
View file @
5f3d7a83
...
...
@@ -13,8 +13,8 @@ hasStatus _ Refresh = Dev
hasStatus _ Config = Dev
hasStatus _ (Merge _) = Dev
hasStatus _ (Documentation _) = Dev
hasStatus Annuaire
Upload
= Dev
hasStatus
Texts Upload
= Dev
hasStatus Annuaire
Upload
= Dev
hasStatus
NodeTexts Upload
= Dev
hasStatus Corpus (Add _) = Dev
hasStatus _ _ = Stable
src/Gargantext/Components/Router.purs
View file @
5f3d7a83
...
...
@@ -267,7 +267,7 @@ renderRouteCpt = here.component "renderRoute" cpt where
GR.RouteFrameCode s n -> routeFrame (Record.merge { nodeType: NodeFrameNotebook } $ sessionNodeProps s n) []
GR.RouteFrameVisio s n -> routeFrame (Record.merge { nodeType: NodeFrameVisio } $ sessionNodeProps s n) []
GR.Team s n -> team (sessionNodeProps s n) []
GR.
Texts s n
-> texts (sessionNodeProps s n) []
GR.
NodeTexts s n
-> texts (sessionNodeProps s n) []
GR.UserPage s n -> user (sessionNodeProps s n) []
]
...
...
@@ -328,7 +328,7 @@ openedSidePanelCpt = here.component "openedSidePanel" cpt where
, metaData
, session
} [] ]
GR.Texts _s _n -> do
GR.
Node
Texts _s _n -> do
pure $ wrapper
[ Texts.textsSidePanel { boxes
, session
...
...
src/Gargantext/Router.purs
View file @
5f3d7a83
...
...
@@ -26,7 +26,7 @@ router = oneOf
, Dashboard <$> (route "dashboard" *> sid) <*> int
, PGraphExplorer <$> (route "graph" *> sid) <*> int
, PhyloExplorer <$> (route "phylo" *> sid) <*> int
,
Texts
<$> (route "texts" *> sid) <*> int
,
NodeTexts
<$> (route "texts" *> sid) <*> int
, Lists <$> (route "lists" *> sid) <*> int
, ContactPage <$> (route "annuaire" *> sid) <*> int
<*> (lit "contact" *> int)
...
...
src/Gargantext/Routes.purs
View file @
5f3d7a83
...
...
@@ -30,7 +30,7 @@ data AppRoute
| RouteFrameWrite SessionId Int
| RouteFrameVisio SessionId Int
| Team SessionId Int
|
Texts
SessionId Int
|
NodeTexts
SessionId Int
| UserPage SessionId Int
...
...
@@ -74,7 +74,7 @@ instance Show AppRoute where
show (PGraphExplorer s i) = "graphExplorer" <> show i <> " (" <> show s <> ")"
show (PhyloExplorer s i) = "phyloExplorer" <> show i <> " (" <> show s <> ")"
show (Dashboard s i) = "Dashboard" <> show i <> " (" <> show s <> ")"
show (
Texts
s i) = "texts" <> show i <> " (" <> show s <> ")"
show (
NodeTexts
s i) = "texts" <> show i <> " (" <> show s <> ")"
show (Lists s i) = "lists" <> show i <> " (" <> show s <> ")"
show (Annuaire s i) = "Annuaire" <> show i <> " (" <> show s <> ")"
show (UserPage s i) = "User" <> show i <> " (" <> show s <> ")"
...
...
@@ -101,7 +101,7 @@ appPath (Document s l i) = "list/" <> show s <> "/" <> show l <> "
appPath (Dashboard s i) = "dashboard/" <> show s <> "/" <> show i
appPath (PGraphExplorer s i) = "graph/" <> show s <> "/" <> show i
appPath (PhyloExplorer s i) = "phylo/" <> show s <> "/" <> show i
appPath (
Texts s i)
= "texts/" <> show s <> "/" <> show i
appPath (
NodeTexts s i)
= "texts/" <> show s <> "/" <> show i
appPath (Lists s i) = "lists/" <> show s <> "/" <> show i
appPath (Annuaire s i) = "annuaire/" <> show s <> "/" <> show i
appPath (UserPage s i) = "user/" <> show s <> "/" <> show i
...
...
@@ -127,7 +127,7 @@ nodeTypeAppRoute GT.NodeFile s i = Just $ RouteFile s i
nodeTypeAppRoute GT.NodeList s i = Just $ Lists s i
nodeTypeAppRoute GT.NodeUser s i = Just $ UserPage s i
nodeTypeAppRoute GT.Team s i = Just $ Team s i
nodeTypeAppRoute GT.
Texts s i = Just $
Texts s i
nodeTypeAppRoute GT.
NodeTexts s i = Just $ Node
Texts s i
nodeTypeAppRoute GT.NodeFrameWrite s i = Just $ RouteFrameWrite s i
nodeTypeAppRoute GT.NodeFrameCalc s i = Just $ RouteFrameCalc s i
nodeTypeAppRoute GT.NodeFrameVisio s i = Just $ RouteFrameVisio s i
...
...
src/Gargantext/Types.purs
View file @
5f3d7a83
...
...
@@ -148,7 +148,7 @@ data NodeType = Annuaire
| Nodes
| Phylo
| Team
| Texts
|
Node
Texts
| Tree
| Url_Document
-- TODO Optional Nodes
...
...
@@ -190,7 +190,7 @@ instance Show NodeType where
show Tree = "NodeTree"
show Team = "NodeTeam"
show NodeList = "NodeList"
show
Texts = "NodeDoc
s"
show
NodeTexts = "NodeText
s"
show NodeFrameWrite = "NodeFrameWrite"
show NodeFrameCalc = "NodeFrameCalc"
show NodeFrameNotebook = "NodeFrameNotebook"
...
...
@@ -218,7 +218,7 @@ instance Read NodeType where
read "Tree" = Just Tree
read "NodeTeam" = Just Team
read "NodeList" = Just NodeList
read "NodeTexts" = Just Texts
read "NodeTexts" = Just
Node
Texts
read "Annuaire" = Just Annuaire
read "NodeFrameWrite" = Just NodeFrameWrite
read "NodeFrameCalc" = Just NodeFrameCalc
...
...
@@ -254,7 +254,7 @@ translateFR = case _ of
Nodes -> "Nœuds"
Phylo -> "Phylo"
Team -> "Équipe"
Texts
-> "Textes"
NodeTexts
-> "Textes"
Tree -> "Arbre"
Url_Document -> "Document URL"
--
...
...
@@ -284,7 +284,7 @@ translateEN = case _ of
Nodes -> "Nodes"
Phylo -> "Phylo"
Team -> "Team"
Texts
-> "Texts"
NodeTexts
-> "Texts"
Tree -> "Tree"
Url_Document -> "URL document"
--
...
...
@@ -322,7 +322,7 @@ getIcon Corpus false = "book-circle"
getIcon Phylo _ = "code-fork"
getIcon Graph _ = "hubzilla"
getIcon Texts _ = "newspaper-o"
getIcon
Node
Texts _ = "newspaper-o"
getIcon Dashboard _ = "signal"
getIcon NodeList _ = "list"
getIcon NodeFile _ = "file" -- TODO depending on mime type we can use fa-file-image etc
...
...
@@ -397,7 +397,7 @@ nodeTypePath NodeUser = "user"
nodeTypePath NodeContact = "contact"
nodeTypePath Tree = "tree"
nodeTypePath NodeList = "lists"
nodeTypePath
Texts
= "texts"
nodeTypePath
NodeTexts
= "texts"
nodeTypePath Team = "team"
nodeTypePath NodeFrameWrite = "write"
nodeTypePath NodeFrameCalc = "calc"
...
...
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