diff options
author | 2025-02-20 16:44:21 +0100 | |
---|---|---|
committer | 2025-02-20 18:37:07 +0100 | |
commit | fefb6424bddd6ac4bf0b68f30fbf6a7f59658cec (patch) | |
tree | 1f64b73b4380830d416b97355d588b95a63a4fca /app/Main.hs | |
parent | bb7cb646a7b0bd762cd23c1a24ab63bba1e2407d (diff) |
add example http request
Diffstat (limited to 'app/Main.hs')
-rw-r--r-- | app/Main.hs | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/app/Main.hs b/app/Main.hs index 2f0cce9..1b1fa25 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -28,6 +28,7 @@ import Halogen.HTML.Layout.GridBagLayout import Halogen.HTML.Properties as HP import Halogen.Subscription qualified as HS import Halogen.VDom.DOM.Monad +import JavaScript.Web.XMLHttpRequest import Protolude hiding (log) import UnliftIO (MonadUnliftIO) @@ -110,7 +111,20 @@ component = handleAction = \case Init -> - lift $ log "Initialized" + lift $ do + log "Initialized" + _ <- + liftIO $ xhrByteString + ( Request + { reqMethod = GET, + reqURI = "http://localhost:8081/api/rest/collection/user", + reqLogin = Nothing, + reqHeaders = [], + reqWithCredentials = False, + reqData = NoData + } + ) + pure () Increment n -> do modify (+ n) get >>= H.raise |