npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

compare-object-field

v1.4.0

Published

Compare an object's field with a value, or filter arrays of objects by a filter object.

Downloads

18

Readme

Compare object field to value

Compare an object's field with a value, or filter arrays of objects by a filter object.

Installation

npm i compare-object-field

Examples

1. Generic form

(the most boring)

import compareFieldToValue, { equals } from "compare-object-field";

const person = { name: "John" };
compareFieldToValue(equals)("name")("John")(person); // true

2. Creating new functions

(go all in on functional programming)

// By taking advantage of the "currying" of compareFieldToValue,
// you can make your code more functional by creating new functions
// when you want to compare something.
import compareFieldToValue, { lessThan } from "compare-object-field";

const products = [
  {
    name: "Xiaomi Redmi Note 5",
    brand: "Xiaomi",
    cost: 180,
    year: 2018
  },
  {
    name: "Samsung Galaxy S8",
    brand: "Samsung",
    cost: 450,
    year: 2017
  },
  {
    name: "Apple iPhone 7",
    brand: "Apple",
    cost: 513,
    year: 2016
  }
];
const fieldLessThan = compareFieldToValue(lessThan);
// We can use the "fieldLessThan" function later on
// other objects or different fields.
const costLessThan200 = fieldLessThan("cost")(200);

const productsUnder200 = products.filter(costLessThan200);
// results to: [{name: 'Xiaomi Redmi Note 5', brand: 'Xiaomi', cost: 180}]

3. Filtering arrays of objects

(This and example 4 are the main reason for writing the library)

Problem: We end up with some filters and we want to apply them to the products from example 2 and get back only the products that satisfy those filters.

// The filters...
const currentFilters = [
  { field: "year", operation: "EQUALS", value: 2016 },
  { field: "cost", operation: "GREATER_THAN", value: 500 }
];

Solution: We initialize the operations (by using the implemented method). Then, each time we want the resulting products we apply the filters. Consider the following code, it's easier than it sounds:

import {
  greaterThan,
  equals,
  initializeOperations
} from "compare-object-field";

// a) We initialize and save for later.
// First, we map the operation names to the
// names of our filter objects:
const operations = {
  EQUALS: equals,
  GREATER_THAN: greaterThan
};
// Then we initialize the operations.
const addFilters = initializeOperations(operations);

// b) Finally, we call the following lines every time
// we want to search with different filters.
const allFiltersTrue = true; // = AND operator between filters...
const satisfiesFilters = addFilters(currentFilters, allFiltersTrue);
const badPurchase = products.filter(satisfiesFilters);

4. Filtering arrays of objects (another way)

In this example, we have a filter group which is an object that can have filters or other filter groups as children. The filter group also defines if all it's children must be true or just one (AND, OR). Consider the following "filter group":

// We want Xiaomi or Samsung phones that cost under 200.
// More specifically: (brand === "Xiaomi" OR brand === "Samsung") AND cost < 200.
const filterGroup = {
  type: "GROUP",
  operator: "AND",
  children: [
    {
      type: "FILTER",
      field: "cost",
      operation: "LESS_THAN",
      value: 200
    },
    {
      type: "GROUP",
      operator: "OR",
      children: [
        {
          type: "FILTER",
          field: "brand",
          operation: "EQUALS",
          value: "Samsung"
        },
        {
          type: "FILTER",
          field: "brand",
          operation: "EQUALS",
          value: "Xiaomi"
        }
      ]
    }
  ]
};

*the products array is from example 2.

import { equals, lessThan, initializeOperationsG } from "compare-object-field";

// Again, we save the operations and addFilterGroup for more
// filtering later in our application.
const operations = {
  EQUALS: equals,
  LESS_THAN: lessThan
};
const addFilterGroup = initializeOperationsG(operations);

// Then we "add" the current filter group.
const satisfiesFilterGroup = addFilterGroup(filterGroup);
// Finally, we get the products we want.
const xiaomiOrSamsungUnder200 = products.filter(satisfiesFilterGroup);
// results to: Xiaomi Redmi Note 5.

Looking at the source code

The actual function:

const compareFieldToValue = operation => field => value => object =>
  operation(object[field], value);

It compares an object's field to a value and returns true or false. It's a curried function that takes 4 arguments.

  • The operation which is a function that you can import (import { operationName } from "compare-object-field"), or create your own. It basically compares two things and returns true or false. The available operations are:
- equals = (a, b) => a === b;
- notEquals = (a, b) => a !== b;
- greaterThan = (a, b) => a > b;
- lessThan = (a, b) => a < b;
- includes = (a, b) => a.includes(b);
- notIncludes = (a, b) => !a.includes(b);
- isIncludedIn = (a, b) => b.includes(a);
- notIncludedIn = (a, b) => !b.includes(a);
- match = (a, b) => !!a.match(new RegExp(b, "gi"));
- notMatch = (a, b) => !a.match(new RegExp(b, "gi"));
- matchCaseSensitive = (a, b) => !!a.match(new RegExp(b, "g"));
- isEven = a => a % 2 === 0;
- isOdd = a => a % 2 !== 0;
- isNull = a => a === null;
- isNotNull = a => a !== null;
  • The object's field name which is a string. For example 'cost' for product.cost.
  • The value you want to compare to, which can be anything.
  • And the actual object.

A use case for the generic form

(This is basically the example 3 but with more details)

Say we have the previous array of products and we want to filter them based on some filters. Those filters can be as many as the different field values of the products. They could be stored in a database or be dynamically generated. So for example we may end up with the following filters:

const currentFilters = [
  { field: "year", operation: "EQUALS", value: 2016 },
  { field: "cost", operation: "GREATER_THAN", value: 500 }
];

In order to filter our products, we start by importing the required functions:

import compareFieldToValue, { greaterThan, equals } from "compare-object-field";

Then we "change" the names of the operations we imported, to the names of the operations from the data and store them as a global variable.

const operations = {
  EQUALS: equals,
  GREATER_THAN: greaterThan
};

Then we assume that all the filters must be true (AND logical operator). So we create a method that will compare a filter array against a product.

const satisfiesAllFilters = (product, filters) =>
  filters.reduce(
    (result, filter) =>
      result
        ? compareFieldToValue(operations[filter.operation])(filter.field)(
            filter.value
          )(product)
        : false,
    true
  );

And finally to get our result:

const badPurchase = products.filter(product =>
  satisfiesAllFilters(product, currentFilters)
);

or you can just use the implemented method, we saw in example 3:

import { initializeOperations } from "compare-object-field";

// we save this as a global variable along with the operations.
const addFilters = initializeOperations(operations);

// The following lines will be called every time we want to search with different filters.
const allFiltersTrue = true;
const satisfiesFilters = addFilters(currentFilters, allFiltersTrue);
const badPurchase = products.filter(satisfiesFilters);

which results to:

[
  {
    name: "Apple iPhone 7",
    brand: "Apple",
    cost: 513,
    year: 2016
  }
];

Benefits

  • Code reusability.
  • More expressive and easier to read code.
  • Easier to test.

Disclaimer: Probably all this is b******t and there's a library or a design pattern that does the same thing better, but I wanted to share.

Update: Algolia can provide the same and much more search related functionality. If you have another small library in mind that is used for filtering arrays of objects, please let me know by leaving me a message. Thanks!