ditto-lucid-0.1.2.0: Add support for using lucid with Ditto

Safe HaskellNone
LanguageHaskell98

Ditto.Lucid.Named

Synopsis

Documentation

foldTraverse_ :: (Foldable t, Applicative f, Monoid (f b)) => (a -> t (f b)) -> t a -> f () Source #

inputText :: (Monad m, FormError err, PathPiece text, Applicative f) => (input -> Either err text) -> String -> text -> Form m input err (HtmlT f ()) text Source #

inputPassword :: (Monad m, FormError err, PathPiece text, Applicative f) => (input -> Either err text) -> String -> text -> Form m input err (HtmlT f ()) text Source #

inputSubmit :: (Monad m, FormError err, PathPiece text, Applicative f) => (input -> Either err text) -> String -> text -> Form m input err (HtmlT f ()) (Maybe text) Source #

inputReset :: (Monad m, FormError err, PathPiece text, Applicative f) => String -> text -> Form m input err (HtmlT f ()) () Source #

inputHidden :: (Monad m, FormError err, PathPiece text, Applicative f) => (input -> Either err text) -> String -> text -> Form m input err (HtmlT f ()) text Source #

inputButton :: (Monad m, FormError err, PathPiece text, Applicative f) => String -> text -> Form m input err (HtmlT f ()) () Source #

textarea Source #

Arguments

:: (Monad m, FormError err, ToHtml text, Monad f) 
=> (input -> Either err text) 
-> Int

cols

-> Int

rows

-> String 
-> text

initial text

-> Form m input err (HtmlT f ()) text 

inputFile :: (Monad m, FormError err, FormInput input, ErrorInputType err ~ input, Applicative f) => String -> Form m input err (HtmlT f ()) (FileType input) Source #

Create an <input type="file"> element

This control may succeed even if the user does not actually select a file to upload. In that case the uploaded name will likely be "" and the file contents will be empty as well.

buttonSubmit :: (Monad m, FormError err, PathPiece text, ToHtml children, Monad f) => (input -> Either err text) -> String -> text -> children -> Form m input err (HtmlT f ()) (Maybe text) Source #

Create a <button type="submit"> element

buttonReset :: (Monad m, FormError err, Monad f) => String -> HtmlT f () -> Form m input err (HtmlT f ()) () Source #

create a <button type="reset"></button> element

This element does not add any data to the form data set.

button :: (Monad m, FormError err, Monad f) => String -> HtmlT f () -> Form m input err (HtmlT f ()) () Source #

create a <button type="button"></button> element

This element does not add any data to the form data set.

label :: (Monad m, Monad f) => HtmlT f () -> String -> Form m input err (HtmlT f ()) () Source #

create a <label> element.

Use this with or ++ to ensure that the for attribute references the correct id.

label "some input field: " ++> inputText ""

arbitraryHtml :: Monad m => view -> Form m input err view () Source #

inputInt :: (Monad m, FormError err, Applicative f) => (input -> Either err Int) -> String -> Int -> Form m input err (HtmlT f ()) Int Source #

inputDouble :: (Monad m, FormError err, Applicative f) => (input -> Either err Double) -> String -> Double -> Form m input err (HtmlT f ()) Double Source #

inputCheckbox Source #

Arguments

:: (Monad m, FormError err, ErrorInputType err ~ input, Applicative f) 
=> Bool

initially checked

-> String 
-> Form m input err (HtmlT f ()) Bool 

Create a single <input type="checkbox"> element

returns a Bool indicating if it was checked or not.

see also inputCheckboxes

inputCheckboxes Source #

Arguments

:: (Functor m, Monad m, FormError err, ErrorInputType err ~ input, FormInput input, ToHtml lbl, Monad f) 
=> String 
-> [(a, lbl)]

value, label, initially checked

-> (a -> Bool)

function which indicates if a value should be checked initially

-> Form m input err (HtmlT f ()) [a] 

Create a group of <input type="checkbox"> elements

inputRadio Source #

Arguments

:: (Functor m, Monad m, FormError err, ErrorInputType err ~ input, FormInput input, Monad f) 
=> String 
-> [(a, Html ())]

value, label, initially checked

-> (a -> Bool)

isDefault

-> Form m input err (HtmlT f ()) a 

Create a group of <input type="radio"> elements

select Source #

Arguments

:: (Functor m, Monad m, FormError err, ErrorInputType err ~ input, FormInput input, Monad f) 
=> String 
-> [(a, Html ())]

value, label

-> (a -> Bool)

isDefault, must match *exactly one* element in the list of choices

-> Form m input err (HtmlT f ()) a 

create <select></select> element plus its <option></option> children.

see also: selectMultiple

selectMultiple Source #

Arguments

:: (Functor m, Monad m, FormError err, ErrorInputType err ~ input, FormInput input, Monad f) 
=> String 
-> [(a, Html ())]

value, label, initially checked

-> (a -> Bool)

isSelected initially

-> Form m input err (HtmlT f ()) [a] 

create <select multiple="multiple"></select> element plus its <option></option> children.

This creates a <select> element which allows more than one item to be selected.