Skip to content

Commit 8052ec6

Browse files
committed
studio: Parameterise app title via State. #344
1 parent d38d593 commit 8052ec6

File tree

4 files changed

+45
-7
lines changed

4 files changed

+45
-7
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
module Statebox.Browser.Main where
2+
3+
import Prelude
4+
import Effect (Effect)
5+
import Effect.Class (liftEffect)
6+
import Effect.Console (log)
7+
import Halogen as H
8+
import Halogen.Aff (awaitBody, runHalogenAff)
9+
import Halogen.VDom.Driver (runUI)
10+
import Routing.Hash as Routing
11+
12+
import View.Studio as Studio
13+
import View.Studio (Query(LoadTransactionsThenView))
14+
import View.Studio.Model.Route (RouteF(Home))
15+
16+
import ExampleData as Ex
17+
18+
main :: Effect Unit
19+
main = runHalogenAff do
20+
urlHash <- liftEffect Routing.getHash
21+
liftEffect $ log $ "tx browser: transaction hash to be visited: " <> urlHash
22+
body <- awaitBody
23+
io <- runUI Studio.ui initialState body
24+
_ <- io.query $ H.tell (LoadTransactionsThenView Ex.endpointUrl urlHash)
25+
pure io
26+
where
27+
initialState :: Studio.Input
28+
initialState =
29+
{ title: "Statebox Transaction Browser"
30+
, msg: "Welcome to the Statebox Transaction Browser!"
31+
, projects: mempty
32+
, hashSpace: mempty
33+
, apiUrl: Ex.endpointUrl
34+
, route: Home
35+
}

studio/src/Main.purs

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ main = runHalogenAff do
2626
where
2727
initialState :: Studio.Input
2828
initialState =
29-
{ msg: "Welcome to Statebox Studio!"
29+
{ title: "Statebox Studio"
30+
, msg: "Welcome to Statebox Studio!"
3031
, projects: Ex.projects
3132
, hashSpace: mempty
3233
, apiUrl: Ex.endpointUrl

studio/src/View/Studio/Model.purs

+1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ type State =
5252
{ route :: Route
5353
, projects :: Array Project
5454
, hashSpace :: AdjacencySpace HashStr TxSum -- ^ Hashes and their (tree of) links.
55+
, title :: String
5556
, msg :: String
5657
, apiUrl :: URL
5758
}

studio/src/View/Studio/View.purs

+7-6
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ data VoidF a
6060
render :: m. MonadAff m => State -> ComponentHTML Action ChildSlots m
6161
render state =
6262
div []
63-
[ navBar
63+
[ navBar state.title
6464
, div [ classes [ ClassName "flex" ] ]
6565
[ div [ classes [ ClassName "w-1/6", ClassName "h-12" ] ]
6666
[ slot _objectTree unit (TreeMenu.menuComponent (_ == state.route)) (stateMenu state) ((\(TreeMenu.Clicked menuNodeId route) -> ShowDiagramNodeContent route) >>> Just) ]
@@ -141,13 +141,14 @@ routeBreadcrumbs route =
141141
where
142142
crumb str = li [] [ a [ href "#" ] [ text str ] ]
143143

144-
navBar :: m. ComponentHTML Action ChildSlots m
145-
navBar =
144+
navBar :: m. String -> ComponentHTML Action ChildSlots m
145+
navBar title =
146146
nav [ classes $ ClassName <$> [ "css-navbar", "flex", "items-center", "justify-between", "flex-wrap", "bg-purple-darker", "p-6" ] ]
147-
[ div [ classes $ ClassName <$> [ "flex", "items-center", "flex-no-shrink", "text-white", "mr-6" ] ]
148-
[ span [ classes [ ClassName "css-logo-statebox" ] ] []
147+
[ div [ classes $ ClassName <$> [ "flex", "items-center", "flex-no-shrink", "text-white", "mr-6" ] ]
148+
[ span [ classes [ ClassName "css-logo-statebox" ] ]
149+
[]
149150
, span [ classes $ ClassName <$> [ "navbar-item", "ml-4", "font-semibold", "text-xl" ] ]
150-
[ text "Statebox Studio" ]
151+
[ text title ]
151152
]
152153
, menu [ "Home" /\ Just Home
153154
, "Project" /\ Nothing

0 commit comments

Comments
 (0)