1.0.10 • Published 9 months ago

ts-array-sort v1.0.10

Weekly downloads
-
License
ISC
Repository
github
Last release
9 months ago

ts-array-sort

GitHub Workflow Status Coverage Status npm NPM License npm bundle size

ts-array-sort is a simple utility to assist in sorting arrays for Typescript/Javascript. It supports sorting of numbers, strings, and objects out of the box and is very flexible when it comes to sorting objects with multiple or nested properties.

  • number and string sorting made easy
  • nested object property sorting is supported.
  • multiple object property sorting in a single, readable statement.
  • No run-time dependencies
  • ~3kb in size

Usage


Install the package from npm

npm i ts-array-sort

Import the ArraySorter and SortOrder module members.

import { ArraySorter, SortOrder } from 'ts-array-sorter';

Build the sort function and pass it into Array.sort()

import { ArraySorter, SortOrder } from 'ts-array-sorter';
// ...

// Inline example using config object
console.log([3,5,7,1].sort(new ArraySorter({sortOrder: SortOrder.desc}).sort()))
// outputs [7,5,3,1]

API


constructor

const sorter = new ArraySorter();

or you can pass in an optional config object

const sorter = new ArraySorter({sortOrder: SortOrder.desc, properties: ['myProp1', 'myProp2']})

Methods


sortOrder

Method that changes the sort order used by the built sort function. the sort order defaults to ascending, meaning you should only ever have to use this function to change to descending or back from descending.

  • @param sortOrder: SortOrder
  • @returns ArraySorter (this)
new ArraySorter().sortOrder(SortOrder.desc);

sortBy

Method that adds a property to be sorted on. This function should only need to be called when sorting objects.
Note: Any calls to this function when sorting string or number arrays will be ignored.

  • @param property: PropertyKey
  • @returns ArraySorter (this)
// basic usage
new ArraySorter().sortBy('myProperty');

When sorting objects and no properties are provided or properties that do not exist on the objects are provided, an error will be thrown with a corresponding error message.

You can specify a n amount of properties as long as they exist on every object in the array. If you specify more then 1 property to sort on, the sort is applied in the order in which you add them.

Additionally, ts-array-sort supports sorting on properties that are contained within nested data structures. To do this, seperate the object properties with a . as you would normally do with dot notation in JS, just in string form.

// nested property example
new ArraySorter().sortBy('nestedProp.id');
// adds an entry to sort on that looks like {nestedProp: {id: 1}}

// double nested
new ArraySorter().sortBy('user.name.firstName');
// adds an entry to sort on that looks like
// {user: {name: {firstName: 'Chris'}}}

sort

Method which provides the sort function that takes into account all the previously selected config options (i.e. sort order, properties). Pass this function into the built in Array.propotype.sort() method and it will sort the array based on the previously entered configuration.

  • @returns (a: T, b: T) => number
// example usage
const sorter = new ArraySorter().sortOrder(SortOrder.desc).sort();
myArray.sort(sorter);
1.0.10

9 months ago

1.0.9

9 months ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago