Skip to content

Commit 3ce44b5

Browse files
committed
[nested-v-grid] Simplify demo component
1 parent 4dc6d6b commit 3ce44b5

File tree

1 file changed

+7
-12
lines changed

1 file changed

+7
-12
lines changed

src/re_demo/nested_v_grid.cljs

+7-12
Original file line numberDiff line numberDiff line change
@@ -411,22 +411,17 @@
411411
{:keys [banter]} (rand-nth
412412
(group* :country country fake-banter))
413413
{:keys [branch-end?]} (merge column-meta row-meta)]
414-
[:div {:style (merge style
414+
[:div {:title (str (or name company)
415+
" sold " label (cond product (str " of " product)
416+
country (str " in " country))
417+
". "
418+
banter)
419+
:style (merge style
415420
(when (or @hover? branch-end?)
416421
{:background-color "#eef"}))
417422
:on-mouse-enter #(reset! hover? true)
418423
:on-mouse-leave #(reset! hover? nil)}
419-
[rc/popover-anchor-wrapper
420-
:showing? hover?
421-
:position :below-center
422-
:anchor label
423-
:popover [rc/popover-content-wrapper
424-
:no-clip? true
425-
:body (str (or name company)
426-
" sold " label (cond product (str " of " product)
427-
country (str " in " country))
428-
". "
429-
banter)]]]))))
424+
label]))))
430425
:parts {:wrapper {:style {:max-height 400
431426
:max-width 640}}}
432427
:column-header-label (fn [{:keys [path style]}]

0 commit comments

Comments
 (0)