Skip to content

Commit c7b49f3

Browse files
authored
Merge pull request #1 from jakeboone02/bunify
Modernize
2 parents 9c805e9 + 98348f0 commit c7b49f3

24 files changed

+2024
-1035
lines changed

.attw.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"ignoreRules": ["false-export-default"]
3+
}

.editorconfig

-21
This file was deleted.

.eslintrc.json

-33
This file was deleted.

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
bun.lockb binary diff=lockb

.github/workflows/main.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Continuous Integration
2+
on: [push]
3+
4+
jobs:
5+
build:
6+
name: Build and test
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v3
10+
- uses: oven-sh/setup-bun@v1
11+
- run: bun install --frozen-lockfile
12+
- run: bun run build
13+
- run: bun run test

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ yarn.lock
66
# editor and IDE remnants
77
*~
88
.idea/
9+
dist

.prettierrc

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
printWidth: 80
2+
semi: true
3+
singleQuote: false
4+
trailingComma: es5
5+
arrowParens: always
6+
tabWidth: 2

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"editor.formatOnSave": true
3+
}

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015 Jeremy Wadhams
3+
Copyright (c) 2024 Jeremy Wadhams and Jake Boone
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+42-52
Original file line numberDiff line numberDiff line change
@@ -1,114 +1,110 @@
1-
# json-logic-js
1+
# @react-querybuilder/json-logic-js
2+
3+
> _This fork of [json-logic-js](https://github.com/jwadhams/json-logic-js), originally by [Jeremy Wadhams](https://github.com/jwadhams), is used by [`React Query Builder`](https://react-querybuilder.js.org/) but has no dependencies itself._
24
35
This parser accepts [JsonLogic](http://jsonlogic.com) rules and executes them in JavaScript.
46

5-
The JsonLogic format is designed to allow you to share rules (logic) between front-end and back-end code (regardless of language difference), even to store logic along with a record in a database. JsonLogic is documented extensively at [JsonLogic.com](http://jsonlogic.com), including examples of every [supported operation](http://jsonlogic.com/operations.html) and a place to [try out rules in your browser](http://jsonlogic.com/play.html).
7+
The JsonLogic format is designed to allow you to share rules (logic) between front-end and back-end code (regardless of language difference), even to store logic along with a record in a database. JsonLogic is documented extensively at [JsonLogic.com](http://jsonlogic.com), including examples of every [supported operation](http://jsonlogic.com/operations.html) and a place to [try out rules in your browser](http://jsonlogic.com/play.html).
68

79
The same format can also be executed in PHP by the library [json-logic-php](https://github.com/jwadhams/json-logic-php/)
810

911
## Installation
1012

11-
To parse JsonLogic rules in a JavaScript frontend, install this library is via [Bower](http://bower.io/):
12-
13-
```bash
14-
bower install --save json-logic-js
15-
```
16-
17-
To parse JsonLogic rules in a JavaScript backend (like Node.js), install this library via [NPM](https://www.npmjs.com/):
13+
Package manager:
1814

1915
```bash
20-
npm install json-logic-js
16+
npm install @react-querybuilder/json-logic-js
17+
# OR yarn add / pnpm add / bun add
2118
```
2219

23-
Note that this project uses a [module loader](http://ricostacruz.com/cheatsheets/umdjs.html) that also makes it suitable for RequireJS projects.
20+
CDN:
2421

25-
If that doesn't suit you, and you want to manage updates yourself, the entire library is self-contained in `logic.js` and you can download it straight into your project as you see fit.
22+
```html
23+
<!-- ESM: -->
24+
<script type="module">
25+
import jsonLogic from "https://cdn.jsdelivr.net/npm/@react-querybuilder/json-logic-js+esm";
26+
// ...
27+
</script>
2628

27-
```bash
28-
curl -O https://raw.githubusercontent.com/jwadhams/json-logic-js/master/logic.js
29+
<!-- UMD: -->
30+
<script src="https://cdn.jsdelivr.net/npm/@react-querybuilder/json-logic-js/dist/json-logic.umd.min.js"></script>
2931
```
3032

3133
## Examples
3234

3335
### Simple
36+
3437
```js
35-
jsonLogic.apply( { "==" : [1, 1] } );
38+
jsonLogic.apply({ "==": [1, 1] });
3639
// true
3740
```
3841

39-
This is a simple test, equivalent to `1 == 1`. A few things about the format:
42+
This is a simple test, equivalent to `1 == 1`. A few things about the format:
4043

41-
1. The operator is always in the "key" position. There is only one key per JsonLogic rule.
42-
1. The values are typically an array.
43-
1. Each value can be a string, number, boolean, array (non-associative), or null
44+
1. The operator is always in the "key" position. There is only one key per JsonLogic rule.
45+
2. The values are typically an array.
46+
3. Each value can be a string, number, boolean, array (non-associative), or null
4447

4548
### Compound
49+
4650
Here we're beginning to nest rules.
4751

4852
```js
49-
jsonLogic.apply(
50-
{"and" : [
51-
{ ">" : [3,1] },
52-
{ "<" : [1,3] }
53-
] }
54-
);
53+
jsonLogic.apply({ and: [{ ">": [3, 1] }, { "<": [1, 3] }] });
5554
// true
5655
```
5756

5857
In an infix language (like JavaScript) this could be written as:
5958

6059
```js
61-
( (3 > 1) && (1 < 3) )
60+
3 > 1 && 1 < 3;
6261
```
6362

6463
### Data-Driven
6564

66-
Obviously these rules aren't very interesting if they can only take static literal data. Typically `jsonLogic` will be called with a rule object and a data object. You can use the `var` operator to get attributes of the data object:
65+
Obviously these rules aren't very interesting if they can only take static literal data. Typically `jsonLogic.apply` will be called with a rule object and a data object. You can use the `var` operator to get attributes of the data object:
6766

6867
```js
6968
jsonLogic.apply(
70-
{ "var" : ["a"] }, // Rule
71-
{ a : 1, b : 2 } // Data
69+
{ var: ["a"] }, // Rule
70+
{ a: 1, b: 2 } // Data
7271
);
7372
// 1
7473
```
7574

76-
If you like, we support [syntactic sugar](https://en.wikipedia.org/wiki/Syntactic_sugar) on unary operators to skip the array around values:
75+
We support [syntactic sugar](https://en.wikipedia.org/wiki/Syntactic_sugar) on unary operators like `var` to skip the array around values:
7776

7877
```js
79-
jsonLogic.apply(
80-
{ "var" : "a" },
81-
{ a : 1, b : 2 }
82-
);
78+
jsonLogic.apply({ var: "a" }, { a: 1, b: 2 });
8379
// 1
8480
```
8581

8682
You can also use the `var` operator to access an array by numeric index:
8783

8884
```js
89-
jsonLogic.apply(
90-
{"var" : 1 },
91-
[ "apple", "banana", "carrot" ]
92-
);
85+
jsonLogic.apply({ var: 1 }, ["apple", "banana", "carrot"]);
9386
// "banana"
9487
```
9588

96-
Here's a complex rule that mixes literals and data. The pie isn't ready to eat unless it's cooler than 110 degrees, *and* filled with apples.
89+
Here's a complex rule that mixes literals and data. The pie isn't ready to eat unless it's cooler than 110 degrees, _and_ filled with apples.
9790

9891
```js
99-
var rules = { "and" : [
100-
{"<" : [ { "var" : "temp" }, 110 ]},
101-
{"==" : [ { "var" : "pie.filling" }, "apple" ] }
102-
] };
92+
var rules = {
93+
and: [
94+
{ "<": [{ var: "temp" }, 110] },
95+
{ "==": [{ var: "pie.filling" }, "apple"] },
96+
],
97+
};
10398

104-
var data = { "temp" : 100, "pie" : { "filling" : "apple" } };
99+
var data = { temp: 100, pie: { filling: "apple" } };
105100

106101
jsonLogic.apply(rules, data);
107102
// true
108103
```
109104

110105
### Always and Never
111-
Sometimes the rule you want to process is "Always" or "Never." If the first parameter passed to `jsonLogic` is a non-object, non-associative-array, it is returned immediately.
106+
107+
Sometimes the rule you want to process is "Always" or "Never." If the first parameter passed to `jsonLogic` is a non-object, non-associative-array, it is returned immediately.
112108

113109
```js
114110
//Always
@@ -120,14 +116,8 @@ jsonLogic.apply(false, i_wasnt_even_supposed_to_be_here);
120116
// false
121117
```
122118

123-
## Compatibility
124-
125-
This library makes use of `Array.map` and `Array.reduce`, so it's not *exactly* Internet Explorer 8 friendly.
126-
127-
If you want to use JsonLogic *and* support deprecated browsers, you could easily use [BabelJS's polyfill](https://babeljs.io/docs/usage/polyfill/) or directly incorporate the polyfills documented on MDN for [map](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map) and [reduce](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/reduce).
128-
129119
## Customization
130120

131121
It's not possible to include everyone's excellent ideas without the core library bloating, bringing in a ton of outside dependencies, or occasionally causing use case conflicts (some people need to safely execute untrusted rules, some people need to change outside state).
132122

133-
Check out the [documentation for adding custom operations](http://jsonlogic.com/add_operation.html) and be sure to stop by the [Wiki page of custom operations](https://github.com/jwadhams/json-logic-js/wiki/Custom-Operations) to see if someone has already solved your problem or to share your solution.
123+
Check out the [documentation for adding custom operations](http://jsonlogic.com/add_operation.html) and be sure to stop by the original [wiki page of custom operations](https://github.com/jwadhams/json-logic-js/wiki/Custom-Operations) to see if someone has already solved your problem or to share your solution.

bower.json

-26
This file was deleted.

bun.lockb

57.6 KB
Binary file not shown.

bunfig.toml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[test]
2+
coverage = true
3+
coverageThreshold = 1

0 commit comments

Comments
 (0)