Last active
December 16, 2017 18:53
-
-
Save Chadtech/a20e6715afb18a3b997d4edaf80daacf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Msg | |
= DropdownItemClicked Int | |
type alias Model = | |
{ isDropped : Bool | |
, options : Array Thing | |
, selected : Int | |
} | |
dropdownContainer : Model -> Html Msg | |
dropdownContainer model = | |
div | |
[ class "dropdown-container" ] | |
[ text "Dropdown!" | |
, dropdown model | |
] | |
dropdown : Model -> Html Msg | |
dropdown model = | |
if model.isDropped then | |
droppedDowndown model | |
else | |
text "" | |
droppedDowndown : Model -> Html Msg | |
droppedDowndown model = | |
model.options | |
|> Array.toIndexedList | |
|> (dropdownItem model.selected) | |
|> div [ class "dropdown" ] | |
dropdownItem : Int -> (Int, Thing) -> Html Msg | |
dropdownItem selectedIndex (thisThingsIndex, thing )= | |
div | |
[ classList | |
[ ("dropdown-item", True) | |
, ("selected", selectedIndex == thisThingsIndex) | |
] | |
, onClick (DropdownItemClicked thisThingsIndex) | |
] | |
[ text thing.name ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment