-- | -- Module : Text.Mustache.Type -- Copyright : © 2016–present Stack Buliders -- License : BSD 3 clause -- -- Maintainer : Mark Karpov -- Stability : experimental -- Portability : portable -- -- Types used in the package. You don't usually need to import the module, -- because "Text.Mustache" re-exports everything you may need, import that -- module instead. {-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE GeneralizedNewtypeDeriving #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE TemplateHaskell #-} module Text.Mustache.Type ( Template (..) , Node (..) , Key (..) , showKey , PName (..) , MustacheException (..) , MustacheWarning (..) , displayMustacheWarning ) where import Control.DeepSeq import Control.Exception (Exception(..)) import Data.Data (Data) import Data.Map (Map) import Data.String (IsString (..)) import Data.Text (Text) import Data.Typeable (Typeable, cast) import Data.Void import GHC.Generics import Text.Megaparsec import qualified Data.Map as M import qualified Data.Text as T import qualified Language.Haskell.TH.Syntax as TH -- | Mustache template as name of “top-level” template and a collection of -- all available templates (partials). -- -- 'Template' is a 'Semigroup'. This means that you can combine 'Template's -- (and their caches) using the @('<>')@ operator, the resulting 'Template' -- will have the same currently selected template as the left one. Union of -- caches is also left-biased. data Template = Template { templateActual :: PName -- ^ Name of currently “selected” template (top-level one). , templateCache :: Map PName [Node] -- ^ Collection of all templates that are available for interpolation -- (as partials). The top-level one is also contained here and the -- “focus” can be switched easily by modifying 'templateActual'. } deriving (Eq, Ord, Show, Data, Typeable, Generic) instance Semigroup Template where (Template pname x) <> (Template _ y) = Template pname (M.union x y) -- | @since 2.1.0 instance TH.Lift Template where lift = liftData -- | Structural element of template. data Node = TextBlock Text -- ^ Plain text contained between tags | EscapedVar Key -- ^ HTML-escaped variable | UnescapedVar Key -- ^ Unescaped variable | Section Key [Node] -- ^ Mustache section | InvertedSection Key [Node] -- ^ Inverted section | Partial PName (Maybe Pos) -- ^ Partial with indentation level ('Nothing' means it was inlined) deriving (Eq, Ord, Show, Data, Typeable, Generic) -- | @since 2.1.0 instance TH.Lift Node where lift = liftData -- | Identifier for values to interpolate. -- -- The representation is the following: -- -- * @[]@—empty list means implicit iterators; -- * @[text]@—single key is a normal identifier; -- * @[text1, text2]@—multiple keys represent dotted names. newtype Key = Key { unKey :: [Text] } deriving (Eq, Ord, Show, Semigroup, Monoid, Data, Typeable, Generic) instance NFData Key -- | @since 2.1.0 instance TH.Lift Key where lift = liftData -- | Pretty-print a key, this is helpful, for example, if you want to -- display an error message. -- -- @since 0.2.0 showKey :: Key -> Text showKey (Key []) = "" showKey (Key xs) = T.intercalate "." xs -- | Identifier for partials. Note that with the @OverloadedStrings@ -- extension you can use just string literals to create values of this type. newtype PName = PName { unPName :: Text } deriving (Eq, Ord, Show, Data, Typeable, Generic) instance IsString PName where fromString = PName . T.pack instance NFData PName -- | @since 2.1.0 instance TH.Lift PName where lift = liftData -- | Exception that is thrown when parsing of a template fails or referenced -- values are not provided. newtype MustacheException = MustacheParserException (ParseErrorBundle Text Void) -- ^ Template parser has failed. This contains the parse error. -- -- /Before version 0.2.0 it was called 'MustacheException'./ -- -- /The 'Text' field was added in version 1.0.0./ deriving (Eq, Show, Typeable, Generic) instance Exception MustacheException where displayException (MustacheParserException b) = errorBundlePretty b -- | Warning that may be generated during rendering of a 'Template'. -- -- @since 1.1.1 data MustacheWarning = MustacheVariableNotFound Key -- ^ The template contained a variable for which there was no data -- counterpart in the current context. | MustacheDirectlyRenderedValue Key -- ^ A complex value such as an 'Object' or 'Array' was directly -- rendered into the template. deriving (Eq, Show, Typeable, Generic) -- | Pretty-print a 'MustacheWarning'. -- -- @since 1.1.1 displayMustacheWarning :: MustacheWarning -> String displayMustacheWarning (MustacheVariableNotFound key) = "Referenced value was not provided, key: " ++ T.unpack (showKey key) displayMustacheWarning (MustacheDirectlyRenderedValue key) = "Complex value rendered as such, key: " ++ T.unpack (showKey key) ---------------------------------------------------------------------------- -- TH lifting helpers liftData :: Data a => a -> TH.Q TH.Exp liftData = TH.dataToExpQ (fmap liftText . cast) liftText :: Text -> TH.Q TH.Exp liftText t = TH.AppE (TH.VarE 'T.pack) <$> TH.lift (T.unpack t)