module Duckling.AmountOfMoney.Helpers
( currencyOnly
, financeWith
, withCents
, withValue
)
where
import Prelude
import Duckling.Dimensions.Types
import Duckling.AmountOfMoney.Types (Currency (..), AmountOfMoneyData (..))
import Duckling.Types hiding (Entity(..))
financeWith :: (AmountOfMoneyData -> t) -> (t -> Bool) -> PatternItem
financeWith f pred = Predicate $ \x ->
case x of
(Token AmountOfMoney x) -> pred (f x)
_ -> False
currencyOnly :: Currency -> AmountOfMoneyData
currencyOnly c = AmountOfMoneyData {currency = c, value = Nothing}
withValue :: Double -> AmountOfMoneyData -> AmountOfMoneyData
withValue x fd = fd {value = Just x}
withCents :: Double -> AmountOfMoneyData -> AmountOfMoneyData
withCents x fd@AmountOfMoneyData {value = Just value} = fd
{value = Just $ value + x / 100}
withCents x AmountOfMoneyData {value = Nothing} = AmountOfMoneyData
{value = Just x, currency = Cent}