@@ -40,12 +40,24 @@ var CharacterMap = function (_React$Component) {
40
40
41
41
var _this = _possibleConstructorReturn ( this , ( CharacterMap . __proto__ || Object . getPrototypeOf ( CharacterMap ) ) . call ( this , props ) ) ;
42
42
43
+ try {
44
+ _this . paletteCache = JSON . parse ( localStorage . getItem ( 'dayjoReactCharPalette' ) ) ;
45
+ _this . paletteCache = Array . isArray ( _this . paletteCache ) ? _this . paletteCache : [ ] ;
46
+ } catch ( error ) {
47
+ _this . paletteCache = [ ] ;
48
+ }
49
+
50
+ _this . secondaryPaletteCache = JSON . parse ( sessionStorage . getItem ( 'dayjoReactCharSecondaryPalette' ) ) ;
51
+ _this . secondaryPaletteCache = Array . isArray ( _this . secondaryPaletteCache ) ? _this . secondaryPaletteCache : [ ] ;
52
+ _this . leastUsedCharFromPalette = false ;
53
+ _this . dirtyPalette = false ;
43
54
_this . state = {
44
55
active : 0 ,
45
56
search : '' ,
46
57
categoryList : '' ,
47
58
charList : '' ,
48
- fullCharList : ''
59
+ fullCharList : '' ,
60
+ charPalette : _this . paletteCache
49
61
} ;
50
62
_this . resultsCache = [ ] ;
51
63
_this . handleSearchChange = _this . handleSearchChange . bind ( _this ) ;
@@ -125,9 +137,101 @@ var CharacterMap = function (_React$Component) {
125
137
key : 'charClickHandler' ,
126
138
value : function charClickHandler ( e , char ) {
127
139
e . preventDefault ( ) ;
140
+ this . setPalette ( char ) ;
128
141
return this . props . onSelect ( char , e . target ) ;
129
142
}
130
143
144
+ /**
145
+ * Sets the charPalette state.
146
+ *
147
+ * @param {object } char The character object
148
+ */
149
+
150
+ } , {
151
+ key : 'setPalette' ,
152
+ value : function setPalette ( char ) {
153
+ var paletteMaxSize = 5 ;
154
+ var charAtIndex = this . paletteCache . findIndex ( function ( p ) {
155
+ return p . hex === char . hex ;
156
+ } ) ;
157
+
158
+ /* If the primary palette cache is not fully filled OR if the character is already
159
+ * present in primary, then add the character to it.
160
+ */
161
+ if ( this . paletteCache . length < paletteMaxSize || - 1 !== charAtIndex ) {
162
+ this . paletteCache = this . addToPalette ( char , this . paletteCache ) ;
163
+ /* Else add it to the secondary cache. */
164
+ } else if ( - 1 === charAtIndex ) {
165
+ this . secondaryPaletteCache = this . addToPalette ( char , this . secondaryPaletteCache ) ;
166
+ }
167
+
168
+ /* If the primary cache is fully filled, then save the least used
169
+ * character from the cache for future reference.
170
+ */
171
+ if ( this . paletteCache . length === paletteMaxSize ) {
172
+ this . leastUsedCharFromPalette = this . paletteCache [ paletteMaxSize - 1 ] ;
173
+ }
174
+
175
+ /*
176
+ * Sort the palettes in descending order of the count.
177
+ */
178
+ this . paletteCache . sort ( function ( a , b ) {
179
+ return b . count - a . count ;
180
+ } ) ;
181
+ this . secondaryPaletteCache . sort ( function ( a , b ) {
182
+ return b . count - a . count ;
183
+ } ) ;
184
+
185
+ if ( this . secondaryPaletteCache . length > 0 ) {
186
+ /* If the count of the max used character in secondary is more than
187
+ * the count of the least used character in the primary, then remove
188
+ * that character from secondary and replace the least used character
189
+ * from primary with it.
190
+ */
191
+ if ( this . secondaryPaletteCache [ 0 ] . count > this . paletteCache [ paletteMaxSize - 1 ] . count ) {
192
+ var maxCountCharInSecondaryPalette = this . secondaryPaletteCache . shift ( ) ;
193
+ this . paletteCache [ paletteMaxSize - 1 ] = maxCountCharInSecondaryPalette ;
194
+ this . paletteCache . sort ( function ( a , b ) {
195
+ return b . count - a . count ;
196
+ } ) ;
197
+ }
198
+ }
199
+
200
+ localStorage . setItem ( 'dayjoReactCharPalette' , JSON . stringify ( this . paletteCache ) ) ;
201
+ sessionStorage . setItem ( 'dayjoReactCharSecondaryPalette' , JSON . stringify ( this . secondaryPaletteCache ) ) ;
202
+ this . setState ( { 'charPalette' : this . paletteCache } ) ;
203
+ }
204
+
205
+ /**
206
+ * Adds a character to the character palette.
207
+ *
208
+ * @param {object } char The character object.
209
+ * @param {array } palette The char palette array.
210
+ * @returns {array }
211
+ */
212
+
213
+ } , {
214
+ key : 'addToPalette' ,
215
+ value : function addToPalette ( char , palette ) {
216
+ var charAtIndex = palette . findIndex ( function ( p ) {
217
+ return p . hex === char . hex ;
218
+ } ) ;
219
+
220
+ if ( charAtIndex !== - 1 ) {
221
+ ++ palette [ charAtIndex ] . count ;
222
+ } else {
223
+ palette . push ( {
224
+ 'char' : char . char ,
225
+ 'entity' : char . entity ,
226
+ 'hex' : char . hex ,
227
+ 'name' : char . name ,
228
+ 'count' : 1
229
+ } ) ;
230
+ }
231
+
232
+ return palette ;
233
+ }
234
+
131
235
/**
132
236
* Perform the character search.
133
237
*
@@ -298,6 +402,10 @@ var CharacterMap = function (_React$Component) {
298
402
var filterLabelText = this . props . filterLabelText || 'Filter' ;
299
403
var categoriesLabelText = this . props . categoriesLabelText || 'Categories' ;
300
404
var characterListLabelText = this . props . characterListLabelText || 'Character List' ;
405
+ var mostUsedPaletteText = this . props . mostUsedPaletteText || 'Most used' ;
406
+
407
+ var _charListFromCharacte3 = this . charListFromCharacters ( { 'Palette' : this . paletteCache } , 0 ) ,
408
+ charPalette = _charListFromCharacte3 . charList ;
301
409
302
410
return _react2 . default . createElement (
303
411
'div' ,
@@ -320,6 +428,20 @@ var CharacterMap = function (_React$Component) {
320
428
ref : this . bindInputRef
321
429
} )
322
430
) ,
431
+ this . props . mostUsedPalette && this . paletteCache . length ? _react2 . default . createElement (
432
+ 'div' ,
433
+ { className : 'charMap--last-used-palette-wrapper' } ,
434
+ _react2 . default . createElement (
435
+ 'label' ,
436
+ null ,
437
+ mostUsedPaletteText + ': '
438
+ ) ,
439
+ _react2 . default . createElement (
440
+ 'ul' ,
441
+ { className : 'charMap--last-used-palette' , 'aria-label' : mostUsedPaletteText } ,
442
+ charPalette
443
+ )
444
+ ) : '' ,
323
445
'' === search && _react2 . default . createElement (
324
446
'ul' ,
325
447
{ className : 'charMap--category-menu' , 'aria-label' : categoriesLabelText } ,
0 commit comments