| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490 |
- (ns frontend.components.content
- (:require [cljs.pprint :as pprint]
- [clojure.string :as string]
- [dommy.core :as d]
- [frontend.commands :as commands]
- [frontend.components.editor :as editor]
- [frontend.components.page-menu :as page-menu]
- [frontend.components.export :as export]
- [frontend.config :as config]
- [frontend.context.i18n :refer [t]]
- [frontend.db :as db]
- [frontend.extensions.srs :as srs]
- [frontend.format :as format]
- [frontend.format.protocol :as protocol]
- [frontend.handler.common :as common-handler]
- [frontend.handler.editor :as editor-handler]
- [frontend.handler.image :as image-handler]
- [frontend.handler.notification :as notification]
- [frontend.handler.page :as page-handler]
- [frontend.handler.whiteboard :as whiteboard-handler]
- [frontend.mixins :as mixins]
- [frontend.state :as state]
- [frontend.ui :as ui]
- [frontend.util :as util]
- [logseq.graph-parser.util :as gp-util]
- [logseq.graph-parser.util.block-ref :as block-ref]
- [frontend.util.url :as url-util]
- [goog.dom :as gdom]
- [goog.object :as gobj]
- [rum.core :as rum]))
- ;; TODO i18n support
- (defn- set-format-js-loading!
- [format value]
- (when format
- (swap! state/state assoc-in [:format/loading format] value)))
- (defn- lazy-load
- [format]
- (let [format (gp-util/normalize-format format)]
- (when-let [record (format/get-format-record format)]
- (when-not (protocol/loaded? record)
- (set-format-js-loading! format true)
- (protocol/lazyLoad record
- (fn [_result]
- (set-format-js-loading! format false)))))))
- (defn lazy-load-js
- [state]
- (when-let [format (:format (last (:rum/args state)))]
- (let [loader? (contains? config/html-render-formats format)]
- (when loader?
- (when-not (format/loaded? format)
- (lazy-load format))))))
- (rum/defc custom-context-menu-content
- []
- [:.menu-links-wrapper
- (ui/menu-link
- {:key "cut"
- :on-click #(editor-handler/cut-selection-blocks true)}
- "Cut"
- nil)
- (ui/menu-link
- {:key "copy"
- :on-click editor-handler/copy-selection-blocks}
- "Copy"
- nil)
- (ui/menu-link
- {:key "copy as"
- :on-click (fn [_]
- (let [block-uuids (editor-handler/get-selected-toplevel-block-uuids)]
- (state/set-modal!
- #(export/export-blocks block-uuids))))}
- "Copy as..."
- nil)
- (ui/menu-link
- {:key "copy block refs"
- :on-click editor-handler/copy-block-refs}
- "Copy block refs"
- nil)
- (ui/menu-link
- {:key "copy block embeds"
- :on-click editor-handler/copy-block-embeds}
- "Copy block embeds"
- nil)
- [:hr.menu-separator]
- (ui/menu-link
- {:key "cycle todos"
- :on-click editor-handler/cycle-todos!}
- "Cycle todos"
- nil)])
- (defonce *template-including-parent? (atom nil))
- (rum/defc template-checkbox
- [template-including-parent?]
- [:div.flex.flex-row.w-auto.items-center
- [:p.text-medium.mr-2 "Including the parent block in the template?"]
- (ui/toggle template-including-parent?
- #(swap! *template-including-parent? not))])
- (rum/defcs block-template < rum/reactive
- (rum/local false ::edit?)
- (rum/local "" ::input)
- {:will-unmount (fn [state]
- (reset! *template-including-parent? nil)
- state)}
- [state block-id]
- (let [edit? (get state ::edit?)
- input (get state ::input)
- template-including-parent? (rum/react *template-including-parent?)
- block-id (if (string? block-id) (uuid block-id) block-id)
- block (db/entity [:block/uuid block-id])
- has-children? (seq (:block/_parent block))]
- (when (and (nil? template-including-parent?) has-children?)
- (reset! *template-including-parent? true))
- (if @edit?
- (do
- (state/clear-edit!)
- [:<>
- [:div.px-4.py-2.text-sm {:on-click (fn [e] (util/stop e))}
- [:p "What's the template's name?"]
- [:input#new-template.form-input.block.w-full.sm:text-sm.sm:leading-5.my-2
- {:auto-focus true
- :on-change (fn [e]
- (reset! input (util/evalue e)))}]
- (when has-children?
- (template-checkbox template-including-parent?))
- (ui/button "Submit"
- :on-click (fn []
- (let [title (string/trim @input)]
- (when (not (string/blank? title))
- (if (page-handler/template-exists? title)
- (notification/show!
- [:p "Template already exists!"]
- :error)
- (do
- (editor-handler/set-block-property! block-id :template title)
- (when (false? template-including-parent?)
- (editor-handler/set-block-property! block-id :template-including-parent false))
- (state/hide-custom-context-menu!)))))))]
- [:hr.menu-separator]])
- (ui/menu-link
- {:key "Make a Template"
- :on-click (fn [e]
- (util/stop e)
- (reset! edit? true))}
- "Make a Template"
- nil))))
- (rum/defc ^:large-vars/cleanup-todo block-context-menu-content
- [_target block-id]
- (when-let [block (db/entity [:block/uuid block-id])]
- (let [format (:block/format block)]
- [:.menu-links-wrapper
- [:div.flex.flex-row.justify-between.py-1.px-2.items-center
- [:div.flex.flex-row.justify-between.flex-1.mx-2.mt-2
- (for [color ui/block-background-colors]
- [:a.shadow-sm
- {:title (t (keyword "color" color))
- :on-click (fn [_e]
- (editor-handler/set-block-property! block-id "background-color" color))}
- [:div.heading-bg {:style {:background-color (str "var(--color-" color "-500)")}}]])
- [:a.shadow-sm
- {:title (t :remove-background)
- :on-click (fn [_e]
- (editor-handler/remove-block-property! block-id "background-color"))}
- [:div.heading-bg.remove "-"]]]]
- [:div.flex.flex-row.justify-between.pb-2.pt-1.px-2.items-center
- [:div.flex.flex-row.justify-between.flex-1.px-1
- (for [i (range 1 7)]
- (ui/button
- ""
- :icon (str "h-" i)
- :title (t :heading i)
- :class "to-heading-button"
- :on-click (fn [_e]
- (editor-handler/set-heading! block-id format i))
- :intent "link"
- :small? true))
- (ui/button
- ""
- :icon "h-auto"
- :icon-props {:extension? true}
- :class "to-heading-button"
- :title (if (= format :markdown)
- (str (t :auto-heading) " - " (t :not-available-in-mode format))
- (t :auto-heading))
- :disabled (= format :markdown)
- :on-click (fn [_e]
- (editor-handler/set-heading! block-id format true))
- :intent "link"
- :small? true)
- (ui/button
- ""
- :icon "heading-off"
- :icon-props {:extension? true}
- :class "to-heading-button"
- :title (t :remove-heading)
- :on-click (fn [_e]
- (editor-handler/remove-heading! block-id format))
- :intent "link"
- :small? true)]]
- [:hr.menu-separator]
- (ui/menu-link
- {:key "Open in sidebar"
- :on-click (fn [_e]
- (editor-handler/open-block-in-sidebar! block-id))}
- "Open in sidebar"
- ["⇧" "click"])
- [:hr.menu-separator]
- (ui/menu-link
- {:key "Copy block ref"
- :on-click (fn [_e]
- (editor-handler/copy-block-ref! block-id block-ref/->block-ref))}
- "Copy block ref"
- nil)
- (ui/menu-link
- {:key "Copy block embed"
- :on-click (fn [_e]
- (editor-handler/copy-block-ref! block-id #(util/format "{{embed ((%s))}}" %)))}
- "Copy block embed"
- nil)
- ;; TODO Logseq protocol mobile support
- (when (util/electron?)
- (ui/menu-link
- {:key "Copy block URL"
- :on-click (fn [_e]
- (let [current-repo (state/get-current-repo)
- tap-f (fn [block-id]
- (url-util/get-logseq-graph-uuid-url nil current-repo block-id))]
- (editor-handler/copy-block-ref! block-id tap-f)))}
- "Copy block URL"
- nil))
- (ui/menu-link
- {:key "Copy as"
- :on-click (fn [_]
- (state/set-modal! #(export/export-blocks [block-id])))}
- "Copy as..."
- nil)
- (ui/menu-link
- {:key "Cut"
- :on-click (fn [_e]
- (editor-handler/cut-block! block-id))}
- "Cut"
- nil)
- [:hr.menu-separator]
- (block-template block-id)
- (cond
- (srs/card-block? block)
- (ui/menu-link
- {:key "Preview Card"
- :on-click #(srs/preview (:db/id block))}
- "Preview Card"
- nil)
- (state/enable-flashcards?)
- (ui/menu-link
- {:key "Make a Card"
- :on-click #(srs/make-block-a-card! block-id)}
- "Make a Flashcard"
- nil)
- :else
- nil)
- [:hr.menu-separator]
- (ui/menu-link
- {:key "Expand all"
- :on-click (fn [_e]
- (editor-handler/expand-all! block-id))}
- "Expand all"
- nil)
- (ui/menu-link
- {:key "Collapse all"
- :on-click (fn [_e]
- (editor-handler/collapse-all! block-id {}))}
- "Collapse all"
- nil)
- (when (state/sub [:plugin/simple-commands])
- (when-let [cmds (state/get-plugins-commands-with-type :block-context-menu-item)]
- (for [[_ {:keys [key label] :as cmd} action pid] cmds]
- (ui/menu-link
- {:key key
- :on-click #(commands/exec-plugin-simple-command!
- pid (assoc cmd :uuid block-id) action)}
- label
- nil))))
- (when (state/sub [:ui/developer-mode?])
- (ui/menu-link
- {:key "(Dev) Show block data"
- :on-click (fn []
- (let [block-data (with-out-str (pprint/pprint (db/pull [:block/uuid block-id])))]
- (println block-data)
- (notification/show!
- [:div
- [:pre.code block-data]
- [:br]
- (ui/button "Copy to clipboard"
- :on-click #(.writeText js/navigator.clipboard block-data))]
- :success
- false)))}
- "(Dev) Show block data"
- nil))])))
- (rum/defc block-ref-custom-context-menu-content
- [block block-ref-id]
- (when (and block block-ref-id)
- [:.menu-links-wrapper
- (ui/menu-link
- {:key "open-in-sidebar"
- :on-click (fn []
- (state/sidebar-add-block!
- (state/get-current-repo)
- block-ref-id
- :block-ref))}
- "Open in sidebar"
- ["⇧" "click"])
- (ui/menu-link
- {:key "copy"
- :on-click (fn [] (editor-handler/copy-current-ref block-ref-id))}
- "Copy this reference"
- nil)
- (ui/menu-link
- {:key "delete"
- :on-click (fn [] (editor-handler/delete-current-ref! block block-ref-id))}
- "Delete this reference"
- nil)
- (ui/menu-link
- {:key "replace-with-text"
- :on-click (fn [] (editor-handler/replace-ref-with-text! block block-ref-id))}
- "Replace with text"
- nil)
- (ui/menu-link
- {:key "replace-with-embed"
- :on-click (fn [] (editor-handler/replace-ref-with-embed! block block-ref-id))}
- "Replace with embed"
- nil)]))
- (rum/defc page-title-custom-context-menu-content
- [page]
- (when-not (string/blank? page)
- (let [page-menu-options (page-menu/page-menu page)]
- [:.menu-links-wrapper
- (for [{:keys [title options]} page-menu-options]
- (ui/menu-link
- (merge
- {:key title}
- options)
- title
- nil))])))
- ;; TODO: content could be changed
- ;; Also, keyboard bindings should only be activated after
- ;; blocks were already selected.
- (rum/defc hiccup-content < rum/static
- (mixins/event-mixin
- (fn [state]
- (mixins/listen state js/window "contextmenu"
- (fn [e]
- (let [target (gobj/get e "target")
- block-id (d/attr target "blockid")
- {:keys [block block-ref]} (state/sub :block-ref/context)
- {:keys [page]} (state/sub :page-title/context)]
- ;; TODO: Find a better way to handle this on whiteboards
- (when-not (whiteboard-handler/inside-portal? target)
- (cond
- page
- (do
- (common-handler/show-custom-context-menu!
- e
- (page-title-custom-context-menu-content page))
- (state/set-state! :page-title/context nil))
- block-ref
- (do
- (common-handler/show-custom-context-menu!
- e
- (block-ref-custom-context-menu-content block block-ref))
- (state/set-state! :block-ref/context nil))
- (and (state/selection?) (not (d/has-class? target "bullet")))
- (common-handler/show-custom-context-menu!
- e
- (custom-context-menu-content))
- (and block-id (parse-uuid block-id))
- (let [block (.closest target ".ls-block")]
- (when block
- (util/select-highlight! [block]))
- (common-handler/show-custom-context-menu!
- e
- (block-context-menu-content target (uuid block-id))))
- :else
- nil)))))))
- [id {:keys [hiccup]}]
- [:div {:id id}
- (if hiccup
- hiccup
- [:div.cursor "Click to edit"])])
- (rum/defc non-hiccup-content < rum/reactive
- [id content on-click on-hide config format]
- (let [edit? (state/sub [:editor/editing? id])
- loading (state/sub :format/loading)]
- (if edit?
- (editor/box {:on-hide on-hide
- :format format}
- id
- config)
- (let [format (gp-util/normalize-format format)
- loading? (get loading format)
- markup? (contains? config/html-render-formats format)
- on-click (fn [e]
- (when-not (util/link? (gobj/get e "target"))
- (util/stop e)
- (editor-handler/reset-cursor-range! (gdom/getElement (str id)))
- (state/set-edit-content! id content)
- (state/set-edit-input-id! id)
- (when on-click
- (on-click e))))]
- (cond
- (and markup? loading?)
- [:div "loading ..."]
- :else ; other text formats
- [:pre.cursor.content.pre-white-space
- {:id id
- :on-click on-click}
- (if (string/blank? content)
- [:div.cursor "Click to edit"]
- content)])))))
- (defn- set-draw-iframe-style!
- []
- (let [width (gobj/get js/window "innerWidth")]
- (when (>= width 1024)
- (let [draws (d/by-class "draw-iframe")
- width (- width 200)]
- (doseq [draw draws]
- (d/set-style! draw :width (str width "px"))
- (let [height (max 700 (/ width 2))]
- (d/set-style! draw :height (str height "px")))
- (d/set-style! draw :margin-left (str (- (/ (- width 570) 2)) "px")))))))
- (rum/defcs content < rum/reactive
- {:will-mount (fn [state]
- (lazy-load-js state)
- state)
- :did-mount (fn [state]
- (set-draw-iframe-style!)
- (image-handler/render-local-images!)
- state)
- :did-update (fn [state]
- (set-draw-iframe-style!)
- (lazy-load-js state)
- (image-handler/render-local-images!)
- state)}
- [state id {:keys [format
- config
- hiccup
- content
- on-click
- on-hide]
- :as option}]
- (if hiccup
- [:div
- (hiccup-content id option)]
- (let [format (gp-util/normalize-format format)]
- (non-hiccup-content id content on-click on-hide config format))))
|