elm-route-url
elm-route-url copied to clipboard
Router for single-page-apps in Elm
* [x] get main body of code compiling with 0.19, compatible with `Browser.application` and using new `elm/url` core API * [x] retire ancillary modules that are no longer useful *...
### Question Is it possible to start a `RouteUrl.programWithFlags` app but with an init that receives `Location`? It seems like it isn't possible and it's a bit inconvenient to have...
I'll have to play with Elm 0.19 a bit to see what makes sense. Elm's own theory about how to handle URLs has changed at least somewhat between 0.18 and...
In the docs, I couldn't find the `Location` type alias. Furthermore, [the docs say](https://github.com/rgrempel/elm-route-url/blob/2.0.1/src/RouteUrl/Builder.elm#L73-L74) that the `Builder` can help with parsing the `Location`, but not a single function has `Location`...
When `RouteUrl.Builder.replacePath` is given a list of at least two strings, where the first item is empty, JS error is produced. `app.js:13496 Uncaught DOMException: Failed to execute 'pushState' on 'History':...
Sorry if this isn't the place to ask for help. I'm trying to setup elm-route-url in a simple example app. I prefer to use "just URL" without the hash and...
Hi there! Liking this package a lot - but I've run into a bit of trouble. I'm not sure anchors are compatible with the way the hash URL currently works,...
I've added a bit of a test process to run on Travis, but so far it is limited to compiling the examples. I should write some actual tests at some...
Apparently, a `UrlChange` to an empty hash doesn't work as expected ... you need to add a space afterwards. E.g. instead of `UrlChange NewEntry "#"` ... you need ... `UrlChange...