fix(plugin): exported api namespace

This commit is contained in:
charlie
2021-05-17 12:36:23 +08:00
parent a54dc6d732
commit 158c7645e3
4 changed files with 11 additions and 2 deletions

View File

@@ -16,6 +16,12 @@
(and (util/electron?)
(= (storage/get "developer-mode") "true")))
(defn invoke-exported-api
[type & args]
(try
(apply js-invoke js/logseq.api type args)
(catch js/Error e (js/console.error e))))
;; state handlers
(defn register-plugin
[pl]
@@ -61,7 +67,7 @@
(defn open-readme!
[url display]
(when url
(-> (p/let [content (js/api.load_plugin_readme url)]
(-> (p/let [content (invoke-exported-api "load_plugin_readme" url)]
(state/set-state! :plugin/active-readme content)
(state/set-modal! display))
(p/catch #(notifications/show! "No README file." :warn)))))