我想将Lucid添加到Yesod的defaultLayout中

时间:2018-10-29 23:54:49

标签: haskell yesod blaze-html haskell-lucid

我正在尝试为模式使用动态HTML ID。

基本上,如果哈姆雷特接受[hamlet| <div .modal .fade ##{modalIdFunction i}> |]

由于我无法在《哈姆雷特》中做到这一点,因此我尝试使用Lucid进行此操作,但是它与Yesod的defaultLayout不兼容。

这是我的意图

getSupportR :: CustomerId -> Handler LucidHtml
getSupportR customerId = do
 defaultLayout $ do
    setTitle "Your Licenses"
    toWidget . lucid $ \url ->
      p_ $ a_ [href_ "\\"] "Link to root"

这是错误消息:

• Couldn't match type ‘blaze-markup-0.8.2.1:Text.Blaze.Internal.MarkupM
                             ()’
                     with ‘HtmlT Identity ()’
      Expected type: HandlerFor App LucidHtml
        Actual type: HandlerFor App Html

有没有办法将Lucid的LucidHtml转换为Blaze的HTML?

我的整个代码位于:https://github.com/hhefesto/laurus-nobilis 和相关的文件是/src/Yesod/Lucid.hs和/src/Handler/Support.hs

2 个答案:

答案 0 :(得分:2)

仅出于完整性考虑,这是arrowd集成到代码中的答案:

{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE TemplateHaskell #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE TypeFamilies #-}

module Handler.Support where

import           Import hiding
import           Yesod.Lucid
import           Lucid hiding (Html)
import qualified Lucid as L
import           Text.Blaze.Html

getSupportR :: CustomerId -> Handler Html
getSupportR customerId = do
  lucidHtml <- lucid $ \url ->
    p_ $ a_ [href_ "\\"] "link to root"
  defaultLayout $ do
    setTitle "Your Licenses"
    toWidget . preEscapedToHtml . renderText $ lucidHtml

答案 1 :(得分:0)

由于清晰的Html和炽烈的Html是完全不同的类型,因此您唯一的方法是将其中一个呈现为文本并将其作为预转义的HTML插入另一种。像Blaze.preEscapedToHtml . Lucid.renderText之类的东西。