Gizra/elm-keyboard-event - version: 1.0.1

for more information visit the package's GitHub page

Package contains the following modules:

Build Status

elm-keyboard-event

This module provides decoders for keyboard events with several useful features:

Background

There are various ways to listen to keyboard events in Elm. If you want to get all keyboard events, you can subscribe using functions from Browser.Events. And, if you want to get keyboard events for specific HTML elements, you can use Html.Events.on.

Each of those functions asks you to provide a Decoder msg to convert the keyboard event into a message your application can handle. To help you along the way, Html.Events has a handy keyCode decoder. You can use it to turn the keyboard event into a keycode -- which you can then map into a message your app understands.

However, there is more information available in a keyboard event than just the keycode. So, we provide a decoder which gives you all the available information:

type alias KeyboardEvent =
    { altKey : Bool
    , ctrlKey : Bool
    , key : Maybe String
    , keyCode : Key
    , metaKey : Bool
    , repeat : Bool
    , shiftKey : Bool
    }

Even better, we:

But wait, there's more! We also have a version of the keyboard event decoder which allows you to filter events right in the decoder. That way, you can prevent some events from reaching your update function at all, which can be useful in some scenarios.

Examples

To listen for keyboard events on HTML elements, you can do something like this:

div
    [ on "keydown" <|
        Json.Decode.map HandleKeyboardEvent decodeKeyboardEvent
    , tabindex 0
    , id "id-for-auto-focus"
    , style [ ( "outline", "none" ) ]
    ]
    []

We use thetabIndex attribute to make the element focusable, since an HTML element must be focusable in order to receive keyboard events. And, we provide an id in case we want to programmatically focus on the element, via Browser.Dom.focus.

For complete examples, see:

To listen for keyboard events globally, you can use functions from Browser.Events to subscribe to all keyboard events. For an example, see

API

For the detailed API, see the Elm package site, or the links to the right, if you're already there.

Note: This package uses Keyboard.Key from the package SwiftsNamesake/proper-keyboard.

Installation

Try elm install Gizra/elm-keyboard-event

Development

Try something like:

git clone https://github.com/Gizra/elm-keyboard-event
cd elm-keyboard-event
npm install
npm test

You can then find the compiled examples in the build folder.