noredink-ui/styleguide-app/Routes.elm
2020-03-23 17:33:42 -07:00

47 lines
1015 B
Elm

module Routes exposing (Route(..), fromLocation)
import Browser.Navigation as Navigation
import Category
import Parser exposing ((|.), (|=), Parser)
import Url exposing (Url)
type Route
= Doodad String
| Category Category.Category
| All
route : Parser Route
route =
Parser.oneOf
[ Parser.succeed Category
|. Parser.token "category/"
|= (restOfPath |> Parser.andThen category)
, Parser.succeed Doodad
|. Parser.token "doodad/"
|= restOfPath
, Parser.succeed All
]
restOfPath : Parser String
restOfPath =
Parser.getChompedString (Parser.chompWhile (always True))
category : String -> Parser Category.Category
category string =
case Category.fromString string of
Ok c ->
Parser.succeed c
Err e ->
Parser.problem e
fromLocation : Url -> Route
fromLocation location =
Parser.run route (Maybe.withDefault "" location.fragment)
|> Result.withDefault All