Browse Source

feat: add form field component and migrate text field to it

Miguel Ángel Moreno 3 months ago
parent
commit
37faac8ed1
1 changed files with 19 additions and 7 deletions
  1. 19 7
      src/frontend/tubo/layout/views.cljs

+ 19 - 7
src/frontend/tubo/layout/views.cljs

@@ -112,14 +112,26 @@
    [:label label]
    (map-indexed #(with-meta %2 {:key %1}) children)])
 
+(defn form-field
+  [{:keys [label orientation]} & children]
+  [:div.w-full.flex.py-2.gap-x-4.gap-y-1
+   {:class (if (= orientation :horizontal)
+             [:flex-col]
+             [:justify-between :items-center])}
+   [:label.text-neutral-600.dark:text-neutral-300 label]
+   (map-indexed #(with-meta %2 {:key %1}) children)])
+
 (defn text-input
-  [label value on-change placeholder]
-  [generic-input label
-   [:input.text-black
-    {:type          "text"
-     :default-value value
-     :on-change     on-change
-     :placeholder   placeholder}]])
+  [value on-change placeholder]
+  [:input.bg-neutral-200.text-neutral-600.dark:text-neutral-300.dark:bg-neutral-950.rounded
+   {:type          "text"
+    :default-value value
+    :on-change     on-change
+    :placeholder   placeholder}])
+
+(defn text-field
+  [label & args]
+  [form-field {:label label :orientation :horizontal} (apply text-input args)])
 
 (defn boolean-input
   [label value on-change]