-- | -- Module : Text.Mustache.Type -- Copyright : © 2016–2017 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 CPP #-} {-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE GeneralizedNewtypeDeriving #-} {-# LANGUAGE OverloadedStrings #-} 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.Semigroup import Data.String (IsString (..)) import Data.Text (Text) import Data.Typeable (Typeable) import Data.Void import GHC.Generics import Text.Megaparsec import qualified Data.Map as M import qualified Data.Text as T -- | 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) -- | 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) -- | 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 -- | 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 -- | Exception that is thrown when parsing of a template fails or referenced -- values are not provided. data MustacheException = MustacheParserException Text (ParseError Char 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) #if MIN_VERSION_base(4,8,0) instance Exception MustacheException where displayException (MustacheParserException s e) = parseErrorPretty' s e #else instance Exception MustacheException #endif -- | 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)