Data.Codec.Argonaut
- Package
- purescript-codec-argonaut
- Repository
- garyb/purescript-codec-argonaut
#JsonCodec Source
type JsonCodec a = BasicCodec (Either JsonDecodeError) Json aCodec type for Json values.
#JsonDecodeError Source
data JsonDecodeErrorError type for failures while decoding.
Constructors
TypeMismatch StringUnexpectedValue JsonAtIndex Int JsonDecodeErrorAtKey String JsonDecodeErrorNamed String JsonDecodeErrorMissingValue
Instances
#printJsonDecodeError Source
printJsonDecodeError :: JsonDecodeError -> StringPrints a JsonDecodeError as a somewhat readable error message.
#JIndexedCodec Source
type JIndexedCodec a = Codec (Either JsonDecodeError) JArray (List Json) a aCodec type for specifically indexed JArray elements.
#indexedArray Source
indexedArray :: forall a. String -> JIndexedCodec a -> JsonCodec aA codec for types that are encoded as an array with a specific layout.
For example, given that we'd like to encode a Person as a 2-element array,
like so [ "Karl", 25 ], we could write the following codec:
type Person = { name ∷ String, age ∷ Int }
JA.indexedArray "Test Object" $
{ name: _, age: _ }
<$> _.name ~ index 0 JA.string
<*> _.age ~ index 1 JA.int
#index Source
index :: forall a. Int -> JsonCodec a -> JIndexedCodec aA codec for an item in an indexedArray.
#JPropCodec Source
type JPropCodec a = Codec (Either JsonDecodeError) JObject (List JAssoc) a aCodec type for JObject prop/value pairs.
#object Source
object :: forall a. String -> JPropCodec a -> JsonCodec aA codec for objects that are encoded with specific properties.
#prop Source
prop :: forall a. String -> JsonCodec a -> JPropCodec aA codec for a property of an object.
#record Source
record :: JPropCodec (Record ())The starting value for a object-record codec. Used with recordProp it
provides a convenient method for defining codecs for record types that
encode into JSON objects of the same shape.
For example:
myRecordCodec =
object "MyRecord" $ record
# recordProp (SProxy :: SProxy "tag") tagCodec
# recordProp (SProxy :: SProxy "value") valueCodec
#recordProp Source
recordProp :: forall r' r a p. IsSymbol p => RowCons p a r r' => SProxy p -> JsonCodec a -> JPropCodec (Record r) -> JPropCodec (Record r')Used with record to define codecs for record types that encode into JSON
objects of the same shape. See the comment on record for an example.
#prismaticCodec Source
prismaticCodec :: forall b a. (a -> Maybe b) -> (b -> a) -> JsonCodec a -> JsonCodec bAdapts an existing codec with a pair of functions to allow a value to be
further refined. If the inner decoder fails an UnexpectedValue error will
be raised for JSON input.
This function is named as such as the pair of functions it accepts
correspond with the preview and view functions of a Prism-style lens.
For example, in order to parse a mapping from an enum to strings, which
doesn't match up nicely with Data.Codec.Argonaut.Sum.enumSum we can use
prismaticCodec:
data Direction = North | South | West | East
directionCodec :: JsonCodec Direction
directionCodec = prismaticCodec dec enc string
where
dec = case _ of
"N" -> Just North
"S" -> Just South
"W" -> Just West
"E" -> Just East
_ -> Nothing
enc = case _ of
North -> "N"
South -> "S"
West -> "W"
East -> "E"
Re-exports from Data.Codec
#(~) Source
Operator alias for Data.Profunctor.lmap (left-associative / precedence 5)
GCodec is defined as a Profunctor so that lmap can be used to target
specific fields when defining a codec for a product type. This operator
is a convenience for that:
tupleCodec =
Tuple
<$> fst ~ fstCodec
<*> snd ~ sndCodec