123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- (ns frontend.components.page-menu
- (:require [cljs.pprint :as pprint]
- [frontend.commands :as commands]
- [frontend.components.export :as export]
- [frontend.context.i18n :refer [t]]
- [frontend.db :as db]
- [frontend.handler.notification :as notification]
- [frontend.handler.page :as page-handler]
- [frontend.handler.route :as route-handler]
- [frontend.state :as state]
- [frontend.ui :as ui]
- [frontend.util :as util]
- [frontend.util.url :as url-util]
- [frontend.handler.shell :as shell]
- [frontend.mobile.util :as mobile-util]
- [electron.ipc :as ipc]
- [frontend.config :as config]
- [frontend.handler.user :as user-handler]
- [frontend.handler.file-sync :as file-sync-handler]))
- (defn- delete-page!
- [page-name]
- (page-handler/delete! page-name
- (fn []
- (notification/show! (str "Page " page-name " was deleted successfully!")
- :success)))
- (state/close-modal!)
- (route-handler/redirect-to-home!))
- (defn delete-page-dialog
- [page-name]
- (fn [close-fn]
- [:div
- [:div.sm:flex.items-center
- [:div.mx-auto.flex-shrink-0.flex.items-center.justify-center.h-12.w-12.rounded-full.bg-error.sm:mx-0.sm:h-10.sm:w-10
- [:span.text-error.text-xl
- (ui/icon "alert-triangle")]]
- [:div.mt-3.text-center.sm:mt-0.sm:ml-4.sm:text-left
- [:h3#modal-headline.text-lg.leading-6.font-medium
- (t :page/delete-confirmation)]]]
- [:div.mt-5.sm:mt-4.sm:flex.sm:flex-row-reverse
- [:span.flex.w-full.rounded-md.shadow-sm.sm:ml-3.sm:w-auto
- [:button.inline-flex.justify-center.w-full.rounded-md.border.border-transparent.px-4.py-2.bg-indigo-600.text-base.leading-6.font-medium.text-white.shadow-sm.hover:bg-indigo-500.focus:outline-none.focus:border-indigo-700.focus:shadow-outline-indigo.transition.ease-in-out.duration-150.sm:text-sm.sm:leading-5
- {:type "button"
- :class "ui__modal-enter"
- :on-click (fn []
- (delete-page! page-name))}
- (t :yes)]]
- [:span.mt-3.flex.w-full.rounded-md.shadow-sm.sm:mt-0.sm:w-auto
- [:button.inline-flex.justify-center.w-full.rounded-md.border.border-gray-300.px-4.py-2.bg-white.text-base.leading-6.font-medium.text-gray-700.shadow-sm.hover:text-gray-500.focus:outline-none.focus:border-blue-300.focus:shadow-outline-blue.transition.ease-in-out.duration-150.sm:text-sm.sm:leading-5
- {:type "button"
- :on-click close-fn}
- (t :cancel)]]]]))
- (defn ^:large-vars/cleanup-todo page-menu
- [page-name]
- (when-let [page-name (or
- page-name
- (state/get-current-page)
- (state/get-current-whiteboard))]
- (let [page-name (util/page-name-sanity-lc page-name)
- repo (state/sub :git/current-repo)
- page (db/entity repo [:block/name page-name])
- page-original-name (:block/original-name page)
- whiteboard? (= "whiteboard" (:block/type page))
- block? (and page (util/uuid-string? page-name) (not whiteboard?))
- contents? (= page-name "contents")
- properties (:block/properties page)
- public? (true? (:public properties))
- favorites (:favorites (state/sub-config))
- favorited? (contains? (set (map util/page-name-sanity-lc favorites))
- page-name)
- developer-mode? (state/sub [:ui/developer-mode?])
- file-path (when (util/electron?) (page-handler/get-page-file-path))
- _ (state/sub :auth/id-token)
- file-sync-graph-uuid (and (user-handler/logged-in?)
- (file-sync-handler/enable-sync?)
- (file-sync-handler/get-current-graph-uuid))]
- (when (and page (not block?))
- (->>
- [{:title (if favorited?
- (t :page/unfavorite)
- (t :page/add-to-favorites))
- :options {:on-click
- (fn []
- (if favorited?
- (page-handler/unfavorite-page! page-original-name)
- (page-handler/favorite-page! page-original-name)))}}
- (when (or (util/electron?) file-sync-graph-uuid)
- {:title (t :page/version-history)
- :options {:on-click
- (fn []
- (cond
- file-sync-graph-uuid
- (state/pub-event! [:graph/pick-page-histories file-sync-graph-uuid page-name])
- (util/electron?)
- (shell/get-file-latest-git-log page 100)
- :else
- nil))
- :class "cp__btn_history_version"}})
- (when (or (util/electron?)
- (mobile-util/native-platform?))
- {:title (t :page/copy-page-url)
- :options {:on-click #(util/copy-to-clipboard!
- (url-util/get-logseq-graph-page-url nil repo page-original-name))}})
- (when-not contents?
- {:title (t :page/delete)
- :options {:on-click #(state/set-modal! (delete-page-dialog page-name))}})
- (when-not (mobile-util/native-platform?)
- {:title (t :page/presentation-mode)
- :options {:on-click (fn []
- (state/sidebar-add-block!
- repo
- (:db/id page)
- :page-presentation))}})
- ;; TODO: In the future, we'd like to extract file-related actions
- ;; (such as open-in-finder & open-with-default-app) into a sub-menu of
- ;; this one. However this component doesn't yet exist. PRs are welcome!
- ;; Details: https://github.com/logseq/logseq/pull/3003#issuecomment-952820676
- (when file-path
- [{:title (t :page/open-in-finder)
- :options {:on-click #(js/window.apis.showItemInFolder file-path)}}
- {:title (t :page/open-with-default-app)
- :options {:on-click #(js/window.apis.openPath file-path)}}])
- (when (state/get-current-page)
- {:title (t :export-page)
- :options {:on-click #(state/set-modal!
- (fn []
- (export/export-blocks [(:block/uuid page)])))}})
- (when (util/electron?)
- {:title (t (if public? :page/make-private :page/make-public))
- :options {:on-click
- (fn []
- (page-handler/update-public-attribute!
- page-name
- (if public? false true))
- (state/close-modal!))}})
- (when (and (util/electron?) file-path
- (not (file-sync-handler/synced-file-graph? repo)))
- {:title (t :page/open-backup-directory)
- :options {:on-click
- (fn []
- (ipc/ipc "openFileBackupDir" (config/get-local-dir repo) file-path))}})
- (when config/lsp-enabled?
- (for [[_ {:keys [label] :as cmd} action pid] (state/get-plugins-commands-with-type :page-menu-item)]
- {:title label
- :options {:on-click #(commands/exec-plugin-simple-command!
- pid (assoc cmd :page page-name) action)}}))
- (when developer-mode?
- {:title "(Dev) Show page data"
- :options {:on-click (fn []
- (let [page-data (with-out-str (pprint/pprint (db/pull (:db/id page))))]
- (println page-data)
- (notification/show!
- [:div
- [:pre.code page-data]
- [:br]
- (ui/button
- "Copy to clipboard"
- :on-click #(.writeText js/navigator.clipboard page-data))]
- :success
- false)))}})]
- (flatten)
- (remove nil?))))))
|