-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
476 lines (429 loc) · 11.9 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
/** ****************************************************************************************************
* File: index.js
* Project: lightmap
* @author Nick Soggin <[email protected]> on 11-Jun-2018
*******************************************************************************************************/
'use strict';
const { version } = require( './package.json' );
/**
* LightMap
* @augments Map
*/
class LightMap extends Map
{
/**
* constructor
* @param {array[]} [n] - constructed map
* @param {object} [opts] - construction options
* @param {boolean} [opts.deepTransformToMap=true] - deep transform map-looking arrays to a LightMap
*/
constructor( n = [], opts = { deepTransformToMap: true } )
{
super( n );
if ( opts.deepTransformToMap ) {
this.deepTransformToMap();
}
}
/**
* @typedef {function(value, key, ref)} FilterCallback
* @callback FilterCallback
* @param {*} value - map value
* @param {string | *} key - map key
* @param {LightMap} refMap - original LightMap
* @returns {boolean} - a comparison or boolean value to
*/
/**
* filter
* @description
* Filter LightMap based on keys and values based in.
* Comparisons can be made on the key and/or value.
* @param {FilterCallback} fn - comparison method
* @return {LightMap} - returns new LightMap with filtered results
* @example
* const _ = new LightMap();
* _.set( 'key', 'value' );
* _.set( 'key1', 'value1' );
*
* const result = _.filter(
* ( v, k ) => k === 'key'
* );
*
* // -> LightMap { 'key' => 'value' }
*/
filter( fn )
{
const arr = new LightMap();
for ( const [ key, value ] of this ) {
if ( fn( value, key, this ) ) {
arr.set( key, value );
}
}
return arr;
}
/**
* @typedef {function(value, key, ref)} MapCallback
* @callback MapCallback
* @param {*} value - map value
* @param {string | *} key - map key
* @param {LightMap} refMap - original LightMap
* @returns {Array<string|*,*>} - the new key-value pair to be remapped
*/
/**
* map
* @description
* Map LightMap with new key and/or value.
* Return the new item in a "tuple" form matching the Map paradigm (`[ x, y ]`).
* @param {MapCallback} fn - map method
* @return {LightMap} - returns new LightMap with mapped results
* @example
* const _ = new LightMap();
* _.set( 'key', 'value' );
*
* const result = _.map(
* ( v, k ) => [ k + 1, v + 1 ]
* );
*
* // -> LightMap { 'key1' => 'value1' }
*/
map( fn )
{
const arr = new LightMap();
for ( const [ key, value ] of this ) {
const entry = fn( value, key, this ) || [ undefined, undefined ];
arr.set( entry[ 0 ] || key, entry[ 1 ] );
}
return arr;
}
/**
* @typedef {function(r, value, key, ref)} ReduceCallback
* @callback ReduceCallback
* @param {*} value - carriage value
* @param {Array<string|*,*>} mapKeyPair - map key-value pair
* @param {string | *} key - map key
* @param {LightMap} refMap - original LightMap
* @returns {*} - the carriage value
*/
/**
* reduce
* @description
* Reduce LightMap with new value.
* Must return the carriage value just like Array.reduce.
* @param {ReduceCallback} fn - reducing method
* @param {*} r - carriage value
* @return {*} - returns reduced result
* @example
* const _ = new LightMap();
* _.set( 'key', 'value' );
*
* const result = _.reduce(
* ( r, [ k, v ] ) => {
* r += `Key: ${ k }\n`;
* r += `Value: ${ v }\n`;
* return r;
* }, ''
* );
*
* // -> 'Key: key\nValue: value\n'
*/
reduce( fn, r )
{
for ( const [ key, value ] of this ) {
r = fn( r, [ key, value ], key, this );
}
return r;
}
/**
* @typedef {function(value, key, ref)} FindCallback
* @callback FindCallback
* @param {*} value - map value
* @param {string | *} key - map key
* @param {LightMap} refMap - original LightMap
* @returns {Array<string|*,*>} - the found value
*/
/**
* find
* @description
* The `find()` method returns the tuple pair of the first element in the LightMap that satisfies the provided
* testing function.
* @param {FindCallback} fn - find method
* @return {Array<*|*>|undefined} - returns tuple result or undefined if no matches are found
* @example
* const _ = new LightMap();
* _.set( 'key', 'value' );
* _.set( 'key1', 'value1' );
*
* const result = _.find(
* ( v, k, arr ) => {
* return v === 'value';
* }
* );
*
* // -> [ 'key', 'value' ]
*/
find( fn )
{
for ( const [ key, value ] of this ) {
if ( fn( value, key, this ) ) {
return [ key, value ];
}
}
return undefined;
}
/**
* findAll
* @description
* Alias for `filter`
* @param {FilterCallback} fn - same as filter method
* @return {LightMap} - returns new LightMap with matching results
* @example
* const _ = new LightMap();
* _.set( 'key', 'value' );
* _.set( 'key1', 'value' );
* _.set( 'key2', 'value2' );
*
* const result = _.findAll(
* ( v, k, arr ) => {
* return v === 'value';
* }
* );
*
* // -> LightMap { 'key' => 'value', 'key1' => 'value' }
*/
findAll( fn )
{
return this.filter( fn );
}
/**
* sortKeys
* @description
* Map LightMap with sorted key-value pairs.
* @param {Function} [fn] - sorting method
* @return {LightMap} - returns new LightMap with sorted results
* @example
* const _ = new LightMap();
* _.set( 'key2', 'value2' );
* _.set( 'key1', 'value1' );
* _.set( 'key', 'value' );
*
* const result = _.sortKeys();
*
* // -> LightMap { 'key' => 'value', 'key1' => 'value1', 'key2' => 'value2' }
*/
sortKeys( fn = ( a, b ) => String( a ).localeCompare( String( b ) ) )
{
const keys = [ ...this.keys() ].sort( fn );
let i = 0;
return this.map(
( v, k, iterator ) => {
const key = keys[ i++ ];
return [ key, iterator.get( key ) ];
}
);
}
/**
* sortValues
* @description
* Map LightMap with sorted key-value pairs sorted by value.
* @param {Function?} fn - sorting method
* @return {LightMap} - returns new LightMap with sorted results
* @example
* const _ = new LightMap();
* _.set( 'key', 'value2' );
* _.set( 'key1', 'value1' );
* _.set( 'key2', 'value' );
*
* const result = _.sortValues();
*
* // -> LightMap { 'key2' => 'value', 'key1' => 'value1', 'key' => 'value2' }
*/
sortValues( fn = ( a, b ) => String( a ).localeCompare( String( b ) ) )
{
const entries = [ ...this.entries() ].sort( ( a, b ) => fn( a[ 1 ], b[ 1 ] ) );
let i = 0;
return this.map(
() => {
const [ key, value ] = entries[ i++ ];
return [ key, value ];
}
);
}
// TODO: improve this later, not sufficient yet
equals( n )
{
if ( n instanceof LightMap ) {
return this.size === n.size;
}
return false;
}
/**
* version
* @description
* return LightMap module version
* @return {string} - returns LightMap module version
* @example
* this.version();
*
* // -> v0.0.0
*/
version()
{
return LightMap.version();
}
/**
* version
* @description
* return LightMap module version
* @return {string} - returns LightMap module version
* @example
* LightMap.version();
*
* // -> v0.0.0
*/
static version()
{
return `v${ version }`;
}
/**
* mapToArray
* @description
* maps a LightMap object to an array of arrays in the Map Pattern (re-constructable pattern)
* @return {Array} - returns array of tuple key-value pairs
* @example
*
* const _ = new LightMap();
* _.set( 'key', new LightMap( [ [ 'key1', 'value1' ] ] ) );
*
* const result = _.mapToArray();
*
* // -> [ [ 'key', [ [ 'key1', 'value1' ] ] ] ]
*/
mapToArray()
{
return this.reduce(
( r, [ k, v ] ) => {
if ( v instanceof LightMap ) {
v = v.toJSON();
}
r.push( [ k, v ] );
return r;
}, []
);
}
/**
* toObject
* @description
* maps a LightMap object's keys and values to an object
* @return {Object} - returns Object of key-value pairs
* @example
*
* const _ = new LightMap();
* _.set( 'key', new LightMap( [ [ 'key1', 'value1' ] ] ) );
*
* const result = _.toObject();
*
* // -> { key: { key1: 'value1' } }
*/
// TODO: check for circular references
toObject()
{
const
obj = Object.fromEntries( this ),
keys = Object.keys( obj );
for ( let i = 0; i < keys.length; i++ ) {
const key = keys[ i ];
if ( obj[ key ] instanceof Map ) {
obj[ key ] = obj[ key ].toObject();
}
}
return obj;
}
toJSON()
{
return this.mapToArray();
}
toString()
{
return JSON.stringify( this.mapToArray() );
}
/**
* indexOf
* @description
* returns the first index at which a given element can be found in the array, or -1 if it is not present
* @param {string} n - key name to search for
* @return {number} - index of the element
*/
indexOf( n )
{
let i = -1;
return this.reduce(
( r, [ k ] ) => {
if ( r === -1 ) {
i++;
if ( k === n ) {
r = i;
}
}
return r;
}, -1
);
}
deepTransformToMap()
{
this.forEach(
( v, k ) => this.set( k, this[ Symbol.constructMapByPattern ]( v ) )
);
}
[ Symbol.constructMapByPattern ]( n )
{
return Array.isArray( n ) && n.every( v => Array.isArray( v ) && v.length === 2 ) ? new LightMap( n ) : n;
}
[ Symbol.search ]( n )
{
return this.indexOf( n );
}
/**
* [ Symbol.replace ]
* @description
* symbol specifies the method that replaces matched substrings of a string
* @param {LightMap} n - replacement mapping for string
* @return {string} - string replaced with mapped values
*/
[ Symbol.replace ]( n )
{
this.forEach(
( v, k ) => n = n.replace( k, v )
);
return n;
}
/**
* [ Symbol.toPrimitive ]
* @description
* symbol that specifies a function valued property that is called to convert an object to a primitive value
* @param {*} n - hint
* @return {*} - hint handler
*/
[ Symbol.toPrimitive ]( n )
{
if ( n === 'number' ) {
return +this.size;
}
else {
return this.toString();
}
}
get [ Symbol.toStringTag ]()
{
return this.constructor.name;
}
static get [ Symbol.species ]()
{
return Map;
}
static [ Symbol.hasInstance ]( instance )
{
return !!instance &&
instance.constructor &&
instance.constructor.name === 'LightMap';
}
}
module.exports = LightMap;