mirror of
https://github.com/logseq/logseq.git
synced 2026-05-02 01:46:35 +00:00
fix(react): fix react warning (#753)
* fix(react): fix react warning * fix(foldeable): browser complains * fix(react): fix effects
This commit is contained in:
@@ -1208,7 +1208,8 @@
|
||||
(reset! parents-atom parents)
|
||||
(when (seq parents)
|
||||
(interpose [:span.mx-2.opacity-50 "➤"]
|
||||
parents))))]]
|
||||
parents))))]
|
||||
component (filterv identity component)]
|
||||
(when (or (seq @parents-atom) show-page?)
|
||||
component))))))
|
||||
|
||||
|
||||
@@ -67,10 +67,15 @@
|
||||
(content/content page-name
|
||||
{:hiccup ref-hiccup}))])]]))))
|
||||
|
||||
(rum/defc unlinked-references-aux < rum/reactive db-mixins/query
|
||||
[page-name n-ref]
|
||||
(let [ref-blocks (db/get-page-unlinked-references page-name)]
|
||||
(reset! n-ref (count ref-blocks))
|
||||
(rum/defcs unlinked-references-aux
|
||||
< rum/reactive db-mixins/query
|
||||
{:will-mount (fn [state]
|
||||
(let [[page-name n-ref] (:rum/args state)
|
||||
ref-blocks (db/get-page-unlinked-references page-name)]
|
||||
(reset! n-ref (count ref-blocks))
|
||||
(assoc state ::ref-blocks ref-blocks)))}
|
||||
[state page-name n-ref]
|
||||
(let [ref-blocks (::ref-blocks state)]
|
||||
[:div.references-blocks
|
||||
(let [ref-hiccup (block/->hiccup ref-blocks
|
||||
{:id (str page-name "-unlinked-")
|
||||
@@ -95,6 +100,5 @@
|
||||
(if @n-ref
|
||||
(str @n-ref " Unlinked References")
|
||||
"Unlinked References")]
|
||||
(fn []
|
||||
(unlinked-references-aux page-name n-ref))
|
||||
(fn [] (unlinked-references-aux page-name n-ref))
|
||||
true)]]))))
|
||||
|
||||
@@ -352,11 +352,11 @@
|
||||
[:a#download.hidden]
|
||||
(when (and (not config/mobile?)
|
||||
(not config/publishing?))
|
||||
[(help-button)
|
||||
(help-button)
|
||||
;; [:div.font-bold.absolute.bottom-4.bg-base-2.rounded-full.h-8.w-8.flex.items-center.justify-center.font-bold.cursor.opacity-70.hover:opacity-100
|
||||
;; {:style {:left 24}
|
||||
;; :title "Click to show/hide sidebar"
|
||||
;; :on-click (fn []
|
||||
;; (state/set-left-sidebar-open! (not (state/get-left-sidebar-open?))))}
|
||||
;; (if (state/sub :ui/left-sidebar-open?) "<" ">")]
|
||||
])])))
|
||||
)])))
|
||||
|
||||
Reference in New Issue
Block a user