Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
If you include some code - or an exmaple of what your are attempting this will help people to answer your question – ManseUK Nov 24 '11 at 9:06
Have you seen instances where the widget is included twice? My understanding was that Yesod ensures it's only there once. – Jeff Foster Nov 24 '11 at 9:09
@JeffFoster, I've added purified example – Artem Chuprina Nov 25 '11 at 17:14
FYI, you dont need the toWidgetHead call, yesod will automatically stick styles in the head – mxc Nov 28 '11 at 11:12

1 Answer

easiest solution is to just put addCommonStyle in the definition of defaultLayout in the Foundation.hs file.

If you dont always need it, you can just make your own layout function following the pattern in the scaffolded defaultLayout which includes the addCommonStyle call.

share|improve this answer
Quoting myself, "but this breaks the whole idea of (dependent) widget as a self-contained entity which you just call when you need it." – Artem Chuprina Dec 9 '11 at 19:36
true, but with proper caching the impact of sending the style when its not used will be minimal – mxc Dec 12 '11 at 3:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.