Last active
September 22, 2021 16:25
-
-
Save athomasoriginal/14c6cfa1500bc1ab1a90a98b9d7217a0 to your computer and use it in GitHub Desktop.
SPA Route Fallback
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns app | |
(:require | |
[reitit.ring]) | |
[ring.util.response :as response] | |
(defn secret-route | |
[] | |
["/secret" {#_ ...stuff}]) | |
(defn public-resource-route | |
[] | |
["public/*" (reitit.ring/create-resource-handler)])]) | |
(defn spa-fallback-handler | |
[] | |
(fn [request] | |
(or (response/resource-response (:uri request) {:root "public"}) | |
(-> (response/resource-response "index.html" {:root "public"}) | |
(response/content-type "text/html"))))) | |
(defn router [] | |
(reitit.ring/router | |
[(public-resource-route) | |
(secret-route)])) | |
;; option 1 - doesn't seem to work | |
(defn app [req] | |
(-> req | |
((reitit.ring/ring-handler | |
(router) | |
(reitit.ring/routes | |
(reitit.ring/create-resource-handler {:path "/"}) | |
(reitit.ring/create-default-handler)))))) | |
;; option 2 - works | |
(defn app [req] | |
(-> req | |
((reitit.ring/ring-handler | |
(router) | |
(reitit.ring/routes | |
(spa-fallback-handler) | |
(reitit.ring/create-default-handler)))))) | |
(comment | |
;; using option 1 | |
(app {:request-method :get :uri "/ping"}) ; => {:status 200, :body "pong"} | |
(app {:request-method :get :uri "/"}) ; => {:status 302, :headers {"Location" "/index.html"}, :body ""} | |
(app {:request-method :get :uri "/public/index.html"}) ; => {:status 200, :headers {"Content-Length" "667" ... "Content-Type" "text/html"}, :body ..."]} | |
;; using option 2 | |
(app {:request-method :get :uri "/ping"}) ; => {:status 200, :body "pong"} | |
(app {:request-method :get :uri "/"}) ; => {:status 200, :headers {"Content-Length" "667" ... "Content-Type" "text/html"}, :body ..."]} | |
(app {:request-method :get :uri "/public/index.html"}) ; => {:status 200, :headers {"Content-Length" "667" ... "Content-Type" "text/html"}, :body ..."]} | |
(app {:request-method :get :uri "/login"}) ; => {:status 200, :headers {"Content-Length" "667" ... "Content-Type" "text/html"}, :body ..."]} | |
:end) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment