-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit e8db1f2
Showing
31 changed files
with
5,179 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: "typedoc" | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
|
||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
- run: npm ci | ||
- run: npm run build-docs | ||
- uses: actions/upload-pages-artifact@v2 | ||
with: | ||
path: ./docs | ||
deploy: | ||
runs-on: ubuntu-latest | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
needs: build | ||
steps: | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
docs/ | ||
dist/ | ||
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
v22.5.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2024 Cameron Steffen | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
# Compear <sup>🍐</sup>🤷<sup>🍐</sup> | ||
|
||
_Flexible utilities for comparing and sorting in JavaScript_ | ||
|
||
**[Documentation]** | ||
|
||
## Installation | ||
|
||
```shell | ||
npm install compear | ||
``` | ||
|
||
## What is this? | ||
|
||
Let's look at an example. | ||
Suppose you have a list of objects... | ||
|
||
```javascript | ||
const people = [ | ||
{ firstName: "Tina", lastName: "Ham" }, | ||
{ firstName: "Bob", lastName: "Builder" }, | ||
{ firstName: "Lewis", lastName: "Mayor" }, | ||
]; | ||
``` | ||
|
||
...and you want to sort the array alphabetically by the "lastName" property. | ||
|
||
Without Compear, you can write: | ||
|
||
```javascript | ||
const peopleSorted = people.toSorted((personA, personB) => { | ||
if (personA.lastName < personB.lastName) { | ||
return -1; | ||
} else if (personA.lastName > personB.lastName) { | ||
return 1; | ||
} else { | ||
return 0; | ||
} | ||
}); | ||
``` | ||
|
||
With Compear, you can write: | ||
```javascript | ||
const peopleSorted = people.toSorted(compareBy((person) => person.lastName)); | ||
``` | ||
|
||
Both examples use the `array.toSorted(..)` function that is built-in to JavaScript. | ||
The difference is in how you write the function that is passed as an argument to `array.toSorted(..)`. | ||
This kind of function is called a _comparator_. | ||
Creating and using comparators is what Compear is all about. | ||
|
||
Compear is written in TypeScript and provides strong type safety. | ||
|
||
## Notable features | ||
|
||
### `naturalOrder` | ||
|
||
`naturalOrder` is meant to be a sensible default comparator for many cases. | ||
It works well for comparing numbers, strings, or lists of these values. | ||
For other types of values, | ||
you will probably need to create a more specific comparator. | ||
|
||
In some of the provided functions (such as `compareBy`), | ||
Compear uses `naturalOrder` by default, | ||
but allows you to provide a different comparator if needed. | ||
|
||
### `compareBy` | ||
|
||
The `compareBy` function can create a comparator that selects a specific property to compare, | ||
or somehow derives another value to be compared. | ||
|
||
### `compareWith` | ||
|
||
`compareWith` chains together multiple comparators. | ||
This is useful when you want to: "sort by X, but if X is equal, then sort by Y, etc." | ||
|
||
### `minWith` / `maxWith` | ||
|
||
These functions find the smallest or largest value from a list of values using any given comparator. | ||
|
||
_See the [documentation] for more._ | ||
|
||
## Examples | ||
|
||
Here are some examples of what you can do with Compear: | ||
|
||
```javascript | ||
import { compareBy, compareByDesc, compareWith, minWith } from "compear"; | ||
|
||
const heros = [ | ||
{ | ||
name: "Frozone", | ||
age: 37, | ||
favoriteColor: "blue", | ||
}, | ||
{ | ||
name: "Stupendous Man", | ||
age: 9, | ||
favoriteColor: "red", | ||
}, | ||
{ | ||
name: "Iron Man", | ||
age: 44, | ||
favoriteColor: "gold", | ||
}, | ||
]; | ||
|
||
const youngestHero = minWith(heros, compareBy("age")) | ||
|
||
const sortedByName = heros.sort(compareBy("name")); | ||
|
||
const sortedByNameAndGoldFirst = heros.toSorted( | ||
compareWith( | ||
compareByDesc("favoriteColor", (color) => color === "gold"), | ||
compareBy("name"), | ||
) | ||
); | ||
``` | ||
|
||
## About | ||
|
||
Compear takes some inspiration from Kotlin's [kotlin.comparisons](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.comparisons/) package, but is designed for JavaScript. | ||
|
||
Compear embraces functional programming to a certain extent. | ||
It prioritizes the treatment of comparator functions as first-class citizens especially because they are highly composable and re-usable in practical applications. | ||
On the other hand, some functions have a chosen parameter order that prioritizes readability over the possibility of currying. | ||
|
||
[Documentation]: https://camsteffen.github.io/compear/index.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json", | ||
"organizeImports": { | ||
"enabled": true | ||
}, | ||
"linter": { | ||
"enabled": true, | ||
"rules": { | ||
"recommended": true, | ||
"suspicious": { | ||
"noExplicitAny": "off" | ||
} | ||
} | ||
}, | ||
"vcs": { | ||
"enabled": true, | ||
"clientKind": "git", | ||
"useIgnoreFile": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.tsd-page-title, .tsd-page-navigation, .tsd-filter-visibility { | ||
display: none; | ||
} |
Oops, something went wrong.