git-annex/Utility/Yesod.hs

77 lines
1.7 KiB
Haskell
Raw Normal View History

2012-07-27 02:54:31 +00:00
{- Yesod stuff, that's typically found in the scaffolded site.
-
- Also a bit of a compatability layer to make it easier to support yesod
- 1.1 and 1.2 in the same code base.
-
- Copyright 2012, 2013 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
2013-06-03 20:33:05 +00:00
{-# LANGUAGE CPP, RankNTypes, FlexibleContexts #-}
module Utility.Yesod
( module Y
2013-06-27 19:25:28 +00:00
, liftH
#ifndef __NO_TH__
, widgetFile
, hamletTemplate
2013-06-27 19:25:28 +00:00
#endif
#if ! MIN_VERSION_yesod(1,2,0)
, giveUrlRenderer
, Html
#endif
) where
#if MIN_VERSION_yesod(1,2,0)
import Yesod as Y
#else
import Yesod as Y hiding (Html)
#endif
#if MIN_VERSION_yesod_form(1,3,8)
import Yesod.Form.Bootstrap3 as Y hiding (bfs)
#else
import Assistant.WebApp.Bootstrap3 as Y hiding (bfs)
#endif
#ifndef __NO_TH__
2012-07-27 02:54:31 +00:00
import Yesod.Default.Util
2013-06-03 20:33:05 +00:00
import Language.Haskell.TH.Syntax (Q, Exp)
2013-03-10 19:43:10 +00:00
#if MIN_VERSION_yesod_default(1,1,0)
import Data.Default (def)
import Text.Hamlet hiding (Html)
#endif
2013-06-27 19:25:28 +00:00
#endif
#ifndef __NO_TH__
2012-07-27 02:54:31 +00:00
widgetFile :: String -> Q Exp
2013-03-10 19:43:10 +00:00
#if ! MIN_VERSION_yesod_default(1,1,0)
2012-07-27 02:54:31 +00:00
widgetFile = widgetFileNoReload
#else
widgetFile = widgetFileNoReload $ def
{ wfsHamletSettings = defaultHamletSettings
{ hamletNewlines = AlwaysNewlines
}
}
#endif
hamletTemplate :: FilePath -> FilePath
2012-07-27 02:54:31 +00:00
hamletTemplate f = globFile "hamlet" f
2013-04-15 23:32:45 +00:00
#endif
{- Lift Handler to Widget -}
2013-06-03 20:33:05 +00:00
#if MIN_VERSION_yesod(1,2,0)
liftH :: Monad m => HandlerT site m a -> WidgetT site m a
liftH = handlerToWidget
2013-06-03 20:33:05 +00:00
#else
liftH :: MonadLift base m => base a -> m a
liftH = lift
#endif
{- Misc new names for stuff. -}
#if ! MIN_VERSION_yesod(1,2,0)
giveUrlRenderer :: forall master sub. HtmlUrl (Route master) -> GHandler sub master RepHtml
giveUrlRenderer = hamletToRepHtml
type Html = RepHtml
#endif