miso-examples-1.2.0.0: file-reader/Main.hs
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE TypeOperators #-}
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE TypeFamilies #-}
module Main where
import Miso
import Miso.String
import Control.Concurrent.MVar
import GHCJS.Types
import GHCJS.Foreign.Callback
-- | Model
data Model
= Model
{ info :: MisoString
} deriving (Eq, Show)
-- | Action
data Action
= ReadFile
| NoOp
| SetContent MisoString
deriving (Show, Eq)
-- | Main entry point
main :: IO ()
main = do
startApp App { model = Model ""
, initialAction = NoOp
, ..
}
where
mountPoint = Nothing
update = updateModel
events = defaultEvents
subs = []
view = viewModel
-- | Update your model
updateModel :: Action -> Model -> Effect Action Model
updateModel ReadFile m = m <# do
fileReaderInput <- getElementById "fileReader"
file <- getFile fileReaderInput
reader <- newReader
mvar <- newEmptyMVar
setOnLoad reader =<< do
asyncCallback $ do
r <- getResult reader
putMVar mvar r
readText reader file
SetContent <$> readMVar mvar
updateModel (SetContent c) m = noEff m { info = c }
updateModel NoOp m = noEff m
-- | View function, with routing
viewModel :: Model -> View Action
viewModel Model {..} = view
where
view = div_ [] [
"FileReader API example"
, input_ [ id_ "fileReader"
, type_ "file"
, onChange (const ReadFile)
]
, div_ [] [ text info ]
]
foreign import javascript unsafe "console.log($1);"
consoleLog :: JSVal -> IO ()
foreign import javascript unsafe "$r = new FileReader();"
newReader :: IO JSVal
foreign import javascript unsafe "$r = $1.files[0];"
getFile :: JSVal -> IO JSVal
foreign import javascript unsafe "$1.onload = $2;"
setOnLoad :: JSVal -> Callback (IO ()) -> IO ()
foreign import javascript unsafe "$r = $1.result;"
getResult :: JSVal -> IO MisoString
foreign import javascript unsafe "$1.readAsText($2);"
readText :: JSVal -> JSVal -> IO ()