Browse Source

fix: remove JSON.stringify when calculating storage as its not needed (#3373)

Aakansha Doshi 4 years ago
parent
commit
1310256dcc
1 changed files with 4 additions and 4 deletions
  1. 4 4
      src/excalidraw-app/data/localStorage.ts

+ 4 - 4
src/excalidraw-app/data/localStorage.ts

@@ -101,7 +101,7 @@ export const importFromLocalStorage = () => {
 export const getElementsStorageSize = () => {
   try {
     const elements = localStorage.getItem(STORAGE_KEYS.LOCAL_STORAGE_ELEMENTS);
-    const elementsSize = elements ? JSON.stringify(elements).length : 0;
+    const elementsSize = elements?.length || 0;
     return elementsSize;
   } catch (error) {
     console.error(error);
@@ -117,9 +117,9 @@ export const getTotalStorageSize = () => {
       APP_STORAGE_KEYS.LOCAL_STORAGE_LIBRARY,
     );
 
-    const appStateSize = appState ? JSON.stringify(appState).length : 0;
-    const collabSize = collab ? JSON.stringify(collab).length : 0;
-    const librarySize = library ? JSON.stringify(library).length : 0;
+    const appStateSize = appState?.length || 0;
+    const collabSize = collab?.length || 0;
+    const librarySize = library?.length || 0;
 
     return appStateSize + collabSize + librarySize + getElementsStorageSize();
   } catch (error) {