diff options
author | 2025-02-20 16:44:21 +0100 | |
---|---|---|
committer | 2025-02-20 18:37:07 +0100 | |
commit | fefb6424bddd6ac4bf0b68f30fbf6a7f59658cec (patch) | |
tree | 1f64b73b4380830d416b97355d588b95a63a4fca | |
parent | bb7cb646a7b0bd762cd23c1a24ab63bba1e2407d (diff) |
add example http request
-rw-r--r-- | achat.cabal | 1 | ||||
-rw-r--r-- | app/Main.hs | 16 | ||||
-rw-r--r-- | default.nix | 13 |
3 files changed, 29 insertions, 1 deletions
diff --git a/achat.cabal b/achat.cabal index 766bf67..448a896 100644 --- a/achat.cabal +++ b/achat.cabal @@ -15,6 +15,7 @@ executable achat build-depends: base, clay, + ghcjs-base, haskell-halogen-core, kan-extensions, protolude, 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 diff --git a/default.nix b/default.nix index a3ce768..c6cbdbd 100644 --- a/default.nix +++ b/default.nix @@ -1,6 +1,19 @@ { pkgs ? import sources.nixpkgs { overlays = [ (import ./pkgs { inherit (pkgs.haskell) lib; }) + (self: super: { + haskell = super.haskell // { + packageOverrides = self.lib.composeManyExtensions + [ + (super.haskell.packageOverrides or (self: super: self)) + (self: super: { + ghcWithPackages = super.ghcWithPackages.override { + installDocumentation = false; # XXX true (default) + }; + }) + ]; + }; + }) ]; } , sources ? import ./nix/sources.nix |