Created
July 23, 2020 05:04
-
-
Save ThomasMeier/f212c1f02a8de099b2b75edc00d228c3 to your computer and use it in GitHub Desktop.
This file contains 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
;; Database | |
(r/atom db {:dragging? false | |
:pos-x 0 | |
:pod-y 0 | |
:select-area-templates | |
[[:input.text-template | |
{:draggable true | |
:index 0 | |
:drag-start handle-drag-start | |
:drag-end handle-drag-end}]] | |
:elements []}) | |
(def form-types ["text" "textarea" "select" "radio"]) | |
(def drag-n-drop-area {:x 500 :y 500}) | |
;; 10px gridlines that the elements snap to so they'll line up and shit | |
(def grid-lines 10) | |
(defn drag-area | |
"Area to drag element over, use CSS to set visual area" | |
[reset] | |
^{:key reset} | |
[:div.drag-area | |
[(:elements db)]) | |
(defn find-x-pos []) ;; look up element prop to find position of drag area + mouse pos | |
(defn find-y-pos []) ;; look up element prop to find position of drag area + moust pos | |
(defn handle-drag-end | |
"figure out position, add to elements list, call fn to render the drag and drop area" | |
[e] | |
(let [x (find-x-pos) | |
y (find-y-pos) | |
element (nth (:index e) db) | |
positioned-element (into element {:x x :y y :style {:top y :left x})] | |
(swap! (-> e .target) db conj :elements) | |
(drag-area :reset) | |
(select-area :reset)) | |
(defn select-area | |
"Pick out an element you want to use here" | |
[reset] | |
^{:key reset} | |
[:div.element-templates | |
(:select-area-templates db)]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment