| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291 |
- (ns frontend.components.export
- (:require [cljs-time.core :as t]
- ["/frontend/utils" :as utils]
- [frontend.context.i18n :refer [t]]
- [frontend.db :as db]
- [frontend.handler.export.text :as export-text]
- [frontend.handler.export.html :as export-html]
- [frontend.handler.export.opml :as export-opml]
- [frontend.handler.export :as export]
- [frontend.image :as image]
- [frontend.mobile.util :as mobile-util]
- [frontend.state :as state]
- [frontend.ui :as ui]
- [frontend.util :as util]
- [rum.core :as rum]))
- (rum/defc export
- []
- (when-let [current-repo (state/get-current-repo)]
- [:div.export
- [:h1.title (t :export)]
- [:ul.mr-1
- [:li.mb-4
- [:a.font-medium {:on-click #(export/export-repo-as-edn-v2! current-repo)}
- (t :export-edn)]]
- [:li.mb-4
- [:a.font-medium {:on-click #(export/export-repo-as-json-v2! current-repo)}
- (t :export-json)]]
- (when (util/electron?)
- [:li.mb-4
- [:a.font-medium {:on-click #(export/download-repo-as-html! current-repo)}
- (t :export-public-pages)]])
- (when-not (mobile-util/native-platform?)
- [:li.mb-4
- [:a.font-medium {:on-click #(export-text/export-repo-as-markdown! current-repo)}
- (t :export-markdown)]])
- (when-not (mobile-util/native-platform?)
- [:li.mb-4
- [:a.font-medium {:on-click #(export-opml/export-repo-as-opml! current-repo)}
- (t :export-opml)]])
- (when-not (mobile-util/native-platform?)
- [:li.mb-4
- [:a.font-medium {:on-click #(export/export-repo-as-roam-json! current-repo)}
- (t :export-roam-json)]])]
- [:a#download-as-edn-v2.hidden]
- [:a#download-as-json-v2.hidden]
- [:a#download-as-roam-json.hidden]
- [:a#download-as-html.hidden]
- [:a#download-as-zip.hidden]
- [:a#export-as-markdown.hidden]
- [:a#export-as-opml.hidden]
- [:a#convert-markdown-to-unordered-list-or-heading.hidden]]))
- (def *export-block-type (atom :text))
- (def text-indent-style-options [{:label "dashes"
- :selected false}
- {:label "spaces"
- :selected false}
- {:label "no-indent"
- :selected false}])
- (defn- export-helper
- [block-uuids-or-page-name]
- (let [current-repo (state/get-current-repo)
- text-indent-style (state/get-export-block-text-indent-style)
- text-remove-options (set (state/get-export-block-text-remove-options))
- text-other-options (state/get-export-block-text-other-options)
- tp @*export-block-type]
- (case tp
- :text (export-text/export-blocks-as-markdown
- current-repo block-uuids-or-page-name
- {:indent-style text-indent-style :remove-options text-remove-options :other-options text-other-options})
- :opml (export-opml/export-blocks-as-opml
- current-repo block-uuids-or-page-name {:remove-options text-remove-options :other-options text-other-options})
- :html (export-html/export-blocks-as-html
- current-repo block-uuids-or-page-name {:remove-options text-remove-options :other-options text-other-options})
- "")))
- (defn- get-zoom-level
- [page-uuid]
- (let [uuid (:block/uuid (db/get-page page-uuid))
- whiteboard-camera (->> (str "logseq.tldraw.camera:" uuid)
- (.getItem js/sessionStorage)
- (js/JSON.parse)
- (js->clj))]
- (or (get whiteboard-camera "zoom") 1)))
- (defn- get-image-blob
- [block-uuids-or-page-name {:keys [transparent-bg? x y width height zoom]} callback]
- (let [html js/document.body.parentNode
- style (js/window.getComputedStyle html)
- background (when-not transparent-bg? (.getPropertyValue style "--ls-primary-background-color"))
- page? (string? block-uuids-or-page-name)
- selector (if page?
- "#main-content-container"
- (str "[blockid='" (str (first block-uuids-or-page-name)) "']"))
- container (js/document.querySelector selector)
- scale (if page? (/ 1 (or zoom (get-zoom-level block-uuids-or-page-name))) 1)
- options #js {:allowTaint true
- :useCORS true
- :backgroundColor (or background "transparent")
- :x (or (/ x scale) 0)
- :y (or (/ y scale) 0)
- :width (when width (/ width scale))
- :height (when height (/ height scale))
- :scrollX 0
- :scrollY 0
- :scale scale
- :windowHeight (when (string? block-uuids-or-page-name)
- (.-scrollHeight container))}]
- (-> (js/html2canvas container options)
- (.then (fn [canvas] (.toBlob canvas (fn [blob]
- (when blob
- (let [img (js/document.getElementById "export-preview")
- img-url (image/create-object-url blob)]
- (set! (.-src img) img-url)
- (callback blob)))) "image/png"))))))
- (rum/defcs ^:large-vars/cleanup-todo
- export-blocks < rum/static
- (rum/local false ::copied?)
- (rum/local nil ::text-remove-options)
- (rum/local nil ::text-indent-style)
- (rum/local nil ::text-other-options)
- (rum/local nil ::content)
- {:will-mount (fn [state]
- (reset! *export-block-type (if (:whiteboard? (last (:rum/args state))) :png :text))
- (if (= @*export-block-type :png)
- (do (reset! (::content state) nil)
- (get-image-blob (first (:rum/args state))
- (merge (second (:rum/args state)) {:transparent-bg? false})
- (fn [blob] (reset! (::content state) blob))))
- (reset! (::content state) (export-helper (first (:rum/args state)))))
- (reset! (::text-remove-options state) (set (state/get-export-block-text-remove-options)))
- (reset! (::text-indent-style state) (state/get-export-block-text-indent-style))
- (reset! (::text-other-options state) (state/get-export-block-text-other-options))
- state)}
- [state root-block-uuids-or-page-name {:keys [whiteboard?] :as options}]
- (let [tp @*export-block-type
- *text-other-options (::text-other-options state)
- *text-remove-options (::text-remove-options state)
- *text-indent-style (::text-indent-style state)
- *copied? (::copied? state)
- *content (::content state)]
- [:div.export.resize
- (when-not whiteboard?
- [:div.flex
- {:class "mb-2"}
- (ui/button "Text"
- :class "mr-4 w-20"
- :on-click #(do (reset! *export-block-type :text)
- (reset! *content (export-helper root-block-uuids-or-page-name))))
- (ui/button "OPML"
- :class "mr-4 w-20"
- :on-click #(do (reset! *export-block-type :opml)
- (reset! *content (export-helper root-block-uuids-or-page-name))))
- (ui/button "HTML"
- :class "mr-4 w-20"
- :on-click #(do (reset! *export-block-type :html)
- (reset! *content (export-helper root-block-uuids-or-page-name))))
- (when-not (seq? root-block-uuids-or-page-name)
- (ui/button "PNG"
- :class "w-20"
- :on-click #(do (reset! *export-block-type :png)
- (reset! *content nil)
- (get-image-blob root-block-uuids-or-page-name (merge options {:transparent-bg? false}) (fn [blob] (reset! *content blob))))))])
- (if (= :png tp)
- [:div.flex.items-center.justify-center.relative
- (when (not @*content) [:div.absolute (ui/loading "")])
- [:img {:alt "export preview" :id "export-preview" :class "my-4" :style {:visibility (when (not @*content) "hidden")}}]]
- [:textarea.overflow-y-auto.h-96 {:value @*content :read-only true}])
- (if (= :png tp)
- [:div.flex.items-center
- [:div (t :export-transparent-background)]
- (ui/checkbox {:class "mr-2 ml-4"
- :on-change (fn [e]
- (reset! *content nil)
- (get-image-blob root-block-uuids-or-page-name (merge options {:transparent-bg? e.currentTarget.checked}) (fn [blob] (reset! *content blob))))})]
- (let [options (->> text-indent-style-options
- (mapv (fn [opt]
- (if (= @*text-indent-style (:label opt))
- (assoc opt :selected true)
- opt))))]
- [:div [:div.flex.items-center
- [:label.mr-4
- {:style {:visibility (if (= :text tp) "visible" "hidden")}}
- "Indentation style:"]
- [:select.block.my-2.text-lg.rounded.border.py-0.px-1
- {:style {:visibility (if (= :text tp) "visible" "hidden")}
- :on-change (fn [e]
- (let [value (util/evalue e)]
- (state/set-export-block-text-indent-style! value)
- (reset! *text-indent-style value)
- (reset! *content (export-helper root-block-uuids-or-page-name))))}
- (for [{:keys [label value selected]} options]
- [:option (cond->
- {:key label
- :value (or value label)}
- selected
- (assoc :selected selected))
- label])]]
- [:div.flex.items-center
- (ui/checkbox {:class "mr-2"
- :style {:visibility (if (#{:text :html :opml} tp) "visible" "hidden")}
- :checked (contains? @*text-remove-options :page-ref)
- :on-change (fn [e]
- (state/update-export-block-text-remove-options! e :page-ref)
- (reset! *text-remove-options (state/get-export-block-text-remove-options))
- (reset! *content (export-helper root-block-uuids-or-page-name)))})
- [:div {:style {:visibility (if (#{:text :html :opml} tp) "visible" "hidden")}}
- "[[text]] -> text"]
- (ui/checkbox {:class "mr-2 ml-4"
- :style {:visibility (if (#{:text :html :opml} tp) "visible" "hidden")}
- :checked (contains? @*text-remove-options :emphasis)
- :on-change (fn [e]
- (state/update-export-block-text-remove-options! e :emphasis)
- (reset! *text-remove-options (state/get-export-block-text-remove-options))
- (reset! *content (export-helper root-block-uuids-or-page-name)))})
- [:div {:style {:visibility (if (#{:text :html :opml} tp) "visible" "hidden")}}
- "remove emphasis"]
- (ui/checkbox {:class "mr-2 ml-4"
- :style {:visibility (if (#{:text :html :opml} tp) "visible" "hidden")}
- :checked (contains? @*text-remove-options :tag)
- :on-change (fn [e]
- (state/update-export-block-text-remove-options! e :tag)
- (reset! *text-remove-options (state/get-export-block-text-remove-options))
- (reset! *content (export-helper root-block-uuids-or-page-name)))})
- [:div {:style {:visibility (if (#{:text :html :opml} tp) "visible" "hidden")}}
- "remove #tags"]]
- [:div.flex.items-center
- (ui/checkbox {:class "mr-2"
- :style {:visibility (if (#{:text} tp) "visible" "hidden")}
- :checked (boolean (:newline-after-block @*text-other-options))
- :on-change (fn [e]
- (state/update-export-block-text-other-options!
- :newline-after-block (boolean (util/echecked? e)))
- (reset! *text-other-options (state/get-export-block-text-other-options))
- (reset! *content (export-helper root-block-uuids-or-page-name)))})
- [:div {:style {:visibility (if (#{:text} tp) "visible" "hidden")}}
- "newline after block"]
- (ui/checkbox {:class "mr-2 ml-4"
- :style {:visibility (if (#{:text} tp) "visible" "hidden")}
- :checked (contains? @*text-remove-options :property)
- :on-change (fn [e]
- (state/update-export-block-text-remove-options! e :property)
- (reset! *text-remove-options (state/get-export-block-text-remove-options))
- (reset! *content (export-helper root-block-uuids-or-page-name)))})
- [:div {:style {:visibility (if (#{:text} tp) "visible" "hidden")}}
- "remove properties"]]
- [:div.flex.items-center
- [:label.mr-2 {:style {:visibility (if (#{:text :html :opml} tp) "visible" "hidden")}}
- "level <="]
- [:select.block.my-2.text-lg.rounded.border.px-2.py-0
- {:style {:visibility (if (#{:text :html :opml} tp) "visible" "hidden")}
- :value (or (:keep-only-level<=N @*text-other-options) :all)
- :on-change (fn [e]
- (let [value (util/evalue e)
- level (if (= "all" value) :all (util/safe-parse-int value))]
- (state/update-export-block-text-other-options! :keep-only-level<=N level)
- (reset! *text-other-options (state/get-export-block-text-other-options))
- (reset! *content (export-helper root-block-uuids-or-page-name))))}
- (for [n (cons "all" (range 1 10))]
- [:option {:key n :value n} n])]]]))
- (when @*content
- [:div.mt-4.flex.flex-row.gap-2
- (ui/button (if @*copied? (t :export-copied-to-clipboard) (t :export-copy-to-clipboard))
- :class "mr-4"
- :on-click (fn []
- (if (= tp :png)
- (js/navigator.clipboard.write [(js/ClipboardItem. #js {"image/png" @*content})])
- (util/copy-to-clipboard! @*content :html (when (= tp :html) @*content)))
- (reset! *copied? true)))
- (ui/button (t :export-save-to-file)
- :on-click #(let [file-name (if (string? root-block-uuids-or-page-name)
- (-> (db/get-page root-block-uuids-or-page-name)
- (util/get-page-original-name))
- (t/now))]
- (utils/saveToFile (js/Blob. [@*content]) (str "logseq_" file-name) (if (= tp :text) "txt" (name tp)))))])]))
|