dashboard/src/Route.elm

31 lines
625 B
Elm
Raw Normal View History

2020-11-23 15:44:45 +03:00
module Route exposing (..)
import Url.Parser exposing ((</>), Parser, map, oneOf, s, string, top)
type Route
= Home
| Hub
| Nodes
| Blueprint String
| Module String
| Peer String
| Unknown String
2020-11-23 15:44:45 +03:00
routeParser : Parser (Route -> a) a
routeParser =
oneOf
[ map Home top
, map Hub (s "hub")
, map Nodes (s "nodes")
2020-12-01 17:47:52 +03:00
, map Blueprint (s "blueprint" </> string)
, map Module (s "module" </> string)
, map Peer (s "peer" </> string)
, map Unknown string
2020-11-23 15:44:45 +03:00
]
2020-11-23 16:31:31 +03:00
parse url =
Maybe.withDefault Home <| Url.Parser.parse routeParser url