diff --git a/_drafts/2018-01-22-recursive-http-with-elm.html b/_posts/2018-01-22-recursive-http-with-elm.html similarity index 97% rename from _drafts/2018-01-22-recursive-http-with-elm.html rename to _posts/2018-01-22-recursive-http-with-elm.html index d4d8032..51ac76a 100644 --- a/_drafts/2018-01-22-recursive-http-with-elm.html +++ b/_posts/2018-01-22-recursive-http-with-elm.html @@ -28,9 +28,9 @@ I had a handful of problems to solve. I needed to:
The first two bullet points can be dealt with by parsing and inspecting the response header. Both GitHub and GitLab embed @@ -98,9 +98,9 @@ A little bit of regular expression magic, tuples, and
Now's the time to define some types. I'll need a Request
, which will
be similar to a standard Http.Request
, with a slight difference.
@@ -218,9 +218,9 @@ my Http.Request
via a private fromResponse
translator:
Now, I can make my API request, and get back a response with potentially partial results. All that needs to be done now is to make @@ -342,9 +342,9 @@ when I've fetched them all:
I've got it working, and it's working well. However, it's kind of a pain to use. It's nice that I can play with the results as they come @@ -360,7 +360,12 @@ It just so happens that, with Tasks, I can.
-To be continued. +To be continued… +
+ ++For now, feel free to check out the full library documentation and +code referenced in this post here.