Vaadin Flow cheat sheets and flow diagrams
Started a project to put together the more intricate correlations that make the Vaadin Flow framework tick.
Vaadin Flow Cheat sheets and flow diagrams
First one is the navigation life cycle:
If you are interrested in hiring a consultant for the effective use of open source software on an enterprise grade, take a look around in the About section to see, what I have to offer.
Various snippets or code parts I found useful, so I keep them here for reference.
Started a project to put together the more intricate correlations that make the Vaadin Flow framework tick.
Vaadin Flow Cheat sheets and flow diagrams
First one is the navigation life cycle:
Since Maven Central changed the search I had to fix my helper script. Time to try out Babashka.
#!/usr/bin/env bb (defn artifact [{:keys [g a v latestVersion]}] (str g ":" a ":" (or v latestVersion))) (defn query [q] (let [query-params {:start 0 :rows 50}] (if (str/includes? q ":") (let [[g a] (str/split q #":" 2)] (assoc query-params :q (str "g:" g " AND " "a:" a) :core "gav")) (assoc query-params :q q)))) (defn request [q] (-> (org.httpkit.client/get "https://search.maven.org/solrsearch/select" {:content-type "application/json" :query-params (query q)}) deref :body (cheshire.core/parse-string true) :response :docs)) (assert (= 1 (count *command-line-args*))) (let [[q] *command-line-args*] (->> (request q) (map artifact) (run! prn)))