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
131
Issues
131
List
Board
Labels
Milestones
Merge Requests
3
Merge Requests
3
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
97d4977f
Verified
Commit
97d4977f
authored
Jun 17, 2024
by
Przemyslaw Kaminski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[docs] title type fix to Maybe String
parent
e908119b
Pipeline
#6238
failed with stages
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
7 deletions
+6
-7
Types.purs
src/Gargantext/Components/DocsTable/Types.purs
+6
-7
No files found.
src/Gargantext/Components/DocsTable/Types.purs
View file @
97d4977f
...
@@ -81,20 +81,19 @@ instance JSON.ReadForeign Response where
...
@@ -81,20 +81,19 @@ instance JSON.ReadForeign Response where
, title }
, title }
type HyperdataT =
( title :: String
, source :: Maybe String )
newtype Hyperdata = Hyperdata
newtype Hyperdata = Hyperdata
{ pub_year :: Int
{ pub_year :: Int
| HyperdataT
, title :: String
, source :: Maybe String
}
}
derive instance Generic Hyperdata _
derive instance Generic Hyperdata _
instance JSON.ReadForeign Hyperdata where
instance JSON.ReadForeign Hyperdata where
readImpl f = do
readImpl f = do
{ publication_year, source, title} :: { publication_year :: Int | HyperdataT } <- JSON.readImpl f
{ publication_year, source, title: mTitle } :: { publication_year :: Int
, source :: Maybe String
, title :: Maybe String } <- JSON.readImpl f
pure $ Hyperdata { pub_year: publication_year
pure $ Hyperdata { pub_year: publication_year
, title
, title
: fromMaybe "-" mTitle
, source }
, source }
type LocalCategories = Map Int Category
type LocalCategories = Map Int Category
...
...
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