Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
haskell-gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
157
Issues
157
List
Board
Labels
Milestones
Merge Requests
9
Merge Requests
9
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
haskell-gargantext
Commits
73bccfaf
Commit
73bccfaf
authored
Sep 20, 2018
by
Alexandre Delanoë
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'tree-json'
parents
0f0205a3
3be142c7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
55 additions
and
30 deletions
+55
-30
Node.hs
src/Gargantext/API/Node.hs
+2
-2
Main.hs
src/Gargantext/Core/Types/Main.hs
+52
-27
Node.hs
src/Gargantext/Database/Types/Node.hs
+1
-1
No files found.
src/Gargantext/API/Node.hs
View file @
73bccfaf
...
...
@@ -49,7 +49,7 @@ import Gargantext.Database.Facet (FacetDoc, getDocFacet
import
Gargantext.TextFlow
import
Gargantext.Viz.Graph
(
Graph
)
import
Gargantext.Core
(
Lang
(
..
))
import
Gargantext.Core.Types.Main
(
Tree
)
import
Gargantext.Core.Types.Main
(
Tree
,
NodeTree
)
import
Gargantext.Text.Terms
(
TermType
(
..
))
-------------------------------------------------------------------
-------------------------------------------------------------------
...
...
@@ -112,7 +112,7 @@ type GraphAPI = Get '[JSON] Graph
graphAPI
::
Connection
->
NodeId
->
Server
GraphAPI
graphAPI
_
_
=
liftIO
$
textFlow
(
Mono
EN
)
(
Contexts
contextText
)
type
TreeAPI
=
Get
'[
J
SON
]
(
Tree
NodeT
yp
e
)
type
TreeAPI
=
Get
'[
J
SON
]
(
Tree
NodeT
re
e
)
treeAPI
::
Connection
->
NodeId
->
Server
TreeAPI
treeAPI
_
_
=
undefined
...
...
src/Gargantext/Core/Types/Main.hs
View file @
73bccfaf
...
...
@@ -15,18 +15,22 @@ Portability : POSIX
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE TemplateHaskell #-}
-----------------------------------------------------------------------
-
-----------------------------------------------------------------------
module
Gargantext.Core.Types.Main
where
------------------------------------------------------------------------
import
Data.Aeson
(
FromJSON
,
ToJSON
)
import
Data.Aeson
(
FromJSON
,
ToJSON
,
toJSON
)
import
Data.Aeson
as
A
import
Data.Aeson.TH
(
deriveJSON
)
import
Data.Eq
(
Eq
())
import
Data.Monoid
((
<>
))
import
Data.Text
(
Text
)
import
Data.Swagger
import
Gargantext.Database.Types.Node
import
Gargantext.Core.Utils.Prefix
(
unPrefix
)
import
Gargantext.Prelude
import
GHC.Generics
(
Generic
)
...
...
@@ -34,44 +38,45 @@ import Test.QuickCheck (elements)
import
Test.QuickCheck.Arbitrary
(
Arbitrary
,
arbitrary
)
------------------------------------------------------------------------
-- All the Database is structred like a hierarchical Tree
data
Tree
a
=
NodeT
a
[
Tree
a
]
deriving
(
Show
,
Read
,
Eq
,
Generic
)
instance
ToJSON
(
Tree
NodeType
)
instance
FromJSON
(
Tree
NodeType
)
data
NodeTree
=
NodeTree
{
_nt_name
::
Text
,
_nt_type
::
NodeType
,
_nt_id
::
Int
}
deriving
(
Show
,
Read
,
Generic
)
instance
ToSchema
(
Tree
NodeType
)
instance
Arbitrary
(
Tree
NodeType
)
where
arbitrary
=
elements
[
userTree
,
userTree
]
-- data Tree a = NodeT a [Tree a]
-- same as Data.Tree
leafT
::
a
->
Tree
a
leafT
x
=
NodeT
x
[]
$
(
deriveJSON
(
unPrefix
"_nt_"
)
''
N
odeTree
)
------------------------------------------------------------------------
-- Garg Network is a network of all Garg nodes
--gargNetwork = undefined
-- | Garg Node is Database Schema Typed as specification
-- gargNode gathers all the Nodes of all users on one Node
gargNode
::
[
Tree
NodeT
yp
e
]
gargNode
::
[
Tree
NodeT
re
e
]
gargNode
=
[
userTree
]
-- | User Tree simplified
userTree
::
Tree
NodeType
userTree
=
NodeT
NodeUser
[
projectTree
]
userTree
::
Tree
NodeTree
userTree
=
TreeN
(
NodeTree
"user name"
NodeUser
1
)
$
[
leafT
$
NodeTree
"MyPage"
UserPage
0
]
<>
[
annuaireTree
,
projectTree
]
-- | Project Tree
projectTree
::
Tree
NodeType
projectTree
=
NodeT
Project
[
corpusTree
]
projectTree
::
Tree
NodeTree
projectTree
=
TreeN
(
NodeTree
"Project CNRS/IMT"
Project
2
)
[
corpusTree
10
"A"
,
corpusTree
20
"B"
]
type
Individu
=
Document
-- | Corpus Tree
corpusTree
::
Tree
NodeType
corpusTree
=
NodeT
NodeCorpus
(
[
leafT
Document
]
<>
[
leafT
Lists
]
<>
[
leafT
Metrics
]
<>
[
leafT
Classification
]
annuaireTree
::
Tree
NodeTree
annuaireTree
=
TreeN
(
NodeTree
"Annuaire"
Annuaire
41
)
(
[
leafT
$
NodeTree
"IMT"
Individu
42
]
<>
[
leafT
$
NodeTree
"CNRS"
Individu
43
]
)
corpusTree
::
NodeId
->
Text
->
Tree
NodeTree
corpusTree
nId
t
=
TreeN
(
NodeTree
(
"Corpus "
<>
t
)
NodeCorpus
nId
)
(
[
leafT
$
NodeTree
"Documents"
Document
(
nId
+
1
)]
-- <> [ leafT $ NodeTree "My lists" Lists 5]
-- <> [ leafT (NodeTree "Metrics A" Metrics 6) ]
-- <> [ leafT (NodeTree "Class A" Classification 7)]
)
-- TODO make instances of Nodes
...
...
@@ -92,7 +97,6 @@ data Lists = StopList | MainList | MapList | GroupList
-- | Community Manager Use Case
type
Annuaire
=
NodeCorpus
type
Individu
=
Document
-- | Favorites Node enable Node categorization
type
Favorites
=
Node
HyperdataFavorites
...
...
@@ -135,3 +139,24 @@ type ParentId = NodeId
type
Limit
=
Int
type
Offset
=
Int
------------------------------------------------------------------------
-- All the Database is structred like a hierarchical Tree
data
Tree
a
=
TreeN
a
[
Tree
a
]
deriving
(
Show
,
Read
,
Eq
,
Generic
)
instance
ToJSON
(
Tree
NodeTree
)
where
toJSON
(
TreeN
node
nodes
)
=
object
[
"node"
A
..=
toJSON
node
,
"children"
A
..=
toJSON
nodes
]
instance
FromJSON
(
Tree
NodeTree
)
instance
ToSchema
NodeTree
instance
ToSchema
(
Tree
NodeTree
)
instance
Arbitrary
(
Tree
NodeTree
)
where
arbitrary
=
elements
[
userTree
,
userTree
]
-- data Tree a = NodeT a [Tree a]
-- same as Data.Tree
leafT
::
a
->
Tree
a
leafT
x
=
TreeN
x
[]
src/Gargantext/Database/Types/Node.hs
View file @
73bccfaf
...
...
@@ -274,7 +274,7 @@ type NodeCorpus = Node HyperdataCorpus
type
Document
=
Node
HyperdataDocument
------------------------------------------------------------------------
data
NodeType
=
NodeUser
|
Project
|
Folder
|
NodeCorpus
|
Annuaire
|
Document
|
UserPage
|
DocumentCopy
|
Favorites
data
NodeType
=
NodeUser
|
Project
|
Folder
|
NodeCorpus
|
Annuaire
|
Document
|
Individu
|
UserPage
|
DocumentCopy
|
Favorites
|
Classification
|
Lists
|
Metrics
|
Occurrences
...
...
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