Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Field functions allow you to easily create and validate forms, cleanly handling the uncertainty of parsing user input.
When possible, the field functions use a specific input type (e.g. "number"), allowing supporting browsers to validate the input before form submission. Browsers can also improve usability with this information; for example, mobile browsers might present a specialized keyboard for an input of type "email" or "number".
See the Yesod book chapter on forms for a broader overview of forms in Yesod.
Synopsis
- data FormMessage
- = MsgInvalidInteger Text
- | MsgInvalidNumber Text
- | MsgInvalidEntry Text
- | MsgInvalidUrl Text
- | MsgInvalidEmail Text
- | MsgInvalidTimeFormat
- | MsgInvalidHour Text
- | MsgInvalidMinute Text
- | MsgInvalidSecond Text
- | MsgInvalidDay
- | MsgCsrfWarning
- | MsgValueRequired
- | MsgInputNotFound Text
- | MsgSelectNone
- | MsgInvalidBool Text
- | MsgBoolYes
- | MsgBoolNo
- | MsgDelete
- | MsgInvalidHexColorFormat Text
- defaultFormMessage :: FormMessage -> Text
- textField :: Monad m => RenderMessage (HandlerSite m) FormMessage => Field m Text
- passwordField :: Monad m => RenderMessage (HandlerSite m) FormMessage => Field m Text
- textareaField :: Monad m => RenderMessage (HandlerSite m) FormMessage => Field m Textarea
- hiddenField :: (Monad m, PathPiece p, RenderMessage (HandlerSite m) FormMessage) => Field m p
- intField :: (Monad m, Integral i, RenderMessage (HandlerSite m) FormMessage) => Field m i
- dayField :: Monad m => RenderMessage (HandlerSite m) FormMessage => Field m Day
- timeField :: Monad m => RenderMessage (HandlerSite m) FormMessage => Field m TimeOfDay
- timeFieldTypeTime :: Monad m => RenderMessage (HandlerSite m) FormMessage => Field m TimeOfDay
- timeFieldTypeText :: Monad m => RenderMessage (HandlerSite m) FormMessage => Field m TimeOfDay
- htmlField :: Monad m => RenderMessage (HandlerSite m) FormMessage => Field m Html
- emailField :: Monad m => RenderMessage (HandlerSite m) FormMessage => Field m Text
- multiEmailField :: Monad m => RenderMessage (HandlerSite m) FormMessage => Field m [Text]
- searchField :: Monad m => RenderMessage (HandlerSite m) FormMessage => AutoFocus -> Field m Text
- type AutoFocus = Bool
- urlField :: Monad m => RenderMessage (HandlerSite m) FormMessage => Field m Text
- doubleField :: Monad m => RenderMessage (HandlerSite m) FormMessage => Field m Double
- parseDate :: String -> Either FormMessage Day
- parseTime :: Text -> Either FormMessage TimeOfDay
- newtype Textarea = Textarea {
- unTextarea :: Text
- boolField :: Monad m => RenderMessage (HandlerSite m) FormMessage => Field m Bool
- checkBoxField :: Monad m => Field m Bool
- fileField :: Monad m => Field m FileInfo
- fileAFormReq :: (MonadHandler m, RenderMessage (HandlerSite m) FormMessage) => FieldSettings (HandlerSite m) -> AForm m FileInfo
- fileAFormOpt :: MonadHandler m => FieldSettings (HandlerSite m) -> AForm m (Maybe FileInfo)
- selectFieldHelper :: (Eq a, RenderMessage site FormMessage) => (Text -> Text -> [(Text, Text)] -> WidgetFor site () -> WidgetFor site ()) -> (Text -> Text -> Bool -> WidgetFor site ()) -> (Text -> Text -> [(Text, Text)] -> Text -> Bool -> Text -> WidgetFor site ()) -> Maybe (Text -> WidgetFor site ()) -> HandlerFor site (OptionList a) -> Field (HandlerFor site) a
- selectField :: (Eq a, RenderMessage site FormMessage) => HandlerFor site (OptionList a) -> Field (HandlerFor site) a
- selectFieldList :: (Eq a, RenderMessage site FormMessage, RenderMessage site msg) => [(msg, a)] -> Field (HandlerFor site) a
- selectFieldListGrouped :: (Eq a, RenderMessage site FormMessage, RenderMessage site msg) => [(msg, [(msg, a)])] -> Field (HandlerFor site) a
- radioField :: (Eq a, RenderMessage site FormMessage) => HandlerFor site (OptionList a) -> Field (HandlerFor site) a
- radioFieldList :: (Eq a, RenderMessage site FormMessage, RenderMessage site msg) => [(msg, a)] -> Field (HandlerFor site) a
- withRadioField :: (Eq a, RenderMessage site FormMessage) => (Text -> WidgetFor site () -> WidgetFor site ()) -> (Text -> Text -> Bool -> Text -> WidgetFor site () -> WidgetFor site ()) -> HandlerFor site (OptionList a) -> Field (HandlerFor site) a
- checkboxesField :: Eq a => HandlerFor site (OptionList a) -> Field (HandlerFor site) [a]
- checkboxesFieldList :: (Eq a, RenderMessage site msg) => [(msg, a)] -> Field (HandlerFor site) [a]
- multiSelectField :: Eq a => HandlerFor site (OptionList a) -> Field (HandlerFor site) [a]
- multiSelectFieldList :: (Eq a, RenderMessage site msg) => [(msg, a)] -> Field (HandlerFor site) [a]
- data Option a = Option {}
- data OptionList a
- = OptionList {
- olOptions :: [Option a]
- olReadExternal :: Text -> Maybe a
- | OptionListGrouped {
- olOptionsGrouped :: [(Text, [Option a])]
- olReadExternalGrouped :: Text -> Maybe a
- = OptionList {
- mkOptionList :: [Option a] -> OptionList a
- mkOptionListGrouped :: [(Text, [Option a])] -> OptionList a
- optionsPersist :: (YesodPersist site, PersistQueryRead backend, PathPiece (Key a), RenderMessage site msg, YesodPersistBackend site ~ backend, PersistRecordBackend a backend) => [Filter a] -> [SelectOpt a] -> (a -> msg) -> HandlerFor site (OptionList (Entity a))
- optionsPersistKey :: (YesodPersist site, PersistQueryRead backend, PathPiece (Key a), RenderMessage site msg, backend ~ YesodPersistBackend site, PersistRecordBackend a backend) => [Filter a] -> [SelectOpt a] -> (a -> msg) -> HandlerFor site (OptionList (Key a))
- optionsPairs :: (MonadHandler m, RenderMessage (HandlerSite m) msg) => [(msg, a)] -> m (OptionList a)
- optionsPairsGrouped :: forall m msg a. (MonadHandler m, RenderMessage (HandlerSite m) msg) => [(msg, [(msg, a)])] -> m (OptionList a)
- optionsEnum :: (MonadHandler m, Show a, Enum a, Bounded a) => m (OptionList a)
- colorField :: Monad m => RenderMessage (HandlerSite m) FormMessage => Field m Text
i18n
data FormMessage Source #
Instances
Read FormMessage Source # | |
Defined in Yesod.Form.Types readsPrec :: Int -> ReadS FormMessage # readList :: ReadS [FormMessage] # readPrec :: ReadPrec FormMessage # readListPrec :: ReadPrec [FormMessage] # | |
Show FormMessage Source # | |
Defined in Yesod.Form.Types showsPrec :: Int -> FormMessage -> ShowS # show :: FormMessage -> String # showList :: [FormMessage] -> ShowS # | |
Eq FormMessage Source # | |
Defined in Yesod.Form.Types (==) :: FormMessage -> FormMessage -> Bool # (/=) :: FormMessage -> FormMessage -> Bool # |
defaultFormMessage :: FormMessage -> Text Source #
Fields
textField :: Monad m => RenderMessage (HandlerSite m) FormMessage => Field m Text Source #
Creates a input with type="text"
.
passwordField :: Monad m => RenderMessage (HandlerSite m) FormMessage => Field m Text Source #
Creates an input with type="password"
.
textareaField :: Monad m => RenderMessage (HandlerSite m) FormMessage => Field m Textarea Source #
Monad m, PathPiece p, RenderMessage (HandlerSite m) FormMessage) => Field m p Source #
:: (Creates an input with type="hidden"
; you can use this to store information in a form that users shouldn't see (for example, Yesod stores CSRF tokens in a hidden field).
intField :: (Monad m, Integral i, RenderMessage (HandlerSite m) FormMessage) => Field m i Source #
Creates a input with type="number"
and step=1
.
dayField :: Monad m => RenderMessage (HandlerSite m) FormMessage => Field m Day Source #
Creates an input with type="date"
, validating the input using the parseDate
function.
Add the time
package and import the Data.Time.Calendar module to use this function.
timeField :: Monad m => RenderMessage (HandlerSite m) FormMessage => Field m TimeOfDay Source #
An alias for timeFieldTypeTime
.
timeFieldTypeTime :: Monad m => RenderMessage (HandlerSite m) FormMessage => Field m TimeOfDay Source #
Creates an input with type="time"
. Browsers not supporting this type will fallback to a text field, and Yesod will parse the time as described in timeFieldTypeText
.
Add the time
package and import the Data.Time.LocalTime module to use this function.
Since: 1.4.2
timeFieldTypeText :: Monad m => RenderMessage (HandlerSite m) FormMessage => Field m TimeOfDay Source #
Creates an input with type="text"
, parsing the time from an [H]H:MM[:SS] format, with an optional AM or PM (if not given, AM is assumed for compatibility with the 24 hour clock system).
This function exists for backwards compatibility with the old implementation of timeField
, which used to use type="text"
. Consider using timeField
or timeFieldTypeTime
for improved UX and validation from the browser.
Add the time
package and import the Data.Time.LocalTime module to use this function.
Since: 1.4.2
htmlField :: Monad m => RenderMessage (HandlerSite m) FormMessage => Field m Html Source #
Creates a <textarea>
tag whose input is sanitized to prevent XSS attacks and is validated for having balanced tags.
emailField :: Monad m => RenderMessage (HandlerSite m) FormMessage => Field m Text Source #
Creates an input with type="email"
. Yesod will validate the email's correctness according to RFC5322 and canonicalize it by removing comments and whitespace (see Text.Email.Validate).
multiEmailField :: Monad m => RenderMessage (HandlerSite m) FormMessage => Field m [Text] Source #
Creates an input with type="email"
with the multiple attribute; browsers might implement this as taking a comma separated list of emails. Each email address is validated as described in emailField
.
Since: 1.3.7
searchField :: Monad m => RenderMessage (HandlerSite m) FormMessage => AutoFocus -> Field m Text Source #
Creates an input with type="search"
. For browsers without autofocus support, a JS fallback is used if AutoFocus
is true.
urlField :: Monad m => RenderMessage (HandlerSite m) FormMessage => Field m Text Source #
Creates an input with type="url"
, validating the URL according to RFC3986.
doubleField :: Monad m => RenderMessage (HandlerSite m) FormMessage => Field m Double Source #
Creates a input with type="number"
and step=any
.
A newtype wrapper around a Text
whose ToMarkup
instance converts newlines to HTML <br>
tags.
(When text is entered into a <textarea>
, newline characters are used to separate lines.
If this text is then placed verbatim into HTML, the lines won't be separated, thus the need for replacing with <br>
tags).
If you don't need this functionality, simply use unTextarea
to access the raw text.
Instances
FromJSON Textarea Source # | |
ToJSON Textarea Source # | |
Defined in Yesod.Form.Fields | |
IsString Textarea Source # | |
Defined in Yesod.Form.Fields fromString :: String -> Textarea # | |
Read Textarea Source # | |
Show Textarea Source # | |
ToMarkup Textarea Source # | |
Defined in Yesod.Form.Fields | |
Eq Textarea Source # | |
Ord Textarea Source # | |
Defined in Yesod.Form.Fields | |
PersistField Textarea Source # | |
Defined in Yesod.Form.Fields | |
PersistFieldSql Textarea Source # | |
boolField :: Monad m => RenderMessage (HandlerSite m) FormMessage => Field m Bool Source #
Creates a group of radio buttons to answer the question given in the message. Radio buttons are used to allow differentiating between an empty response (Nothing
) and a no response (Just False
). Consider using the simpler checkBoxField
if you don't need to make this distinction.
If this field is optional, the first radio button is labeled "<None>", the second "Yes" and the third "No".
If this field is required, the first radio button is labeled "Yes" and the second "No".
(Exact label titles will depend on localization).
checkBoxField :: Monad m => Field m Bool Source #
Creates an input with type="checkbox"
.
While the default
implements a radio button so you
can differentiate between an empty response (boolField
Nothing
) and a no
response (Just False
), this simpler checkbox field returns an empty
response as Just False
.
Note that this makes the field always optional.
File AForm
s
fileAFormReq :: (MonadHandler m, RenderMessage (HandlerSite m) FormMessage) => FieldSettings (HandlerSite m) -> AForm m FileInfo Source #
fileAFormOpt :: MonadHandler m => FieldSettings (HandlerSite m) -> AForm m (Maybe FileInfo) Source #
Options
These functions create inputs where one or more options can be selected from a list.
The basic datastructure used is an Option
, which combines a user-facing display value, the internal Haskell value being selected, and an external Text
stored as the value
in the form (used to map back to the internal value). A list of these, together with a function mapping from an external value back to a Haskell value, form an OptionList
, which several of these functions take as an argument.
Typically, you won't need to create an OptionList
directly and can instead make one with functions like optionsPairs
or optionsEnum
. Alternatively, you can use functions like selectFieldList
, which use their [(msg, a)]
parameter to create an OptionList
themselves.
:: (Eq a, RenderMessage site FormMessage) | |
=> (Text -> Text -> [(Text, Text)] -> WidgetFor site () -> WidgetFor site ()) | Outermost part of the field |
-> (Text -> Text -> Bool -> WidgetFor site ()) | An option for None if the field is optional |
-> (Text -> Text -> [(Text, Text)] -> Text -> Bool -> Text -> WidgetFor site ()) | Other options |
-> Maybe (Text -> WidgetFor site ()) | Group headers placed inbetween options |
-> HandlerFor site (OptionList a) | |
-> Field (HandlerFor site) a |
A helper function for constucting selectField
s with optional option groups. You may want to use this when you define your custom selectField
s or radioField
s.
Since: 1.6.2
selectField :: (Eq a, RenderMessage site FormMessage) => HandlerFor site (OptionList a) -> Field (HandlerFor site) a Source #
Creates a <select>
tag with optional <optgroup>
s for selecting one option. Example usage:
areq (selectField $ optionsPairs [(MsgValue1, "value1"),(MsgValue2, "value2")]) "Which value?" Nothing
selectFieldList :: (Eq a, RenderMessage site FormMessage, RenderMessage site msg) => [(msg, a)] -> Field (HandlerFor site) a Source #
Creates a <select>
tag for selecting one option. Example usage:
areq (selectFieldList [("Value 1" :: Text, "value1"),("Value 2", "value2")]) "Which value?" Nothing
selectFieldListGrouped :: (Eq a, RenderMessage site FormMessage, RenderMessage site msg) => [(msg, [(msg, a)])] -> Field (HandlerFor site) a Source #
Creates a <select>
tag with <optgroup>
s for selecting one option.
Since: 1.7.0
radioField :: (Eq a, RenderMessage site FormMessage) => HandlerFor site (OptionList a) -> Field (HandlerFor site) a Source #
Creates an input with type="radio"
for selecting one option.
radioFieldList :: (Eq a, RenderMessage site FormMessage, RenderMessage site msg) => [(msg, a)] -> Field (HandlerFor site) a Source #
Creates an input with type="radio"
for selecting one option.
:: (Eq a, RenderMessage site FormMessage) | |
=> (Text -> WidgetFor site () -> WidgetFor site ()) | nothing case for mopt |
-> (Text -> Text -> Bool -> Text -> WidgetFor site () -> WidgetFor site ()) | cases for values |
-> HandlerFor site (OptionList a) | |
-> Field (HandlerFor site) a |
Allows the user to place the option radio widget somewhere in
the template.
For example: If you want a table of radio options to select.
radioField
is an example on how to use this function.
Since: 1.7.2
checkboxesField :: Eq a => HandlerFor site (OptionList a) -> Field (HandlerFor site) [a] Source #
Creates an input with type="checkbox"
for selecting multiple options.
checkboxesFieldList :: (Eq a, RenderMessage site msg) => [(msg, a)] -> Field (HandlerFor site) [a] Source #
Creates an input with type="checkbox"
for selecting multiple options.
multiSelectField :: Eq a => HandlerFor site (OptionList a) -> Field (HandlerFor site) [a] Source #
Creates a <select>
tag for selecting multiple options.
multiSelectFieldList :: (Eq a, RenderMessage site msg) => [(msg, a)] -> Field (HandlerFor site) [a] Source #
Creates a <select>
tag for selecting multiple options.
Option | |
|
data OptionList a Source #
A structure holding a list of options. Typically you can use a convenience function like mkOptionList
or optionsPairs
instead of creating this directly.
Extended by OptionListGrouped
in 1.7.0.
OptionList | |
| |
OptionListGrouped | |
|
Instances
Functor OptionList Source # | Since: 1.4.6 |
Defined in Yesod.Form.Fields fmap :: (a -> b) -> OptionList a -> OptionList b # (<$) :: a -> OptionList b -> OptionList a # |
mkOptionList :: [Option a] -> OptionList a Source #
Creates an OptionList
, using a Map
to implement the olReadExternal
function.
mkOptionListGrouped :: [(Text, [Option a])] -> OptionList a Source #
Creates an OptionList
, using a Map
to implement the olReadExternalGrouped
function.
Since: 1.7.0
optionsPersist :: (YesodPersist site, PersistQueryRead backend, PathPiece (Key a), RenderMessage site msg, YesodPersistBackend site ~ backend, PersistRecordBackend a backend) => [Filter a] -> [SelectOpt a] -> (a -> msg) -> HandlerFor site (OptionList (Entity a)) Source #
Selects a list of Entity
s with the given Filter
and SelectOpt
s. The (a -> msg)
function is then used to derive the display value for an OptionList
. Example usage:
Country name Text deriving Eq -- Must derive Eq
data CountryForm = CountryForm { country :: Entity Country } countryNameForm :: AForm Handler CountryForm countryNameForm = CountryForm <$> areq (selectField countries) "Which country do you live in?" Nothing where countries = optionsPersist [] [Asc CountryName] countryName
optionsPersistKey :: (YesodPersist site, PersistQueryRead backend, PathPiece (Key a), RenderMessage site msg, backend ~ YesodPersistBackend site, PersistRecordBackend a backend) => [Filter a] -> [SelectOpt a] -> (a -> msg) -> HandlerFor site (OptionList (Key a)) Source #
An alternative to optionsPersist
which returns just the Key
instead of
the entire Entity
.
Since: 1.3.2
optionsPairs :: (MonadHandler m, RenderMessage (HandlerSite m) msg) => [(msg, a)] -> m (OptionList a) Source #
Creates an OptionList
from a list of (display-value, internal value) pairs.
optionsPairsGrouped :: forall m msg a. (MonadHandler m, RenderMessage (HandlerSite m) msg) => [(msg, [(msg, a)])] -> m (OptionList a) Source #
Creates an OptionList
from a list of (display-value, internal value) pairs.
Since: 1.7.0
optionsEnum :: (MonadHandler m, Show a, Enum a, Bounded a) => m (OptionList a) Source #
Creates an OptionList
from an Enum
, using its Show
instance for the user-facing value.
colorField :: Monad m => RenderMessage (HandlerSite m) FormMessage => Field m Text Source #
Creates an input with type="color"
.
The input value must be provided in hexadecimal format #rrggbb.
Since: 1.7.1