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
142
Issues
142
List
Board
Labels
Milestones
Merge Requests
4
Merge Requests
4
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
gargantext
purescript-gargantext
Commits
7016c787
Commit
7016c787
authored
Oct 07, 2019
by
James Laver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix links in tree
parent
00acf894
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
8 deletions
+8
-8
FacetsTable.purs
src/Gargantext/Components/FacetsTable.purs
+2
-2
Tree.purs
src/Gargantext/Components/Tree.purs
+2
-2
Annuaire.purs
src/Gargantext/Pages/Annuaire.purs
+2
-2
Types.purs
src/Gargantext/Types.purs
+2
-2
No files found.
src/Gargantext/Components/FacetsTable.purs
View file @
7016c787
...
...
@@ -26,7 +26,7 @@ import Gargantext.Hooks.Loader (useLoader)
import Gargantext.Components.Search.Types (Category(..), CategoryQuery(..), favCategory, decodeCategory, putCategories)
import Gargantext.Components.Table as T
import Gargantext.Routes (SessionRoute(Search,NodeAPI))
import Gargantext.Sessions (Session)
import Gargantext.Sessions (Session
, sessionId
)
import Gargantext.Types (NodeType(..), OrderBy(..), NodePath(..))
import Gargantext.Utils (toggleSet)
import Gargantext.Utils.DecodeMaybe ((.|))
...
...
@@ -289,7 +289,7 @@ pageCpt = R.staticComponent "G.C.FacetsTable.Page" cpt
isDeleted (DocumentsView {id}) = Set.member id (fst deletions).deleted
pairUrl (Pair {id,label})
| id > 1 = H.a { href, target: "blank" } [ H.text label ]
where href = url session $ NodePath NodeContact (Just id)
where href = url session $ NodePath
(sessionId session)
NodeContact (Just id)
| otherwise = H.text label
comma = H.span {} [ H.text ", " ]
rows = row <$> filter (not <<< isDeleted) documents
...
...
src/Gargantext/Components/Tree.purs
View file @
7016c787
...
...
@@ -31,7 +31,7 @@ import Gargantext.Ends (Frontends, url)
import Gargantext.Hooks.Loader (useLoader)
import Gargantext.Routes as Routes
import Gargantext.Routes (AppRoute, SessionRoute(..))
import Gargantext.Sessions (Session)
import Gargantext.Sessions (Session
, sessionId
)
import Gargantext.Types (class ToQuery, toQuery, NodeType(..), NodePath(..), readNodeType)
import Gargantext.Utils (id)
import Gargantext.Utils.Reactix as R2
...
...
@@ -228,7 +228,7 @@ nodeMainSpan d p folderOpen session frontends = R.createElement el p []
pure $ H.span (dropProps droppedFile isDragOver)
[ folderIcon folderOpen
, H.a { href: (url frontends (NodePath nodeType (Just id)))
, H.a { href: (url frontends (NodePath
(sessionId session)
nodeType (Just id)))
, style: {marginLeft: "22px"}
}
[ nodeText {isSelected: (mCorpusId mCurrentRoute) == (Just id), name:name'} ]
...
...
src/Gargantext/Pages/Annuaire.purs
View file @
7016c787
...
...
@@ -9,7 +9,7 @@ import Effect.Aff (Aff)
import Gargantext.Components.Table as T
import Gargantext.Ends (url)
import Gargantext.Routes (SessionRoute(..))
import Gargantext.Sessions (Session)
import Gargantext.Sessions (Session
, sessionId
)
import Gargantext.Types (NodePath(..), NodeType(..))
import Gargantext.Config.REST (get)
import Gargantext.Hooks.Loader (useLoader)
...
...
@@ -113,7 +113,7 @@ contactCells :: Session -> Maybe Contact -> Array R.Element
contactCells session = maybe [] render
where
render (Contact { id, hyperdata : (HyperdataContact contact@{who: who, ou:ou} ) }) =
let nodepath = NodePath NodeContact (Just id)
let nodepath = NodePath
(sessionId session)
NodeContact (Just id)
href = url session nodepath in
[ H.text ""
, H.a { href, target: "blank" } [ H.text $ maybe "name" identity contact.title ]
...
...
src/Gargantext/Types.purs
View file @
7016c787
...
...
@@ -252,10 +252,10 @@ type ChartOpts =
-- , limit :: Maybe Limit
}
data NodePath = NodePath NodeType (Maybe Id)
data NodePath = NodePath
SessionId
NodeType (Maybe Id)
nodePath :: NodePath -> String
nodePath (NodePath
t i) = nodeTypePath t
<> id
nodePath (NodePath
s t i) = nodeTypePath t <> "/" <> show s
<> id
where id = maybe "" (\j -> "/" <> show j) i
data ChartType = Histo | Scatter | ChartPie | ChartTree
...
...
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