mirror of
https://github.com/penpot/penpot.git
synced 2025-04-05 11:31:35 -05:00
Fix bugs in new storage impl.
This commit is contained in:
parent
3ab64e5a68
commit
8c996f3a57
2 changed files with 9 additions and 11 deletions
|
@ -18,7 +18,7 @@
|
|||
{:dashboard {:project-order :name
|
||||
:project-filter ""}
|
||||
:route nil
|
||||
:auth (:auth storage nil)
|
||||
:auth (:uxbox/auth storage nil)
|
||||
:clipboard #queue []
|
||||
:profile nil
|
||||
:workspace nil
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
(defn- persist
|
||||
[alias value]
|
||||
(let [key (name value)
|
||||
(let [key (name alias)
|
||||
value (t/encode value)]
|
||||
(.setItem js/localStorage key value)))
|
||||
|
||||
|
@ -19,12 +19,10 @@
|
|||
[alias]
|
||||
(if (= *target* "nodejs")
|
||||
{}
|
||||
(when-let [data (.getItem js/localStorage (name alias))]
|
||||
(try
|
||||
(let [data (.getItem js/localStorage (name alias))]
|
||||
(if data
|
||||
(t/decode data)
|
||||
(catch js/Error e
|
||||
(js/console.log (.-stack e))
|
||||
{})))))
|
||||
{}))))
|
||||
|
||||
(defn make-storage
|
||||
[alias]
|
||||
|
@ -46,13 +44,13 @@
|
|||
|
||||
ISwap
|
||||
(-swap! [self f]
|
||||
(-swap! data f))
|
||||
(swap! data f))
|
||||
(-swap! [self f x]
|
||||
(-swap! data f x))
|
||||
(swap! data f x))
|
||||
(-swap! [self f x y]
|
||||
(-swap! data f x y))
|
||||
(swap! data f x y))
|
||||
(-swap! [self f x y more]
|
||||
(-swap! data f x y more))
|
||||
(apply swap! data f x y more))
|
||||
|
||||
ILookup
|
||||
(-lookup [_ key]
|
||||
|
|
Loading…
Add table
Reference in a new issue