From 0d4da6ec93d6cc4a9fcc3f5d8ffe62adeedf5596 Mon Sep 17 00:00:00 2001 From: Daniel Barlow Date: Sun, 3 Nov 2024 12:04:43 +0000 Subject: [PATCH] add glue to serve frontend js from backend --- Makefile | 7 +++++++ app/Main.hs | 54 +++++++++++++++++++++++++++++++++++++++++-------- souplesse.cabal | 1 + 3 files changed, 54 insertions(+), 8 deletions(-) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5d3aa81 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +default: frontend/frontend.js dist-newstyle/build/x86_64-linux/ghc-9.6.5/souplesse-0.1.0.0/x/souplesse/build/souplesse/souplesse + +dist-newstyle/build/x86_64-linux/ghc-9.6.5/souplesse-0.1.0.0/x/souplesse/build/souplesse/souplesse: app/*.hs lib/*.hs + cabal build + +frontend/frontend.js: frontend/src/Main.elm + elm make --output=$@ $< diff --git a/app/Main.hs b/app/Main.hs index 44c1a1e..c63729e 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -2,6 +2,7 @@ {-# LANGUAGE QuasiQuotes #-} {-# LANGUAGE TemplateHaskell #-} {-# LANGUAGE TypeFamilies #-} + module Main where import Track(parseFile) @@ -9,19 +10,56 @@ import Data.List as List import Yesod.Core -data HelloWorld = HelloWorld +-- https://github.com/yesodweb/yesod-cookbook/blob/master/cookbook/Static-file-subsite-Hello-World.md +import Yesod.Static +staticFiles "frontend" -- this param appears to be a pathname -mkYesod "HelloWorld" [parseRoutes| -/ HomeR GET +data Souplesse = Souplesse + { getStatic :: Static + } + +-- ref https://www.yesodweb.com/book/routing-and-handlers +-- for adding params (start/end) to the timeline route +mkYesod "Souplesse" [parseRoutes| +/ CalendarR GET +/timeline TimelineR GET +/static StaticR Static getStatic |] -instance Yesod HelloWorld +instance Yesod Souplesse + +getCalendarR :: Handler Html +getCalendarR = defaultLayout [whamlet| +

Calendar

+ +

A calendar view goes here + +timeline +© 2024 Daniel Barlow +|] + +getTimelineR :: Handler Html + +-- what's this about? |] +getTimelineR = defaultLayout $ do + setTitle "timeline" + addScriptRemote "/static/frontend.js" + toWidgetBody [julius| +window.addEventListener("load", function(){ +var app = Elm.Main.init({ + node: document.getElementById("elm") +}); +}) +|] + toWidget [hamlet| +

+

Copyright © 2024 Daniel Barlow +|] -getHomeR :: Handler Html -getHomeR = defaultLayout [whamlet|Hello World!|] main :: IO () main = do points <- Track.parseFile "track.gpx" - putStrLn ("loaded " ++ (show (List.length points)) ++ " points from GPX") - warp 3000 HelloWorld + static'@(Static settings) <- static "frontend" + putStrLn ("loaded " ++ show (List.length points) ++ " points from GPX") + warp 3000 $ Souplesse static' diff --git a/souplesse.cabal b/souplesse.cabal index 1a0d609..b32bf61 100644 --- a/souplesse.cabal +++ b/souplesse.cabal @@ -72,6 +72,7 @@ executable souplesse base ^>=4.18.2.1 , souplesse-lib , yesod-core == 1.6.25.1 + , yesod-static -- Directories containing source files. hs-source-dirs: app