I'm using yesod 0.9.3 with scaffolded site. Is there any way to include some widget into resulting page only once (or, preferably, make some widget includable only once), like addScript and addStylesheet do? I can call such (dependency) widgets in the page handler, but this breaks the whole idea of (dependent) widget as a self-contained entity which you just call when you need it.
Example:
addCommonStyle :: Widget
addCommonStyle = toWidgetHead [lucius|.some-class {background: yellow}|]
styledP :: Text -> Widget
styledP t = do
addCommonStyle
[whamlet|<p .some-class>#{t}|]
getTestR :: Handler RepHtml
getTestR = defaultLayout $ do
styledP "First paragraph"
styledP "Second paragraph"
This result in HTML with link to stylesheet containing
.some-class{background:yellow}.some-class{background:yellow}
that is, addCommonStyle is included twice.
toWidgetHeadcall, yesod will automatically stick styles in thehead– mxc Nov 28 '11 at 11:12