Files
logseq/src/main/frontend/components/export.cljs

415 lines
21 KiB
Clojure

(ns frontend.components.export
(:require ["/frontend/utils" :as utils]
[cljs-time.core :as t]
[cljs.pprint :as pprint]
[frontend.config :as config]
[frontend.context.i18n :refer [interpolate-rich-text-node interpolate-sentence t]]
[frontend.db :as db]
[frontend.handler.block :as block-handler]
[frontend.handler.db-based.export :as db-export-handler]
[frontend.handler.export :as export]
[frontend.handler.export.html :as export-html]
[frontend.handler.export.opml :as export-opml]
[frontend.handler.export.text :as export-text]
[frontend.handler.notification :as notification]
[frontend.image :as image]
[frontend.mobile.util :as mobile-util]
[frontend.state :as state]
[frontend.ui :as ui]
[frontend.util :as util]
[logseq.db :as ldb]
[logseq.db.sqlite.export :as sqlite-export]
[logseq.shui.ui :as shui]
[promesa.core :as p]
[rum.core :as rum]))
(rum/defcs auto-backup < rum/reactive
{:init (fn [state]
(assoc state ::folder (atom (ldb/get-key-value (db/get-db) :logseq.kv/graph-backup-folder))))}
[state]
(let [*backup-folder (::folder state)
backup-folder (rum/react *backup-folder)
repo (state/get-current-repo)]
[:div.flex.flex-col.gap-4
[:div.font-medium.opacity-50
(t :export.backup/schedule)]
(if (utils/nfsSupported)
[:<>
(if backup-folder
[:div.flex.flex-row.items-center.gap-1.text-sm
[:div.opacity-50 (t :export.backup/folder)]
backup-folder
(shui/button
{:variant :ghost
:class "!px-1 !py-1"
:title (t :export.backup/cancel)
:on-click (fn []
(p/do!
(db/transact! [[:db/retractEntity :logseq.kv/graph-backup-folder]])
(reset! *backup-folder nil)))
:size :sm}
(ui/icon "x"))]
(shui/button
{:variant :default
:on-click (fn []
(p/let [[folder-name _handle] (export/choose-backup-folder repo)]
(reset! *backup-folder folder-name)))}
(t :export.backup/set-folder-first)))
[:div.opacity-50.text-sm
(t :export.backup/hourly-note)]
(when backup-folder
(shui/button
{:variant :default
:on-click (fn []
(->
(p/let [result (export/backup-db-graph repo)]
(case result
true
(notification/show! (t :export/backup-successful) :success)
:graph-not-changed
(notification/show! (t :export/no-updates-since-last-export) :success)
nil)
(export/auto-db-backup! repo))
(p/catch (fn [error]
(println "Failed to backup.")
(js/console.error error)))))}
(t :export.backup/backup-now)))]
[:div
[:span
(interpolate-sentence
(t :export.backup/unsupported-desc)
:links [{:href "https://developer.chrome.com/docs/capabilities/web-apis/file-system-access"
:target "_blank"}])]])]))
(rum/defc export
[]
(when-let [current-repo (state/get-current-repo)]
[:div.export
[:h1.title.mb-8 (t :export/title)]
[:div.flex.flex-col.gap-4.ml-1
[:div
[:a.font-medium {:on-click #(export/export-repo-as-sqlite-db! current-repo)}
(t :export/sqlite-db)]
[:p.text-sm.opacity-70.mb-0 (t :export.backup/sqlite-desc)]]
[:div
[:a.font-medium {:on-click #(export/export-repo-as-zip! current-repo)}
(t :export/zip)]
[:p.text-sm.opacity-70.mb-0 (t :export.backup/zip-desc)]]
(when-not (util/mobile?)
[:div
[:a.font-medium {:on-click #(db-export-handler/export-repo-as-db-edn! current-repo)}
(t :export/db-edn)]
[:p.text-sm.opacity-70.mb-0 (t :export/edn-desc)]])
(when-not (mobile-util/native-platform?)
[:div
[:a.font-medium {:on-click #(export-text/export-repo-as-markdown! current-repo)}
(t :export/markdown)]])
(when (util/electron?)
[:div
[:a.font-medium {:on-click #(export/download-repo-as-html! current-repo)}
(t :export/public-pages)]])
[:div
[:a.font-medium {:on-click #(export/export-repo-as-debug-transit! current-repo)}
(t :export/debug-transit-file)]
[:p.text-sm.opacity-70.mb-0 (t :export/debug-transit-desc)]]
(if (util/electron?)
[:div
[:hr]
[:div
(interpolate-rich-text-node
(t :export.backup/enabled-desc)
[[:a.ml-1 {:on-click (fn []
(let [path (config/get-electron-backup-dir (state/get-current-repo))]
(js/window.apis.openPath path)))}
(t :export.backup/open-folder)]])]]
(when (and util/web-platform?
(not (util/mobile?)))
[:div
[:hr]
(auto-backup)]))]]))
(def *export-block-type (atom :text))
(def text-indent-style-options [{:title-key :export/indent-style-dashes
:selected false}
{:title-key :export/indent-style-spaces
:selected false}
{:title-key :export/indent-style-none
:selected false}])
(defn- export-helper
[top-level-ids]
(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 top-level-ids
{:indent-style text-indent-style :remove-options text-remove-options :other-options text-other-options})
:opml (export-opml/export-blocks-as-opml
current-repo top-level-ids {:remove-options text-remove-options :other-options text-other-options})
:html (export-html/export-blocks-as-html
current-repo top-level-ids {:remove-options text-remove-options :other-options text-other-options})
"")))
(defn- <export-edn-helper
[root-block-uuids-or-page-uuid export-type]
(let [export-args (case export-type
:page
{:page-id [:block/uuid (first root-block-uuids-or-page-uuid)]}
:block
{:block-id [:block/uuid (first root-block-uuids-or-page-uuid)]}
:selected-nodes
{:node-ids (mapv #(vector :block/uuid %) root-block-uuids-or-page-uuid)}
{})]
(p/let [export-edn (state/<invoke-db-worker :thread-api/export-edn
(state/get-current-repo)
(merge {:export-type export-type} export-args))]
;; Don't validate :block for now b/c it requires more setup
(if (#{:page :selected-nodes} export-type)
(if-let [error (:error (sqlite-export/validate-export export-edn))]
(do
(js/console.log "Invalid export EDN:")
(pprint/pprint export-edn)
{:export-edn-error error})
export-edn)
export-edn))))
(defn- get-image-blob
[block-uuids-or-page-name {:keys [transparent-bg? x y width height zoom]} callback]
(let [top-block-id (if (coll? block-uuids-or-page-name) (first block-uuids-or-page-name) block-uuids-or-page-name)
style (js/window.getComputedStyle js/document.body)
background (when-not transparent-bg? (.getPropertyValue style "--ls-primary-background-color"))
page? (and (uuid? top-block-id) (db/page? (db/entity [:block/uuid top-block-id])))
selector (if page?
"#main-content-container"
(str "[blockid='" top-block-id "']"))
container (js/document.querySelector selector)
scale (if page? (/ 1 (or zoom 1)) 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 page?
(.-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"))))))
(defn- get-top-level-uuids
[selection-ids]
(->> (block-handler/get-top-level-blocks (map #(db/entity [:block/uuid %]) selection-ids))
(map :block/uuid)))
(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]
(let [top-level-uuids (get-top-level-uuids (first (:rum/args state)))]
(reset! *export-block-type :text)
(if (= @*export-block-type :png)
(do (reset! (::content state) nil)
(get-image-blob top-level-uuids
(merge (second (:rum/args state)) {:transparent-bg? false})
(fn [blob] (reset! (::content state) blob))))
(reset! (::content state) (export-helper top-level-uuids)))
(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))
(assoc state ::top-level-uuids top-level-uuids)))}
[state _selection-ids {:keys [export-type] :as options}]
(let [top-level-uuids (::top-level-uuids state)
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
{:class "-m-5"}
[:div.p-6
[:div.flex.pb-3
(ui/button (t :export/format-text)
:class "mr-4 w-20"
:on-click #(do (reset! *export-block-type :text)
(reset! *content (export-helper top-level-uuids))))
(ui/button "OPML"
:class "mr-4 w-20"
:on-click #(do (reset! *export-block-type :opml)
(reset! *content (export-helper top-level-uuids))))
(ui/button "HTML"
:class "mr-4 w-20"
:on-click #(do (reset! *export-block-type :html)
(reset! *content (export-helper top-level-uuids))))
;; TODO: Remove if this is no longer used after whiteboard removal
(when-not (seq? top-level-uuids)
(ui/button "PNG"
:class "mr-4 w-20"
:on-click #(do (reset! *export-block-type :png)
(reset! *content nil)
(get-image-blob top-level-uuids (merge options {:transparent-bg? false}) (fn [blob] (reset! *content blob))))))
(ui/button "EDN"
:class "w-20"
:on-click #(do (reset! *export-block-type :edn)
(p/let [result (<export-edn-helper top-level-uuids export-type)
pull-data (with-out-str (pprint/pprint result))]
(if (:export-edn-error result)
(notification/show! (:export-edn-error result) :error)
(reset! *content pull-data)))))]
(if (= :png tp)
[:div.flex.items-center.justify-center.relative
(when (not @*content) [:div.absolute (ui/loading "")])
[:img {:alt (t :export/preview-alt) :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 top-level-uuids (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 (:title-key opt))
(assoc opt :selected true)
opt))))]
[:div [:div.flex.items-center
[:label.mr-4
{:style {:visibility (if (= :text tp) "visible" "hidden")}}
(t :export/indent-style-label)]
[: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 top-level-uuids))))}
(for [{:keys [title-key value selected]} options]
[:option (cond->
{:key title-key
:value (or value (name title-key))}
selected
(assoc :selected selected))
(t title-key)])]]
[: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 top-level-uuids)))})
[:div {:style {:visibility (if (#{:text :html :opml} tp) "visible" "hidden")}}
(t :export/page-ref-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 top-level-uuids)))})
[:div {:style {:visibility (if (#{:text :html :opml} tp) "visible" "hidden")}}
(t :export/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 top-level-uuids)))})
[:div {:style {:visibility (if (#{:text :html :opml} tp) "visible" "hidden")}}
(t :export/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 top-level-uuids)))})
[:div {:style {:visibility (if (#{:text} tp) "visible" "hidden")}}
(t :export/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 top-level-uuids)))})
[:div {:style {:visibility (if (#{:text} tp) "visible" "hidden")}}
(t :export/remove-properties)]]
[:div.flex.items-center
(ui/checkbox {:class "mr-2"
:style {:visibility (if (#{:text :html :opml} tp) "visible" "hidden")}
:checked (boolean (:open-blocks-only @*text-other-options))
:on-change (fn [e]
(state/update-export-block-text-other-options!
:open-blocks-only (boolean (util/echecked? e)))
(reset! *text-other-options (state/get-export-block-text-other-options))
(reset! *content (export-helper top-level-uuids)))})
[:div {:style {:visibility (if (#{:text :html :opml} tp) "visible" "hidden")}}
(t :export/open-blocks-only)]]
[:div.flex.items-center
[:label.mr-2 {:style {:visibility (if (#{:text :html :opml} tp) "visible" "hidden")}}
(t :export/level-lte)]
[: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 top-level-uuids))))}
(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 :ui/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 (uuid? top-level-uuids)
(-> (db/get-page top-level-uuids)
(util/get-page-title))
(t/now))]
(utils/saveToFile (js/Blob. [@*content]) (str "logseq_" file-name) (if (= tp :text) "txt" (name tp)))))])]]))