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
e1b13395
Unverified
Commit
e1b13395
authored
Sep 20, 2018
by
Nicolas Pouillard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add another form of decoding for optional fields and use it for document hyperdata
parent
b4b4bde6
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
4 deletions
+10
-4
Documents.purs
src/Gargantext/Pages/Corpus/Doc/Facets/Documents.purs
+3
-2
DecodeMaybe.purs
src/Gargantext/Utils/DecodeMaybe.purs
+7
-2
No files found.
src/Gargantext/Pages/Corpus/Doc/Facets/Documents.purs
View file @
e1b13395
...
@@ -15,6 +15,7 @@ import Effect.Class (liftEffect)
...
@@ -15,6 +15,7 @@ import Effect.Class (liftEffect)
import Effect.Console (log)
import Effect.Console (log)
import Gargantext.Components.Charts.Charts (p'')
import Gargantext.Components.Charts.Charts (p'')
import Gargantext.Config.REST (get)
import Gargantext.Config.REST (get)
import Gargantext.Utils.DecodeMaybe ((.|))
import React (ReactElement)
import React (ReactElement)
import React.DOM (a, b, b', br', div, input, option, select, span, table, tbody, td, text, th, thead, tr)
import React.DOM (a, b, b', br', div, input, option, select, span, table, tbody, td, text, th, thead, tr)
import React.DOM.Props (_type, className, href, onChange, onClick, scope, selected, value)
import React.DOM.Props (_type, className, href, onChange, onClick, scope, selected, value)
...
@@ -115,8 +116,8 @@ newtype Hyperdata = Hyperdata
...
@@ -115,8 +116,8 @@ newtype Hyperdata = Hyperdata
instance decodeHyperdata :: DecodeJson Hyperdata where
instance decodeHyperdata :: DecodeJson Hyperdata where
decodeJson json = do
decodeJson json = do
obj <- decodeJson json
obj <- decodeJson json
title <- obj .
? "nom
"
title <- obj .
| "title
"
source <- obj .
? "fonction
"
source <- obj .
| "source
"
pure $ Hyperdata { title,source }
pure $ Hyperdata { title,source }
instance decodeResponse :: DecodeJson Response where
instance decodeResponse :: DecodeJson Response where
...
...
src/Gargantext/Utils/DecodeMaybe.purs
View file @
e1b13395
...
@@ -4,15 +4,20 @@ import Prelude
...
@@ -4,15 +4,20 @@ import Prelude
import Data.Argonaut (class DecodeJson, Json, getFieldOptional)
import Data.Argonaut (class DecodeJson, Json, getFieldOptional)
import Data.Either (Either)
import Data.Either (Either)
import Data.Maybe (Maybe(..))
import Data.Maybe (Maybe(..)
, fromMaybe
)
import Foreign.Object (Object)
import Foreign.Object (Object)
foreign import isNull :: forall a. a -> Boolean
foreign import isNull :: forall a. a -> Boolean
getFieldOptional' :: forall
t9. DecodeJson t9 => Object Json -> String -> Either String (Maybe t9
)
getFieldOptional' :: forall
a. DecodeJson a => Object Json -> String -> Either String (Maybe a
)
getFieldOptional' o s = (case _ of
getFieldOptional' o s = (case _ of
Just v -> if isNull v then Nothing else v
Just v -> if isNull v then Nothing else v
Nothing -> Nothing
Nothing -> Nothing
) <$> (getFieldOptional o s)
) <$> (getFieldOptional o s)
infix 7 getFieldOptional' as .?|
infix 7 getFieldOptional' as .?|
getFieldOptionalAsMempty :: forall a. DecodeJson a => Monoid a => Object Json -> String -> Either String a
getFieldOptionalAsMempty o s = fromMaybe mempty <$> (getFieldOptional' o s)
infix 7 getFieldOptionalAsMempty as .|
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