Skip to content

Commit 7d949f2

Browse files
committed
fix state variable
1 parent b1da67a commit 7d949f2

File tree

2 files changed

+20
-12
lines changed

2 files changed

+20
-12
lines changed

dist/component/CharacterMap.js

+11-6
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,14 @@ var CharacterMap = function (_React$Component) {
4141
var _this = _possibleConstructorReturn(this, (CharacterMap.__proto__ || Object.getPrototypeOf(CharacterMap)).call(this, props));
4242

4343
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 : [];
4646
} catch (error) {
4747
_this.paletteCache = [];
4848
}
4949

50-
_this.secondaryPaletteCache = [];
50+
_this.secondaryPaletteCache = JSON.parse(sessionStorage.getItem('dayjoReactCharSecondaryPalette'));
51+
_this.secondaryPaletteCache = Array.isArray(_this.secondaryPaletteCache) ? _this.secondaryPaletteCache : [];
5152
_this.leastUsedCharFromPalette = false;
5253
_this.dirtyPalette = false;
5354
_this.state = {
@@ -190,10 +191,14 @@ var CharacterMap = function (_React$Component) {
190191
if (this.secondaryPaletteCache[0].count > this.paletteCache[paletteMaxSize - 1].count) {
191192
var maxCountCharInSecondaryPalette = this.secondaryPaletteCache.shift();
192193
this.paletteCache[paletteMaxSize - 1] = maxCountCharInSecondaryPalette;
194+
this.paletteCache.sort(function (a, b) {
195+
return b.count - a.count;
196+
});
193197
}
194198
}
195199

196-
localStorage.setItem('tenupISCcharPalette', JSON.stringify(this.paletteCache));
200+
localStorage.setItem('dayjoReactCharPalette', JSON.stringify(this.paletteCache));
201+
sessionStorage.setItem('dayjoReactCharSecondaryPalette', JSON.stringify(this.secondaryPaletteCache));
197202
this.setState({ 'charPalette': this.paletteCache });
198203
}
199204

@@ -423,7 +428,7 @@ var CharacterMap = function (_React$Component) {
423428
ref: this.bindInputRef
424429
})
425430
),
426-
this.props.mostUsedPalette && this.paletteCache.length && _react2.default.createElement(
431+
this.props.mostUsedPalette && this.paletteCache.length ? _react2.default.createElement(
427432
'div',
428433
{ className: 'charMap--last-used-palette-wrapper' },
429434
_react2.default.createElement(
@@ -436,7 +441,7 @@ var CharacterMap = function (_React$Component) {
436441
{ className: 'charMap--last-used-palette', 'aria-label': mostUsedPaletteText },
437442
charPalette
438443
)
439-
),
444+
) : '',
440445
'' === search && _react2.default.createElement(
441446
'ul',
442447
{ className: 'charMap--category-menu', 'aria-label': categoriesLabelText },

src/component/CharacterMap.js

+9-6
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,14 @@ class CharacterMap extends React.Component {
1313
super(props);
1414

1515
try {
16-
this.paletteCache = JSON.parse( localStorage.getItem('tenupISCcharPalette') );
17-
this.paletteCache = this.paletteCache.length ? this.paletteCache : [];
16+
this.paletteCache = JSON.parse( localStorage.getItem('dayjoReactCharPalette') );
17+
this.paletteCache = Array.isArray( this.paletteCache ) ? this.paletteCache : [];
1818
} catch(error) {
1919
this.paletteCache = [];
2020
}
2121

22-
this.secondaryPaletteCache = [];
22+
this.secondaryPaletteCache = JSON.parse( sessionStorage.getItem('dayjoReactCharSecondaryPalette') );
23+
this.secondaryPaletteCache = Array.isArray( this.secondaryPaletteCache ) ? this.secondaryPaletteCache : [];
2324
this.leastUsedCharFromPalette = false;
2425
this.dirtyPalette = false;
2526
this.state = {
@@ -131,10 +132,12 @@ class CharacterMap extends React.Component {
131132
if (this.secondaryPaletteCache[0].count > this.paletteCache[paletteMaxSize - 1].count) {
132133
const maxCountCharInSecondaryPalette = this.secondaryPaletteCache.shift();
133134
this.paletteCache[paletteMaxSize - 1] = maxCountCharInSecondaryPalette;
135+
this.paletteCache.sort( ( a, b ) => b.count - a.count );
134136
}
135137
}
136138

137-
localStorage.setItem('tenupISCcharPalette', JSON.stringify(this.paletteCache));
139+
localStorage.setItem('dayjoReactCharPalette', JSON.stringify(this.paletteCache));
140+
sessionStorage.setItem('dayjoReactCharSecondaryPalette', JSON.stringify(this.secondaryPaletteCache));
138141
this.setState( { 'charPalette': this.paletteCache } );
139142
}
140143

@@ -318,14 +321,14 @@ class CharacterMap extends React.Component {
318321
ref={this.bindInputRef}
319322
/>
320323
</ul>
321-
{ this.props.mostUsedPalette && this.paletteCache.length && (
324+
{ ( this.props.mostUsedPalette && this.paletteCache.length ) ? (
322325
<div className="charMap--last-used-palette-wrapper">
323326
<label>{`${mostUsedPaletteText}: `}</label>
324327
<ul className="charMap--last-used-palette" aria-label={mostUsedPaletteText}>
325328
{ charPalette }
326329
</ul>
327330
</div>
328-
) }
331+
) : '' }
329332
{ '' === search &&
330333
<ul className="charMap--category-menu" aria-label={categoriesLabelText}>
331334
{ categoryList}

0 commit comments

Comments
 (0)