jmpavlick / elm-css-with-context / WithContext

Cleaner, hack-free way to pass contexts to Elm view functions.

Simple port of arowM/elm-html-with-context to make it work with rtfeldman/elm-css.

Types


type WithContext context msg

An opaque type for representing Html with a context.

Converters

fromHtml : (context -> Html.Styled.Html msg) -> WithContext context msg

A constructor for WithContext from Html.

toHtml : context -> WithContext context msg -> Html.Styled.Html msg

Convert to Html.

Core functions

node : (context -> List (Html.Styled.Html msg) -> Html.Styled.Html msg) -> List (WithContext context msg) -> WithContext context msg

Custom node.

text : (context -> String) -> WithContext context msg

Text node. We have to explicitly define this, because it's the only Html function that doesn't take a List Html msg as an argument.

Low level functions

lift : (context -> subContext) -> WithContext subContext msg -> WithContext context msg

This function is supposed to be used with functions in WithContext.Lazy. Please see actual use case for detail.