Coder Social home page Coder Social logo

nisgrak / group-items Goto Github PK

View Code? Open in Web Editor NEW

This project forked from meyfa/group-items

0.0 0.0 0.0 422 KB

JavaScript module for grouping arrays by complex keys (written in TypeScript)

Home Page: https://www.npmjs.com/package/group-items

License: MIT License

TypeScript 100.00%

group-items's Introduction

group-items

CI Test Coverage Maintainability

group-items is a TypeScript/JavaScript module for grouping arrays by some key, primitive or complex, and into whatever structure you desire.

Example:

import { group } from 'group-items'

// group names by length
const items = ['James', 'John', 'Robert', 'Michael', 'William', 'David']
const byLength = group(items).by('length').asObject()

console.log(byLength)
{
  4: ['John'],
  5: ['James', 'David'],
  6: ['Robert'],
  7: ['Michael', 'William']
}

This module can do a lot more though, as the keying can also be dynamically generated and there are other collectors in addition to .asObject().

Usage

// ESM / TypeScript:
import { group } from 'group-items'

// CommonJS:
const { group } = require('group-items')

The basic workflow is as follows:

  1. Start a grouping: group(Iterable)
  2. Provide a keying: .by('property') or .by((item, index) => fn(item, index))
  3. Collect the results: .asObject(), .asTuples(), .keys(), etc.

1. Group creation

Syntax: group(Iterable), where group is the main export of this module. Because this method takes an Iterable, you can give it arrays, sets, strings, ... and it will just work.

2. Keying

There are two ways of providing a keying:

  • (A) by property name, or
  • (B) by function.

You've seen an example for (A) in the code snippet above, where the length property was used to group strings. Examples for (B) can be found at the end of this document (in the Examples section). Put simply, you would provide a function that -- when given an element of the input Iterable -- computes some value that can be used as the key for that element. Later I will demonstrate the power of this concept.

Note that almost anything can be used as key. Key equality (and thereby grouping) is determined as per the deep-eql module.

3. Collection

After a grouping has been initialized and keyed, it can be collected in one of many ways:

.asArrays()

collects into an array of arrays (each child array is a group). E.g. if grouping integers by whether they are even or odd, the output might be: [[0, 2, 4, 6, 8], [1, 3, 5, 7, 9]].

.asEntries(options)

collects into an array of { key: <key>, items: [...] } objects. This is one of the more verbose collectors, but sometimes useful. The property names can be customized.

Options:

  • keyName: name of the key property (default: 'key')
  • itemsName: name of the items property (default: 'items')

Note that due to limitations of the TypeScript language, the return type of this method cannot be inferred correctly when customizing property names. In those cases, an array of Record will be returned which you have to cast yourself.

.asMap()

collects into a JavaScript Map, as you would expect. Maps have the advantage of supporting non-primitive keys.

.asObject()

collects into a JavaScript Object. You can find an example for this above. Note that due to the nature of JavaScript objects, only values of type string, number or symbol will be included in the result.

.asTuples()

collects into an array of 2-tuples, i.e., an array of the following form:

[
  [keyA, [itemA_0, itemA_1, itemA_2, /* etc ... */]],
  [keyB, [itemB_0, itemB_1, itemB_2, /* etc ... */]],
  // etc ...
]

.keys()

collects just the group keys into an array.

Examples

You've seen one example already. Here are a few more, demonstrating the capabilities.

Grouping numbers by remainder

group([0, 1, 2, 3, 4, 5])
  .by(i => i % 3)
  .asObject()
{
  0: [0, 3],
  1: [1, 4],
  2: [2, 5]
}

Grouping events by date

const events = [
  { date: [2020, 3,  1], title: 'EDC Mexico' },
  { date: [2020, 3, 21], title: 'Ultra Music Festival (ASOT)' },
  { date: [2020, 3, 21], title: 'This Is Me' },
  { date: [2020, 3, 29], title: 'Creamfields' },
  //...
]

group(events).by('date').asMap()
Map {
  [2020, 3, 1] => [ { date: [2020, 3, 1], title: 'EDC Mexico' } ],
  [2020, 3, 21] => [
    { date: [2020, 3, 21], title: 'Ultra Music Festival (ASOT)' },
    { date: [2020, 3, 21], title: 'This Is Me' }
  ],
  [2020, 3, 29] => [ { date: [2020, 3, 29], title: 'Creamfields' } ]
}

Or alternatively:

group(events).by('date').asEntries({ keyName: 'date', itemsName: 'events' })
[
  { date: [2020, 3, 1], events: [ /* ... */ ] },
  { date: [2020, 3, 21], events: [ /* ... */ ] },
  { date: [2020, 3, 29], events: [ /* ... */ ] }
]

Obtaining all unique Map values

This is certainly not the most efficient (or readable) way to do it, but you get the idea.

// initialize some mappings
const map = new Map([
  [0, 'foo'], [2, 'foo'], [3, 'bar'], [8, 'foo'], [9, 'qux'], [11, 'bar']
])

// create a reverse map (map each value to its respective keys)
group(map).by(entry => entry[1]).keys()
['foo', 'bar', 'qux']

Alternated string chunking

The following example makes use of the element index for grouping.

group('ax1by2cz3')
  // create chunks by alternating every 3rd character
  .by((char, index) => index % 3)
  .asArrays()
  // now join the inner arrays
  .map((arr) => arr.join(''))
['abc', 'xyz', '123']

group-items's People

Contributors

dependabot[bot] avatar github-actions[bot] avatar himself65 avatar meyfa avatar renovate[bot] avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.