Skip to content

Commit da44b27

Browse files
committed
[nested-grid] - alt-click a cell to print its paths (debug only)
Fixes #344
1 parent 7957ff0 commit da44b27

File tree

3 files changed

+24
-5
lines changed

3 files changed

+24
-5
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
> Committed but unreleased changes are put here, at the top. Older releases are detailed chronologically below.
44
5+
## 2.22.1 (2024-10-01)
6+
7+
#### Added
8+
9+
- `nested-grid` - alt-click a cell while in DEBUG mode to print its `:column-path` and `:row-path`.
10+
511
## 2.22.0 (2024-09-28)
612

713
#### Changed

src/re_com/nested_grid.cljs

+15-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
(ns re-com.nested-grid
2+
(:require-macros
3+
[re-com.core :refer [handler-fn]])
24
(:require
35
[clojure.string :as str]
46
[re-com.util :as u :refer [px deref-or-value]]
@@ -502,10 +504,15 @@
502504
(defn cell [{:keys [value]}]
503505
(str value))
504506

505-
(defn cell-wrapper [{:keys [column-path row-path theme children]}]
507+
(defn debug-click [event props]
508+
(when (.-altKey event)
509+
(js/console.log (pr-str (select-keys props [:column-path :row-path])))))
510+
511+
(defn cell-wrapper [{:keys [column-path row-path theme children] :as props}]
506512
(into
507513
[:div
508-
(-> {:style {:grid-column (path->grid-line-name column-path)
514+
(-> {:on-click (when debug? (handler-fn (debug-click event props)))
515+
:style {:grid-column (path->grid-line-name column-path)
509516
:grid-row (path->grid-line-name row-path)}}
510517
(theme/apply {:part ::cell-wrapper} theme))]
511518
children))
@@ -521,8 +528,8 @@
521528
(merge props {:children [(header-label props)]})])
522529

523530
(defn row-header [props]
524-
[u/default-part
525-
(merge props {:children [(header-label props)]})])
531+
[u/default-part
532+
(merge props {:children [(header-label props)]})])
526533

527534
(def level count)
528535

@@ -612,7 +619,8 @@
612619
(let [grid-style {:grid-column (inc x)
613620
:grid-row (inc y)}]
614621
[:div (theme/apply
615-
{:style grid-style}
622+
{:style grid-style
623+
:on-click (when debug? (handler-fn (debug-click event props)))}
616624
{:state {:edge edge} :part ::header-spacer-wrapper}
617625
theme)
618626
(u/part header-spacer
@@ -931,6 +939,7 @@
931939
(u/part column-header-wrapper
932940
(-> props
933941
(merge {:children children})
942+
(merge (when debug? {:attr {:on-click (handler-fn (debug-click event props))}}))
934943
(theme/apply {:part ::column-header-wrapper} theme)))
935944
(when (and resize-columns? show?)
936945
[resize-button (merge props {:mouse-down-x mouse-down-x
@@ -979,6 +988,7 @@
979988
(u/part row-header-wrapper
980989
(-> props
981990
(merge {:children children})
991+
(merge (when debug? {:attr {:on-click (handler-fn (debug-click event props))}}))
982992
(theme/apply {:part ::row-header-wrapper} theme)))
983993
(when (and resize-rows? show?)
984994
[resize-button (merge props {:mouse-down-x mouse-down-x

src/re_demo/nested_grid.cljs

+3
Original file line numberDiff line numberDiff line change
@@ -747,6 +747,9 @@
747747
[v-box
748748
:children
749749
[[title2 "More"]
750+
[title3 "Debugging"]
751+
[p "When " [:code "goog.DEBUG"] " is true, alt-clicking any cell will print its "
752+
[:code ":row-path"] " and " [:code ":header-path"] " to the console."]
750753
[title3 "Rendering Header Cells"]
751754
[p "Just like " [:code ":cell"] ", the "
752755
[:code ":column-header"] " and " [:code ":row-header"] " props "

0 commit comments

Comments
 (0)