Skip to content

Commit 49dcf42

Browse files
authored
Merge pull request #14 from RohitM-IN/development
Added support for LIKE and NOT LIKE operators in convertor, and fixed bugs related to IS NULL
2 parents 4ccd395 + 8640e0f commit 49dcf42

File tree

7 files changed

+36
-5
lines changed

7 files changed

+36
-5
lines changed

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,14 @@ console.log("DevExpress Filter:", JSON.stringify(devexpressFilter, null, 2));
126126
const devexpressFilter = convertAstToDevextreme(ast, sampleState, false); // Disables short-circuiting
127127
```
128128

129+
### **DevExtreme with React Example**
130+
131+
To see an example of how to use `sqlparser-devexpress` with DevExtreme DataGrid in React, check out the live example on CodeSandbox:
132+
133+
[DevExtreme DataGrid with SQL Filter Example](https://codesandbox.io/p/sandbox/with-data-grid-with-sql-as-filter-string-my64v2)
134+
135+
In this example, SQL `WHERE` clauses are parsed into an Abstract Syntax Tree (AST) and then transformed into a DevExpress-compatible filter format that is used directly in the DataGrid component for filtering data.
136+
129137
## Roadmap
130138

131139
- Support for additional SQL operators and functions.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sqlparser-devexpress",
3-
"version": "2.3.4",
3+
"version": "2.3.6",
44
"main": "src/index.js",
55
"type": "module",
66
"scripts": {

src/@types/default.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export interface ParsedResult {
1212

1313
export interface ConvertToDevExpressFormatParams {
1414
ast: any; // Define a more specific type if possible
15-
resultObject: StateDataObject;
15+
resultObject?: StateDataObject | null;
1616
enableShortCircuit?: boolean;
1717
}
1818

@@ -30,6 +30,6 @@ export function convertSQLToAst(
3030

3131
export function convertAstToDevextreme(
3232
ast: any, // Define a more specific type if possible
33-
state: StateDataObject,
33+
state?: StateDataObject | null,
3434
enableShortCircuit?: boolean,
3535
): any;

src/core/converter.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,13 @@ function DevExpressConverter() {
136136

137137
const left = ast.left !== undefined ? processAstNode(ast.left) : convertValue(ast.field);
138138
const right = ast.right !== undefined ? processAstNode(ast.right) : convertValue(ast.value);
139-
const operatorToken = ast.operator.toLowerCase();
139+
let operatorToken = ast.operator.toLowerCase();
140+
141+
if(operatorToken === "like") {
142+
operatorToken = "contains";
143+
}else if (operatorToken === "not like") {
144+
operatorToken = "notcontains";
145+
}
140146

141147
let comparison = [left, operatorToken, right];
142148

src/core/parser.js

+9
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,15 @@ export function parse(input, variables = []) {
173173
if (currentToken.type === "function") {
174174
const functionNode = parseFunction();
175175

176+
if(fieldType === "identifier" && functionNode.type === "function") {
177+
return {
178+
type: "comparison",
179+
field,
180+
operator,
181+
value: functionNode
182+
}
183+
}
184+
176185
// Wrap the function inside a comparison if it's directly after an operator
177186
const leftComparison = {
178187
type: "comparison",

src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export function convertSQLToAst(filterString, enableConsoleLogs = false) {
1616
return parsedResult;
1717
}
1818

19-
export function convertAstToDevextreme(ast, state, enableShortCircuit = true) {
19+
export function convertAstToDevextreme(ast, state = null, enableShortCircuit = true) {
2020
return convertToDevExpressFormat({ ast, resultObject: state, enableShortCircuit })
2121
}
2222

tests/parser.test.js

+8
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,14 @@ describe("Parser SQL to dx Filter Builder", () => {
204204
]
205205

206206
]
207+
},
208+
{
209+
input: "CompanyName like '{LeadDocument.CompanyID}' AND BranchName not like '{LeadDocument.BranchID}'",
210+
expected: [
211+
["CompanyName", "contains", "7"],
212+
"and",
213+
["BranchName", "notcontains", "42"]
214+
]
207215
}
208216
];
209217

0 commit comments

Comments
 (0)