Skip to content

Instantly share code, notes, and snippets.

@Chadtech
Last active December 16, 2017 18:53
Show Gist options
  • Save Chadtech/a20e6715afb18a3b997d4edaf80daacf to your computer and use it in GitHub Desktop.
Save Chadtech/a20e6715afb18a3b997d4edaf80daacf to your computer and use it in GitHub Desktop.
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