@@ -41,13 +41,14 @@ var CharacterMap = function (_React$Component) {
41
41
var _this = _possibleConstructorReturn ( this , ( CharacterMap . __proto__ || Object . getPrototypeOf ( CharacterMap ) ) . call ( this , props ) ) ;
42
42
43
43
try {
44
- _this . paletteCache = JSON . parse ( localStorage . getItem ( 'tenupISCcharPalette ' ) ) ;
45
- _this . paletteCache = _this . paletteCache . length ? _this . paletteCache : [ ] ;
44
+ _this . paletteCache = JSON . parse ( localStorage . getItem ( 'dayjoReactCharPalette ' ) ) ;
45
+ _this . paletteCache = Array . isArray ( _this . paletteCache ) ? _this . paletteCache : [ ] ;
46
46
} catch ( error ) {
47
47
_this . paletteCache = [ ] ;
48
48
}
49
49
50
- _this . secondaryPaletteCache = [ ] ;
50
+ _this . secondaryPaletteCache = JSON . parse ( sessionStorage . getItem ( 'dayjoReactCharSecondaryPalette' ) ) ;
51
+ _this . secondaryPaletteCache = Array . isArray ( _this . secondaryPaletteCache ) ? _this . secondaryPaletteCache : [ ] ;
51
52
_this . leastUsedCharFromPalette = false ;
52
53
_this . dirtyPalette = false ;
53
54
_this . state = {
@@ -190,10 +191,14 @@ var CharacterMap = function (_React$Component) {
190
191
if ( this . secondaryPaletteCache [ 0 ] . count > this . paletteCache [ paletteMaxSize - 1 ] . count ) {
191
192
var maxCountCharInSecondaryPalette = this . secondaryPaletteCache . shift ( ) ;
192
193
this . paletteCache [ paletteMaxSize - 1 ] = maxCountCharInSecondaryPalette ;
194
+ this . paletteCache . sort ( function ( a , b ) {
195
+ return b . count - a . count ;
196
+ } ) ;
193
197
}
194
198
}
195
199
196
- localStorage . setItem ( 'tenupISCcharPalette' , JSON . stringify ( this . paletteCache ) ) ;
200
+ localStorage . setItem ( 'dayjoReactCharPalette' , JSON . stringify ( this . paletteCache ) ) ;
201
+ sessionStorage . setItem ( 'dayjoReactCharSecondaryPalette' , JSON . stringify ( this . secondaryPaletteCache ) ) ;
197
202
this . setState ( { 'charPalette' : this . paletteCache } ) ;
198
203
}
199
204
@@ -423,7 +428,7 @@ var CharacterMap = function (_React$Component) {
423
428
ref : this . bindInputRef
424
429
} )
425
430
) ,
426
- this . props . mostUsedPalette && this . paletteCache . length && _react2 . default . createElement (
431
+ this . props . mostUsedPalette && this . paletteCache . length ? _react2 . default . createElement (
427
432
'div' ,
428
433
{ className : 'charMap--last-used-palette-wrapper' } ,
429
434
_react2 . default . createElement (
@@ -436,7 +441,7 @@ var CharacterMap = function (_React$Component) {
436
441
{ className : 'charMap--last-used-palette' , 'aria-label' : mostUsedPaletteText } ,
437
442
charPalette
438
443
)
439
- ) ,
444
+ ) : '' ,
440
445
'' === search && _react2 . default . createElement (
441
446
'ul' ,
442
447
{ className : 'charMap--category-menu' , 'aria-label' : categoriesLabelText } ,
0 commit comments