Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add maybeField #311

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/Hakyll/Web/Template/Context.hs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ module Hakyll.Web.Template.Context
, Context (..)
, field
, constField
, maybeField
, listField
, listFieldWith
, functionField
Expand All @@ -28,7 +29,7 @@ module Hakyll.Web.Template.Context

--------------------------------------------------------------------------------
import Control.Applicative (Alternative (..), (<$>))
import Control.Monad (msum)
import Control.Monad (msum, (<=<))
import Data.List (intercalate)
import qualified Data.Map as M
import Data.Monoid (Monoid (..))
Expand Down Expand Up @@ -102,6 +103,11 @@ field key value = field' key (fmap StringField . value)
constField :: String -> String -> Context a
constField key = field key . const . return

--------------------------------------------------------------------------------
-- | A 'field' which will only contain value for 'Just's. This
-- is mostly useful along with conditional template construct @$if(key)$@.
maybeField :: String -> (Item a -> Compiler (Maybe String)) -> Context a
maybeField key value = field key $ maybe empty return <=< value

--------------------------------------------------------------------------------
listField :: String -> Context a -> Compiler [Item a] -> Context b
Expand Down