[docs] title type fix to Maybe String

parent e908119b
Pipeline #6238 failed with stages
...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment