Files
acms/frontend/app/Route.hs

35 lines
723 B
Haskell
Raw Normal View History

2024-06-04 14:36:26 +02:00
module Route
( Route (..),
parseURI,
)
where
import Data.Attoparsec.Text qualified as P
import Data.Default
import Data.Text qualified as T
import Miso
data Route
= Home
| ListCollection String
2024-06-05 10:41:02 +02:00
| EditValue String String
2024-06-04 14:36:26 +02:00
deriving (Show, Eq)
instance Default Route where
def = Home
parseURI :: URI -> Route
parseURI uri =
either (const def) id $
P.parseOnly
( P.choice
2024-06-05 10:41:02 +02:00
[ EditValue
<$> (P.string "#collection/" *> P.manyTill P.anyChar (P.string "/"))
<*> (P.many1 P.anyChar),
ListCollection <$> (P.string "#collection/" *> P.many1 P.anyChar),
2024-06-04 14:36:26 +02:00
pure Home
]
<* P.endOfInput
)
(T.pack uri.uriFragment)