Skip to content

Commit 08782a1

Browse files
crisbetojelbourn
authored andcommittedJun 30, 2017
fix: site crashing on browsers with limited localStorage access (#203)
Prevents the site from crashing on browsers that don't allow access to localStorage (e.g. IE11 or iOS Safari in private mode).
1 parent 787978f commit 08782a1

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed
 

‎material.angular.io/src/app/shared/theme-picker/theme-storage/theme-storage.ts

+13-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export interface DocsSiteTheme {
66
primary: string;
77
isDark?: boolean;
88
isDefault?: boolean;
9-
};
9+
}
1010

1111

1212
@Injectable()
@@ -16,15 +16,24 @@ export class ThemeStorage {
1616
public onThemeUpdate: EventEmitter<DocsSiteTheme> = new EventEmitter<DocsSiteTheme>();
1717

1818
public storeTheme(theme: DocsSiteTheme) {
19-
window.localStorage[ThemeStorage.storageKey] = JSON.stringify(theme);
19+
try {
20+
window.localStorage[ThemeStorage.storageKey] = JSON.stringify(theme);
21+
} catch (e) { }
22+
2023
this.onThemeUpdate.emit(theme);
2124
}
2225

2326
public getStoredTheme(): DocsSiteTheme {
24-
return JSON.parse(window.localStorage[ThemeStorage.storageKey] || null);
27+
try {
28+
return JSON.parse(window.localStorage[ThemeStorage.storageKey] || null);
29+
} catch (e) {
30+
return null;
31+
}
2532
}
2633

2734
public clearStorage() {
28-
window.localStorage.removeItem(ThemeStorage.storageKey);
35+
try {
36+
window.localStorage.removeItem(ThemeStorage.storageKey);
37+
} catch (e) { }
2938
}
3039
}

0 commit comments

Comments
 (0)
Please sign in to comment.