2012-07-26 22:54:31 -04:00
|
|
|
{- Yesod stuff, that's typically found in the scaffolded site.
|
2012-07-26 02:45:01 -04:00
|
|
|
-
|
2013-06-03 13:51:54 -04:00
|
|
|
- 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>
|
2012-07-26 02:45:01 -04:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
2013-06-03 16:33:05 -04:00
|
|
|
{-# LANGUAGE CPP, RankNTypes, FlexibleContexts #-}
|
2012-08-09 13:33:04 -04:00
|
|
|
|
2013-06-27 01:15:28 -04:00
|
|
|
module Utility.Yesod
|
|
|
|
( module Y
|
2013-06-27 15:25:28 -04:00
|
|
|
, liftH
|
|
|
|
#ifndef __ANDROID__
|
2013-06-27 01:15:28 -04:00
|
|
|
, widgetFile
|
|
|
|
, hamletTemplate
|
2013-06-27 15:25:28 -04:00
|
|
|
#endif
|
2013-06-27 01:15:28 -04:00
|
|
|
#if ! MIN_VERSION_yesod(1,2,0)
|
|
|
|
, giveUrlRenderer
|
|
|
|
, Html
|
|
|
|
#endif
|
|
|
|
) where
|
2012-07-26 02:45:01 -04:00
|
|
|
|
2013-06-27 01:15:28 -04:00
|
|
|
#if MIN_VERSION_yesod(1,2,0)
|
|
|
|
import Yesod as Y
|
|
|
|
#else
|
|
|
|
import Yesod as Y hiding (Html)
|
2013-06-03 16:33:05 -04:00
|
|
|
#endif
|
2013-04-15 14:40:46 -04:00
|
|
|
#ifndef __ANDROID__
|
2012-07-26 22:54:31 -04:00
|
|
|
import Yesod.Default.Util
|
2013-06-03 16:33:05 -04:00
|
|
|
import Language.Haskell.TH.Syntax (Q, Exp)
|
2013-03-10 15:43:10 -04:00
|
|
|
#if MIN_VERSION_yesod_default(1,1,0)
|
2012-08-09 13:33:04 -04:00
|
|
|
import Data.Default (def)
|
2013-06-27 01:15:28 -04:00
|
|
|
import Text.Hamlet hiding (Html)
|
2012-08-09 13:33:04 -04:00
|
|
|
#endif
|
2013-06-27 15:25:28 -04:00
|
|
|
#endif
|
2012-07-26 02:45:01 -04:00
|
|
|
|
2013-06-27 15:25:28 -04:00
|
|
|
#ifndef __ANDROID__
|
2012-07-26 22:54:31 -04:00
|
|
|
widgetFile :: String -> Q Exp
|
2013-03-10 15:43:10 -04:00
|
|
|
#if ! MIN_VERSION_yesod_default(1,1,0)
|
2012-07-26 22:54:31 -04:00
|
|
|
widgetFile = widgetFileNoReload
|
2012-08-09 13:33:04 -04:00
|
|
|
#else
|
|
|
|
widgetFile = widgetFileNoReload $ def
|
|
|
|
{ wfsHamletSettings = defaultHamletSettings
|
|
|
|
{ hamletNewlines = AlwaysNewlines
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2012-07-26 02:45:01 -04:00
|
|
|
|
|
|
|
hamletTemplate :: FilePath -> FilePath
|
2012-07-26 22:54:31 -04:00
|
|
|
hamletTemplate f = globFile "hamlet" f
|
2013-04-15 19:32:45 -04:00
|
|
|
#endif
|
2013-06-03 13:51:54 -04:00
|
|
|
|
|
|
|
{- Lift Handler to Widget -}
|
2013-06-03 16:33:05 -04:00
|
|
|
#if MIN_VERSION_yesod(1,2,0)
|
2013-06-03 13:51:54 -04:00
|
|
|
liftH :: Monad m => HandlerT site m a -> WidgetT site m a
|
2013-06-27 00:01:31 -04:00
|
|
|
liftH = handlerToWidget
|
2013-06-03 16:33:05 -04:00
|
|
|
#else
|
|
|
|
liftH :: MonadLift base m => base a -> m a
|
|
|
|
liftH = lift
|
2013-06-03 13:51:54 -04:00
|
|
|
#endif
|
2013-06-27 01:15:28 -04:00
|
|
|
|
|
|
|
{- 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
|