File tree 1 file changed +13
-4
lines changed
material.angular.io/src/app/shared/theme-picker/theme-storage
1 file changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ export interface DocsSiteTheme {
6
6
primary : string ;
7
7
isDark ?: boolean ;
8
8
isDefault ?: boolean ;
9
- } ;
9
+ }
10
10
11
11
12
12
@Injectable ( )
@@ -16,15 +16,24 @@ export class ThemeStorage {
16
16
public onThemeUpdate : EventEmitter < DocsSiteTheme > = new EventEmitter < DocsSiteTheme > ( ) ;
17
17
18
18
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
+
20
23
this . onThemeUpdate . emit ( theme ) ;
21
24
}
22
25
23
26
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
+ }
25
32
}
26
33
27
34
public clearStorage ( ) {
28
- window . localStorage . removeItem ( ThemeStorage . storageKey ) ;
35
+ try {
36
+ window . localStorage . removeItem ( ThemeStorage . storageKey ) ;
37
+ } catch ( e ) { }
29
38
}
30
39
}
You can’t perform that action at this time.
0 commit comments