1 {-# LANGUAGE DeriveGeneric #-}
2 {-# LANGUAGE NoMonomorphismRestriction #-}
3 {-# OPTIONS_GHC -Wno-missing-signatures #-}
5 module Examples.Ex01 where
7 import Network.URI.Slug as URI
9 import Symantic.Classes (ProductFunctor (..), SumFunctor (..), adt)
13 -- | A convenient data-type to avoid using 'Either's and Tuples.
19 deriving (Eq, Show, Generic)
21 {- | Polymorphic expression describing the website,
22 to be instantiated to the various interpreters.
23 NoMonomorphismRestriction is used to avoid specifying manually
24 the inferred symantic classes.
27 -- site :: IsoFunctor repr => SumFunctor repr => Slugable repr => repr Site
28 -- Using Generic, 'adt' derives (Iso{a2b, b2a} <%>)
29 -- from the 'Site' algebraic data-type.
31 literalSlug "index.html"
32 <+> literalSlug "about.html"
33 <+> captureSlug "user" <. literalSlug "contact.html"
34 <+> "post" </> many0 (captureSlug "dir")