| Copyright | © 2016–2017 Stack Buliders |
|---|---|
| License | BSD 3 clause |
| Maintainer | Mark Karpov <markkarpov@openmailbox.org> |
| Stability | experimental |
| Portability | portable |
| Safe Haskell | None |
| Language | Haskell2010 |
Text.Microstache.Type
Description
Types used by the package. You don't usually need to import the module, because Text.Microstache re-exports everything you may need, import that module instead.
Synopsis
- data Template = Template {
- templateActual :: PName
- templateCache :: Map PName [Node]
- data Node
- newtype Key = Key {}
- showKey :: Key -> Text
- newtype PName = PName {}
- data MustacheException
- displayMustacheException :: MustacheException -> String
- data MustacheWarning
- displayMustacheWarning :: MustacheWarning -> String
Documentation
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 Templates
(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.
Constructors
| Template | |
Fields
| |
Instances
| Semigroup Template Source # | |||||
| Data Template Source # | |||||
Defined in Text.Microstache.Type Methods gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Template -> c Template Source # gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Template Source # toConstr :: Template -> Constr Source # dataTypeOf :: Template -> DataType Source # dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c Template) Source # dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Template) Source # gmapT :: (forall b. Data b => b -> b) -> Template -> Template Source # gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Template -> r Source # gmapQr :: forall r r'. (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Template -> r Source # gmapQ :: (forall d. Data d => d -> u) -> Template -> [u] Source # gmapQi :: Int -> (forall d. Data d => d -> u) -> Template -> u Source # gmapM :: Monad m => (forall d. Data d => d -> m d) -> Template -> m Template Source # gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Template -> m Template Source # gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Template -> m Template Source # | |||||
| Generic Template Source # | |||||
Defined in Text.Microstache.Type Associated Types
| |||||
| Show Template Source # | |||||
| Eq Template Source # | |||||
| Ord Template Source # | |||||
Defined in Text.Microstache.Type | |||||
| type Rep Template Source # | |||||
Defined in Text.Microstache.Type type Rep Template = D1 ('MetaData "Template" "Text.Microstache.Type" "microstache-1.0.3-65hwVxKYsea8EtbUB5KPre" 'False) (C1 ('MetaCons "Template" 'PrefixI 'True) (S1 ('MetaSel ('Just "templateActual") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 PName) :*: S1 ('MetaSel ('Just "templateCache") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 (Map PName [Node])))) | |||||
Structural element of template.
Constructors
| 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 Word) | Partial with indentation level ( |
Instances
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.
Instances
| NFData Key Source # | |||||
Defined in Text.Microstache.Type | |||||
| Monoid Key Source # | |||||
| Semigroup Key Source # | |||||
| Data Key Source # | |||||
Defined in Text.Microstache.Type Methods gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Key -> c Key Source # gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Key Source # toConstr :: Key -> Constr Source # dataTypeOf :: Key -> DataType Source # dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c Key) Source # dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Key) Source # gmapT :: (forall b. Data b => b -> b) -> Key -> Key Source # gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Key -> r Source # gmapQr :: forall r r'. (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Key -> r Source # gmapQ :: (forall d. Data d => d -> u) -> Key -> [u] Source # gmapQi :: Int -> (forall d. Data d => d -> u) -> Key -> u Source # gmapM :: Monad m => (forall d. Data d => d -> m d) -> Key -> m Key Source # gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Key -> m Key Source # gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Key -> m Key Source # | |||||
| Generic Key Source # | |||||
Defined in Text.Microstache.Type Associated Types
| |||||
| Show Key Source # | |||||
| Eq Key Source # | |||||
| Ord Key Source # | |||||
| type Rep Key Source # | |||||
Defined in Text.Microstache.Type | |||||
showKey :: Key -> Text Source #
Pretty-print a key, this is helpful, for example, if you want to display an error message.
Identifier for partials. Note that with the OverloadedStrings
extension you can use just string literals to create values of this type.
Instances
| NFData PName Source # | |||||
Defined in Text.Microstache.Type | |||||
| Data PName Source # | |||||
Defined in Text.Microstache.Type Methods gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> PName -> c PName Source # gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c PName Source # toConstr :: PName -> Constr Source # dataTypeOf :: PName -> DataType Source # dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c PName) Source # dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c PName) Source # gmapT :: (forall b. Data b => b -> b) -> PName -> PName Source # gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> PName -> r Source # gmapQr :: forall r r'. (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> PName -> r Source # gmapQ :: (forall d. Data d => d -> u) -> PName -> [u] Source # gmapQi :: Int -> (forall d. Data d => d -> u) -> PName -> u Source # gmapM :: Monad m => (forall d. Data d => d -> m d) -> PName -> m PName Source # gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> PName -> m PName Source # gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> PName -> m PName Source # | |||||
| IsString PName Source # | |||||
Defined in Text.Microstache.Type Methods fromString :: String -> PName Source # | |||||
| Generic PName Source # | |||||
Defined in Text.Microstache.Type Associated Types
| |||||
| Show PName Source # | |||||
| Eq PName Source # | |||||
| Ord PName Source # | |||||
Defined in Text.Microstache.Type | |||||
| type Rep PName Source # | |||||
Defined in Text.Microstache.Type | |||||
data MustacheException Source #
Exception that is thrown when parsing of a template has failed or referenced values were not provided.
Constructors
| MustacheParserException ParseError | Template parser has failed. This contains the parse error. |
| MustacheRenderException PName Key | Deprecated: Not thrown anymore, will be removed in the next major version of microstache A referenced value was not provided. The exception provides info
about partial in which the issue happened |
Instances
| Exception MustacheException Source # | |||||
Defined in Text.Microstache.Type | |||||
| Generic MustacheException Source # | |||||
Defined in Text.Microstache.Type Associated Types
Methods from :: MustacheException -> Rep MustacheException x Source # to :: Rep MustacheException x -> MustacheException Source # | |||||
| Show MustacheException Source # | |||||
Defined in Text.Microstache.Type | |||||
| Eq MustacheException Source # | |||||
Defined in Text.Microstache.Type Methods (==) :: MustacheException -> MustacheException -> Bool Source # (/=) :: MustacheException -> MustacheException -> Bool Source # | |||||
| type Rep MustacheException Source # | |||||
Defined in Text.Microstache.Type type Rep MustacheException = D1 ('MetaData "MustacheException" "Text.Microstache.Type" "microstache-1.0.3-65hwVxKYsea8EtbUB5KPre" 'False) (C1 ('MetaCons "MustacheParserException" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 ParseError)) :+: C1 ('MetaCons "MustacheRenderException" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 PName) :*: S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Key))) | |||||
displayMustacheException :: MustacheException -> String Source #
Since: 1.0.1
data MustacheWarning Source #
Since: 1.0.1
Constructors
| 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 |
Instances
| Exception MustacheWarning Source # | |||||
Defined in Text.Microstache.Type Methods toException :: MustacheWarning -> SomeException Source # fromException :: SomeException -> Maybe MustacheWarning Source # | |||||
| Generic MustacheWarning Source # | |||||
Defined in Text.Microstache.Type Associated Types
Methods from :: MustacheWarning -> Rep MustacheWarning x Source # to :: Rep MustacheWarning x -> MustacheWarning Source # | |||||
| Show MustacheWarning Source # | |||||
Defined in Text.Microstache.Type | |||||
| Eq MustacheWarning Source # | |||||
Defined in Text.Microstache.Type Methods (==) :: MustacheWarning -> MustacheWarning -> Bool Source # (/=) :: MustacheWarning -> MustacheWarning -> Bool Source # | |||||
| type Rep MustacheWarning Source # | |||||
Defined in Text.Microstache.Type type Rep MustacheWarning = D1 ('MetaData "MustacheWarning" "Text.Microstache.Type" "microstache-1.0.3-65hwVxKYsea8EtbUB5KPre" 'False) (C1 ('MetaCons "MustacheVariableNotFound" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Key)) :+: C1 ('MetaCons "MustacheDirectlyRenderedValue" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Key))) | |||||
displayMustacheWarning :: MustacheWarning -> String Source #
Since: 1.0.1