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
1a71faf8
Commit
1a71faf8
authored
Oct 05, 2018
by
Alexandre Delanoë
Browse files
Options
Browse Files
Download
Plain Diff
[TREE] fixing merge and adding json instance.
parents
c33bf2ad
07ca04f4
Changes
2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
157 additions
and
27 deletions
+157
-27
Tree.purs
src/Gargantext/Components/Tree.purs
+151
-24
Config.purs
src/Gargantext/Config.purs
+6
-3
No files found.
src/Gargantext/Components/Tree.purs
View file @
1a71faf8
This diff is collapsed.
Click to expand it.
src/Gargantext/Config.purs
View file @
1a71faf8
...
@@ -9,9 +9,8 @@ toUrl Front Corpus 1 == "http://localhost:2015/#/corpus/1"
...
@@ -9,9 +9,8 @@ toUrl Front Corpus 1 == "http://localhost:2015/#/corpus/1"
-}
-}
module Gargantext.Config where
module Gargantext.Config where
import Prelude ( class Eq, class Ord, class Show
import Prelude
, compare, eq, show, (<>), identity)
import Data.Argonaut (class DecodeJson, decodeJson)
import Data.Map (Map)
import Data.Map (Map)
import Data.Map as DM
import Data.Map as DM
import Data.Maybe (maybe)
import Data.Maybe (maybe)
...
@@ -180,3 +179,7 @@ instance ordNodeType :: Ord NodeType where
...
@@ -180,3 +179,7 @@ instance ordNodeType :: Ord NodeType where
instance eqNodeType :: Eq NodeType where
instance eqNodeType :: Eq NodeType where
eq n1 n2 = eq (show n1) (show n2)
eq n1 n2 = eq (show n1) (show n2)
------------------------------------------------------------
------------------------------------------------------------
instance decodeJsonNodeType :: DecodeJson NodeType where
decodeJson json = do
obj <- decodeJson json
pure $ readNodeType obj
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