{-# LANGUAGE ConstraintKinds #-} {-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE MultiParamTypeClasses #-} {-# LANGUAGE QuasiQuotes #-} {-# LANGUAGE ScopedTypeVariables #-} module Datarekisteri.Frontend.Widgets where import Data.Text (Text) import Yesod type Widget' a = WidgetFor a () submitButton :: Text -> Widget' a submitButton text = do toWidget [hamlet||] submitButtonBad :: Text -> Widget' a submitButtonBad text = do buttonId <- newIdent toWidget [hamlet||] toWidget [lucius| input[type="submit"]##{buttonId} { background-color: #8a003a; } input[type="submit"]##{buttonId}:hover { background-color: #aa3968; } |] keyValueTable :: (ToWidget site a, ToWidget site b) => [(a, b)] -> Widget' site keyValueTable rows = do tableClass <- newIdent [whamlet|
^{fst row} | ^{snd row} |] toWidget [lucius| .#{tableClass} { th { text-align: right; } td { text-align: left; } } |] form :: Route a -> Enctype -> Widget' a -> Widget' a form route enctype content = do formClass <- newIdent [whamlet| |
---|