miso-1.8.0.0: src/Miso/Subscription/Mouse.hs
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE OverloadedStrings #-}
-----------------------------------------------------------------------------
-- |
-- Module : Miso.Subscription.Mouse
-- Copyright : (C) 2016-2018 David M. Johnson
-- License : BSD3-style (see the file LICENSE)
-- Maintainer : David M. Johnson <djohnson.m@gmail.com>
-- Stability : experimental
-- Portability : non-portable
----------------------------------------------------------------------------
module Miso.Subscription.Mouse (mouseSub) where
import Control.Monad.IO.Class
import GHCJS.Marshal
import JavaScript.Object
import JavaScript.Object.Internal
import Miso.Effect (Sub)
import Miso.FFI
-- | Captures mouse coordinates as they occur and writes them to
-- an event sink
mouseSub :: ((Int,Int) -> action) -> Sub action
mouseSub f = \sink -> do
windowAddEventListener "mousemove" $
\mouseEvent -> do
Just x <- fromJSVal =<< getProp "clientX" (Object mouseEvent)
Just y <- fromJSVal =<< getProp "clientY" (Object mouseEvent)
liftIO (sink $ f (x,y))