ditto-0.4: src/Ditto/Generalized/Named.hs
{-# LANGUAGE
ScopedTypeVariables
, TypeFamilies
#-}
-- | This module provides helper functions for HTML input elements. These helper functions are not specific to any particular web framework or html library.
--
-- For unnamed (enumerated) formlets, see @Ditto.Generalized.Unnamed@
module Ditto.Generalized.Named
( G.Choice(..)
, input
, inputMaybe
, inputNoData
, inputFile
, inputMulti
, inputChoice
, inputList
, label
, errors
, childErrors
, withErrors
, G.withChildErrors
, ireq
, iopt
) where
import Ditto.Backend
import Ditto.Core
import Ditto.Types
import Data.Text (Text)
import Data.List.NonEmpty (NonEmpty(..))
import qualified Ditto.Generalized.Internal as G
-- | used for constructing elements like @\<input type=\"text\"\>@, which pure a single input value.
input :: (Environment m input, FormError input err)
=> Text
-> (input -> Either err a)
-> (FormId -> a -> view)
-> a
-> Form m input err view a
input name = G.input (getNamedFormId name)
-- | used for elements like @\<input type=\"submit\"\>@ which are not always present in the form submission data.
inputMaybe :: (Environment m input, FormError input err)
=> Text
-> (input -> Either err a)
-> (FormId -> Maybe a -> view)
-> Maybe a
-> Form m input err view (Maybe a)
inputMaybe name = G.inputMaybe (getNamedFormId name)
-- | used for elements like @\<input type=\"reset\"\>@ which take a value, but are never present in the form data set.
inputNoData :: (Environment m input)
=> Text
-> (FormId -> view)
-> Form m input err view ()
inputNoData name = G.inputNoData (getNamedFormId name)
-- | used for @\<input type=\"file\"\>@
inputFile :: forall m input err view ft. (Environment m input, FormInput input, FormError input err, ft ~ FileType input, Monoid ft)
=> Text
-> (FormId -> view)
-> Form m input err view (FileType input)
inputFile name = G.inputFile (getNamedFormId name)
-- | used for groups of checkboxes, @\<select multiple=\"multiple\"\>@ boxes
inputMulti :: forall m input err view a lbl. (FormError input err, FormInput input, Environment m input, Eq a)
=> Text
-> [(a, lbl)] -- ^ value, label, initially checked
-> (input -> Either err [a])
-> (FormId -> [G.Choice lbl a] -> view) -- ^ function which generates the view
-> (a -> Bool) -- ^ isChecked/isSelected initially
-> Form m input err view [a]
inputMulti name = G.inputMulti (getNamedFormId name)
-- | radio buttons, single @\<select\>@ boxes
inputChoice :: forall a m err input lbl view. (FormError input err, FormInput input, Environment m input, Eq a, Monoid view)
=> Text
-> (a -> Bool) -- ^ is default
-> NonEmpty (a, lbl) -- ^ value, label
-> (input -> Either err a)
-> (FormId -> [G.Choice lbl a] -> view) -- ^ function which generates the view
-> Form m input err view a
inputChoice name = G.inputChoice (getNamedFormId name)
-- | this is necessary in order to basically map over the decoding function
inputList :: forall m input err a view. (Monad m, FormError input err, Environment m input)
=> Text
-> (input -> m (Either err [a])) -- ^ decoding function for the list
-> ([view] -> view) -- ^ how to concatenate views
-> [a] -- ^ initial values
-> view -- ^ view to generate in the fail case
-> (a -> Form m input err view a)
-> Form m input err view [a]
inputList name = G.inputList (getNamedFormId name)
-- | used to create @\<label\>@ elements
label :: Environment m input
=> Text
-> (FormId -> view)
-> Form m input err view ()
label name = G.label (getNamedFormId name)
-- | used to add a list of err messages to a 'Form'
--
-- This function automatically takes care of extracting only the
-- errors that are relevent to the form element it is attached to via
-- '<*' or '*>'.
errors :: Environment m input
=> ([err] -> view) -- ^ function to convert the err messages into a view
-> Form m input err view ()
errors = G.errors
-- | similar to 'errors' but includes err messages from children of the form as well.
childErrors :: Environment m input
=> ([err] -> view)
-> Form m input err view ()
childErrors = G.childErrors
-- | modify the view of a form based on its errors
withErrors :: Environment m input
=> (view -> [err] -> view)
-> Form m input err view a
-> Form m input err view a
withErrors = G.withErrors
-- | a @Form@ with no @view@
ireq :: forall m input view err a. (Monoid view, Environment m input, FormError input err)
=> Text
-> (input -> Either err a)
-> a
-> Form m input err view a
ireq name fromInput initialValue = Form (pure . fromInput) (pure initialValue) $ do
i <- getNamedFormId name
v <- getFormInput' i
case v of
Default -> pure
( mempty
, Ok ( Proved
{ pos = unitRange i
, unProved = initialValue
} )
)
Found inp -> case fromInput inp of
Right a -> pure
( mempty
, Ok ( Proved
{ pos = unitRange i
, unProved = a
} )
)
Left err -> pure
( mempty
, Error [(unitRange i, err)]
)
Missing -> pure
( mempty
, Error [(unitRange i, commonFormError (InputMissing i :: CommonFormError input) :: err)]
)
-- | an optional @Form@ with no @view@
iopt :: forall m input view err a. (Monoid view, Environment m input, FormError input err)
=> Text
-> (input -> Either err a)
-> Maybe a
-> Form m input err view (Maybe a)
iopt name fromInput initialValue = Form (pure . fmap Just . fromInput) (pure initialValue) $ do
i <- getNamedFormId name
v <- getFormInput' i
case v of
Default -> pure
( mempty
, Ok ( Proved
{ pos = unitRange i
, unProved = initialValue
} )
)
Found inp -> case fromInput inp of
Right a -> pure
( mempty
, Ok ( Proved
{ pos = unitRange i
, unProved = Just a
} )
)
Left err -> pure
( mempty
, Error [(unitRange i, err)]
)
Missing -> pure
( mempty
, Ok ( Proved
{ pos = unitRange i
, unProved = Nothing
} )
)