From 50459dcad88df2900cc23f4a9877da47c3c3af20 Mon Sep 17 00:00:00 2001 From: Jasper Van der Jeugt Date: Fri, 12 Nov 2010 09:10:03 +0100 Subject: Add renderMissingValue function --- src/Text/Hakyll/ContextManipulations.hs | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/src/Text/Hakyll/ContextManipulations.hs b/src/Text/Hakyll/ContextManipulations.hs index 46ee5ed..f73e88c 100644 --- a/src/Text/Hakyll/ContextManipulations.hs +++ b/src/Text/Hakyll/ContextManipulations.hs @@ -2,6 +2,7 @@ -- manipulate @Context@s. module Text.Hakyll.ContextManipulations ( renderValue + , renderMissingValue , changeValue , changeUrl , copyValue @@ -13,7 +14,7 @@ module Text.Hakyll.ContextManipulations ) where import Control.Monad (liftM) -import Control.Arrow (arr) +import Control.Arrow (arr, (>>>)) import System.Locale (TimeLocale, defaultTimeLocale) import System.FilePath (takeFileName, addExtension, dropExtension) import Data.Time.Format (parseTime, formatTime) @@ -27,14 +28,26 @@ import Text.Hakyll.Context (Context (..)) -- | Do something with a value in a @Context@, but keep the old value as well. -- If the key given is not present in the @Context@, nothing will happen. -renderValue :: String -- ^ Key of which the value should be copied. - -> String -- ^ Key the value should be copied to. - -> (String -> String) -- ^ Function to apply on the value. +-- +renderValue :: String -- ^ Key of which the value should be copied. + -> String -- ^ Key the value should be copied to. + -> (String -> String) -- ^ Function to apply on the value. -> HakyllAction Context Context -renderValue source destination f = arr $ \(Context context) -> Context $ +renderValue source destination f = + arr (Context . M.delete destination . unContext) + >>> renderMissingValue source destination f + +-- | Render a value, but do not overwrite the destination value if it already +-- exists. +-- +renderMissingValue :: String -- ^ Source key + -> String -- ^ Destination key + -> (String -> String) -- ^ Function to apply on the value + -> HakyllAction Context Context +renderMissingValue source destination f = arr $ \(Context context) -> Context $ case M.lookup source context of Nothing -> context - (Just value) -> M.insert destination (f value) context + (Just value) -> M.insertWith (flip const) destination (f value) context -- | Change a value in a @Context@. -- -- cgit v1.2.3