| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- (ns frontend.extensions.tldraw
- "Adapters related to tldraw"
- (:require ["/frontend/tldraw-logseq" :as TldrawLogseq]
- [frontend.components.block :as block]
- [frontend.components.export :as export]
- [frontend.components.page :as page]
- [frontend.config :as config]
- [frontend.context.i18n :refer [t]]
- [frontend.db.model :as model]
- [frontend.handler.editor :as editor-handler]
- [frontend.handler.route :as route-handler]
- [frontend.handler.whiteboard :as whiteboard-handler]
- [frontend.handler.history :as history]
- [frontend.modules.shortcut.data-helper :as shortcut-helper]
- [frontend.rum :as r]
- [frontend.search :as search]
- [frontend.state :as state]
- [frontend.util :as util]
- [goog.object :as gobj]
- [promesa.core :as p]
- [rum.core :as rum]
- [frontend.ui :as ui]
- [frontend.components.whiteboard :as whiteboard]))
- (def tldraw (r/adapt-class (gobj/get TldrawLogseq "App")))
- (def generate-preview (gobj/get TldrawLogseq "generateJSXFromModel"))
- (rum/defc page-cp
- [props]
- (page/page {:page-name (model/get-redirect-page-name (gobj/get props "pageName")) :whiteboard? true}))
- (rum/defc block-cp
- [props]
- ((state/get-component :block/single-block) (uuid (gobj/get props "blockId"))))
- (rum/defc breadcrumb
- [props]
- (block/breadcrumb {:preview? true}
- (state/get-current-repo)
- (uuid (gobj/get props "blockId"))
- {:end-separator? (gobj/get props "endSeparator")
- :level-limit (gobj/get props "levelLimit" 3)}))
- (rum/defc tweet
- [props]
- (ui/tweet-embed (gobj/get props "tweetId")))
- (rum/defc block-reference
- [props]
- (block/block-reference {} (gobj/get props "blockId") nil))
- (rum/defc page-name-link
- [props]
- (block/page-cp {:preview? true} {:block/name (gobj/get props "pageName")}))
- (defn search-handler
- [q filters]
- (let [{:keys [pages? blocks? files?]} (js->clj filters {:keywordize-keys true})
- repo (state/get-current-repo)
- limit 100]
- (p/let [blocks (when blocks? (search/block-search repo q {:limit limit}))
- pages (when pages? (search/page-search q))
- files (when files? (search/file-search q limit))]
- (clj->js {:pages pages :blocks blocks :files files}))))
- (defn save-asset-handler
- [file]
- (-> (editor-handler/save-assets! nil (state/get-current-repo) [(js->clj file)])
- (p/then
- (fn [res]
- (when-let [[asset-file-name _ full-file-path] (and (seq res) (first res))]
- (editor-handler/resolve-relative-path (or full-file-path asset-file-name)))))))
- (defn references-count
- [props]
- (apply whiteboard/references-count
- (map (fn [k] (js->clj (gobj/get props k) {:keywordize-keys true})) ["id" "className" "options"])))
- (rum/defc keyboard-shortcut
- [props]
- (let [shortcut (shortcut-helper/gen-shortcut-seq (keyword (gobj/get props "action")))]
- (ui/render-keyboard-shortcut shortcut)))
- (def tldraw-renderers {:Page page-cp
- :Block block-cp
- :Breadcrumb breadcrumb
- :Tweet tweet
- :PageName page-name-link
- :BacklinksCount references-count
- :BlockReference block-reference
- :KeyboardShortcut keyboard-shortcut})
- (def undo (fn [] (history/undo! nil)))
- (def redo (fn [] (history/redo! nil)))
- (defn get-tldraw-handlers [current-whiteboard-name]
- {:t (fn [key] (t (keyword key)))
- :search search-handler
- :queryBlockByUUID (fn [block-uuid]
- (clj->js
- (model/query-block-by-uuid (parse-uuid block-uuid))))
- :getBlockPageName #(:block/name (model/get-block-page (state/get-current-repo) (parse-uuid %)))
- :exportToImage (fn [page-name options] (state/set-modal! #(export/export-blocks page-name (merge (js->clj options :keywordize-keys true) {:whiteboard? true}))))
- :isWhiteboardPage model/whiteboard-page?
- :isMobile util/mobile?
- :saveAsset save-asset-handler
- :makeAssetUrl editor-handler/make-asset-url
- :copyToClipboard (fn [text, html] (util/copy-to-clipboard! text :html html))
- :getRedirectPageName (fn [page-name-or-uuid] (model/get-redirect-page-name page-name-or-uuid))
- :insertFirstPageBlock (fn [page-name] (editor-handler/insert-first-page-block-if-not-exists! page-name {:redirect? false}))
- :addNewWhiteboard (fn [page-name]
- (whiteboard-handler/create-new-whiteboard-page! page-name))
- :addNewBlock (fn [content]
- (str (whiteboard-handler/add-new-block! current-whiteboard-name content)))
- :sidebarAddBlock (fn [uuid type]
- (state/sidebar-add-block! (state/get-current-repo)
- (:db/id (model/get-page uuid))
- (keyword type)))
- :redirectToPage (fn [page-name-or-uuid]
- (let [page-name (or (when (util/uuid-string? page-name-or-uuid)
- (:block/name (model/get-block-page (state/get-current-repo)
- (parse-uuid page-name-or-uuid))))
- page-name-or-uuid)
- page-exists? (model/page-exists? page-name)
- whiteboard? (model/whiteboard-page? page-name)]
- (when page-exists?
- (if whiteboard?
- (route-handler/redirect-to-whiteboard! page-name {:block-id page-name-or-uuid})
- (route-handler/redirect-to-page! (model/get-redirect-page-name page-name-or-uuid))))))})
- (rum/defc tldraw-app
- [page-name block-id]
- (let [populate-onboarding? (whiteboard-handler/should-populate-onboarding-whiteboard? page-name)
- data (whiteboard-handler/page-name->tldr! page-name)
- [loaded-app set-loaded-app] (rum/use-state nil)
- on-mount (fn [^js tln]
- (when tln
- (set! (.-appUndo tln) undo)
- (set! (.-appRedo tln) redo)
- (when-let [^js api (gobj/get tln "api")]
- (p/then (when populate-onboarding?
- (whiteboard-handler/populate-onboarding-whiteboard api))
- #(do (whiteboard-handler/cleanup! (.-currentPage tln))
- (state/focus-whiteboard-shape tln block-id)
- (set-loaded-app tln))))))]
- (rum/use-effect! (fn []
- (when (and loaded-app block-id)
- (state/focus-whiteboard-shape loaded-app block-id))
- #())
- [block-id loaded-app])
- (when data
- [:div.draw.tldraw.whiteboard.relative.w-full.h-full
- {:style {:overscroll-behavior "none"}
- :on-blur (fn [e]
- (when (#{"INPUT" "TEXTAREA"} (.-tagName (gobj/get e "target")))
- (state/clear-edit!)))
- ;; wheel -> overscroll may cause browser navigation
- :on-wheel util/stop-propagation}
- (when
- (and populate-onboarding? (not loaded-app))
- [:div.absolute.inset-0.flex.items-center.justify-center
- {:style {:z-index 200}}
- (ui/loading "Loading onboarding whiteboard ...")])
- (tldraw {:renderers tldraw-renderers
- :handlers (get-tldraw-handlers page-name)
- :onMount on-mount
- :readOnly config/publishing?
- :onPersist (fn [app info]
- (state/set-state! [:whiteboard/last-persisted-at (state/get-current-repo)] (util/time-ms))
- (util/profile "tldraw persist"
- (whiteboard-handler/transact-tldr-delta! page-name app (.-replace info))))
- :model data})])))
|