{-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE TypeFamilies #-} module Ditto.Lucid.Named where import Data.Foldable (traverse_, fold) import Ditto.Backend import Ditto.Core import Ditto.Lucid (encodeFormId) import Ditto.Generalized.Named as G import Ditto.Result (FormId, Result (Ok), unitRange) import Lucid import Web.PathPieces import qualified Data.Text as T foldTraverse_ :: (Foldable t, Applicative f, Monoid (f b)) => (a -> t (f b)) -> t a -> f () foldTraverse_ f = traverse_ (fold . f) inputText :: (Monad m, FormError err input, PathPiece text, Applicative f) => (input -> Either err text) -> String -> text -> Form m input err (HtmlT f ()) text inputText getInput name initialValue = G.input name getInput inputField initialValue where inputField i a = input_ [type_ "text", id_ (encodeFormId i), name_ (encodeFormId i), value_ (toPathPiece a)] inputTextMReq :: (Monad m, FormError err input, PathPiece text, Applicative f) => (input -> Either err text) -> String -> Maybe text -> Form m input err (HtmlT f ()) text inputTextMReq getInput name initialValue = G.inputMaybeReq name getInput inputField initialValue where inputField i Nothing = input_ [type_ "text", id_ (encodeFormId i), name_ (encodeFormId i), required_ "required"] inputField i (Just a) = input_ [type_ "text", id_ (encodeFormId i), name_ (encodeFormId i), value_ (toPathPiece a), required_ "required"] inputPassword :: (Monad m, FormError err input, PathPiece text, Applicative f) => (input -> Either err text) -> String -> text -> Form m input err (HtmlT f ()) text inputPassword getInput name initialValue = G.input name getInput inputField initialValue where inputField i a = input_ [type_ "password", id_ (encodeFormId i), name_ (encodeFormId i), value_ (toPathPiece a)] inputSubmit :: (Monad m, FormError err input, PathPiece text, Applicative f) => (input -> Either err text) -> String -> text -> Form m input err (HtmlT f ()) (Maybe text) inputSubmit getInput name initialValue = G.inputMaybe name getInput inputField (Just initialValue) where inputField i a = input_ [type_ "submit", id_ (encodeFormId i), name_ (encodeFormId i), value_ (toPathPiece a)] inputReset :: (Monad m, FormError err input, PathPiece text, Applicative f) => String -> text -> Form m input err (HtmlT f ()) () inputReset name lbl = G.inputNoData name inputField where inputField i = input_ [type_ "submit", id_ (encodeFormId i), name_ (encodeFormId i), value_ (toPathPiece lbl)] inputHidden :: (Monad m, FormError err input, PathPiece text, Applicative f) => (input -> Either err text) -> String -> text -> Form m input err (HtmlT f ()) text inputHidden getInput name initialValue = G.input name getInput inputField initialValue where inputField i a = input_ [type_ "hidden", id_ (encodeFormId i), name_ (encodeFormId i), value_ (toPathPiece a)] inputButton :: (Monad m, FormError err input, PathPiece text, Applicative f) => String -> text -> Form m input err (HtmlT f ()) () inputButton name lbl = G.inputNoData name inputField where inputField i = input_ [type_ "button", id_ (encodeFormId i), name_ (encodeFormId i), value_ (toPathPiece lbl)] textarea :: (Monad m, FormError err input, ToHtml text, Monad f) => (input -> Either err text) -> Int -- ^ cols -> Int -- ^ rows -> String -> text -- ^ initial text -> Form m input err (HtmlT f ()) text textarea getInput cols rows name initialValue = G.input name getInput textareaView initialValue where textareaView i txt = textarea_ [ rows_ (toPathPiece rows) , cols_ (toPathPiece cols) , id_ (encodeFormId i) , name_ (encodeFormId i) ] $ toHtml txt -- | Create an @\@ 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. inputFile :: (Monad m, FormError err input, FormInput input, Applicative f) => String -> Form m input err (HtmlT f ()) (FileType input) inputFile name = G.inputFile name fileView where fileView i = input_ [type_ "file", id_ (encodeFormId i), name_ (encodeFormId i)] -- | Create a @\