0
Fork 0
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:
Andrey Antukh 2016-04-15 23:39:04 +03:00
parent 3ab64e5a68
commit 8c996f3a57
No known key found for this signature in database
GPG key ID: 4DFEBCB8316A8B95
2 changed files with 9 additions and 11 deletions

View file

@ -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

View file

@ -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]