mirror of https://github.com/status-im/reagent.git
61 lines
1.7 KiB
Clojure
61 lines
1.7 KiB
Clojure
(ns reagentdemo.common
|
|
(:require [reagent.core :as reagent :refer [atom]]
|
|
[reagent.debug :refer-macros [dbg println]]
|
|
[clojure.string :as string]
|
|
[reagentdemo.page :as rpage]
|
|
[reagentdemo.syntax :as syntax]))
|
|
|
|
(def syntaxify (memoize syntax/syntaxify))
|
|
|
|
(defn src-parts [src]
|
|
(string/split src #"\n(?=[(])"))
|
|
|
|
(defn src-defs [parts]
|
|
(let [ws #"[^ \t]+"]
|
|
(into {} (for [x parts]
|
|
[(->> x (re-seq ws) second keyword) x]))))
|
|
|
|
(def ns-src
|
|
"(ns example
|
|
(:require [reagent.core :as reagent :refer [atom]]))
|
|
")
|
|
|
|
(def nsr-src
|
|
"(ns example
|
|
(:require [reagent.core :as r :refer [atom]]))
|
|
")
|
|
|
|
(defn src-for-names [srcmap names]
|
|
(string/join "\n" (map srcmap names)))
|
|
|
|
(defn fun-map [src]
|
|
(-> src src-parts src-defs (assoc :ns ns-src :nsr nsr-src)))
|
|
|
|
(defn src-for [funmap defs]
|
|
[:pre (-> funmap (src-for-names defs) syntaxify)])
|
|
|
|
(defn demo-component []
|
|
(let [showing (atom true)]
|
|
(fn [{:keys [comp src complete no-heading]}]
|
|
[:div
|
|
(when comp
|
|
[:div.demo-example.clearfix
|
|
[:a.demo-example-hide {:on-click (fn [e]
|
|
(.preventDefault e)
|
|
(swap! showing not)
|
|
false)}
|
|
(if @showing "hide" "show")]
|
|
(when-not no-heading
|
|
[:h3.demo-heading "Example "])
|
|
(when @showing
|
|
(if-not complete
|
|
[:div.simple-demo [comp]]
|
|
[comp]))])
|
|
(if @showing
|
|
(if src
|
|
[:div.demo-source.clearfix
|
|
(when-not no-heading
|
|
[:h3.demo-heading "Source"])
|
|
src]
|
|
[:div.clearfix]))])))
|