Merge branch 'master' of github.com:logseq/logseq into master

pull/764/head
Tienson Qin 2020-11-26 00:25:38 +08:00
commit 7de090a0ec
4 changed files with 21 additions and 10 deletions

View File

@ -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))))))

View File

@ -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)]]))))

View File

@ -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?) "<" ">")]
])])))
)])))

View File

@ -472,8 +472,14 @@
[:div {:class (if @collapsed?
"hidden"
"initial")}
(if (and (fn? content) (not @collapsed?))
(cond
(and (fn? content) (not @collapsed?))
(content)
(fn? content)
nil
:else
content)]]))
(defn admonition