yesod/Yesod/Json.hs
Michael Snoyman 3bedd2bf75 Version bump
2011-02-24 21:16:19 +02:00

54 lines
1.6 KiB
Haskell

{-# LANGUAGE TypeSynonymInstances #-}
{-# OPTIONS_GHC -fno-warn-orphans #-}
module Yesod.Json
( -- * Convert from a JSON value
defaultLayoutJson
, jsonToRepJson
-- * Compatibility wrapper for old API
, Json
, jsonScalar
, jsonList
, jsonMap
) where
import Yesod.Handler (GHandler)
import Yesod.Content
( ToContent (toContent), RepHtmlJson (RepHtmlJson), RepHtml (RepHtml)
, RepJson (RepJson), Content (ContentBuilder)
)
import Yesod.Core (defaultLayout, Yesod)
import Yesod.Widget (GWidget)
import qualified Data.JSON.Types as J
import qualified Text.JSON.Enumerator as J
import Data.Text.Lazy (pack)
import Control.Arrow (first)
import Data.Map (fromList)
instance ToContent J.Value where
toContent = flip ContentBuilder Nothing . J.renderValue
-- | Provide both an HTML and JSON representation for a piece of data, using
-- the default layout for the HTML output ('defaultLayout').
defaultLayoutJson :: Yesod master
=> GWidget sub master ()
-> J.Value
-> GHandler sub master RepHtmlJson
defaultLayoutJson w json = do
RepHtml html' <- defaultLayout w
return $ RepHtmlJson html' $ toContent json
-- | Wraps the 'Content' generated by 'jsonToContent' in a 'RepJson'.
jsonToRepJson :: J.Value -> GHandler sub master RepJson
jsonToRepJson = return . RepJson . toContent
type Json = J.Value
jsonScalar :: String -> Json
jsonScalar = J.ValueAtom . J.AtomText . pack
jsonList :: [Json] -> Json
jsonList = J.ValueArray
jsonMap :: [(String, Json)] -> Json
jsonMap = J.ValueObject . fromList . map (first pack)