0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-04-05 03:21:26 -05:00

🔥 Remove unused code.

This commit is contained in:
Andrey Antukh 2020-03-18 11:33:48 +01:00
parent 8cb84d2911
commit 9e5b7459f0

View file

@ -41,26 +41,3 @@
(mf/use-effect {:deps true :fn #(after-render state)})
(for [item (:current @state)]
(children item)))))
(defn wrap-catch
([component error-component] (wrap-catch component error-component (constantly nil)))
([component error-component on-error]
(let [ctor (fn [props]
(this-as this
(unchecked-set this "state" #js {})
(.call js/React.Component this props)))
_ (goog/inherits ctor js/React.Component)
prot (unchecked-get ctor "prototype")]
(unchecked-set ctor "displayName" (str "Catch(" (unchecked-get component "displayName") ")"))
(unchecked-set ctor "getDerivedStateFromError" (fn [error] #js {:error error}))
(unchecked-set prot "componentDidCatch" (fn [e i] (on-error e i)))
(unchecked-set prot "render"
(fn []
(this-as this
(let [state (unchecked-get this "state")
error (unchecked-get state "error")]
(if error
(mf/element error-component #js {:error error})
(mf/element component #js {}))))))
ctor)))