@@ -135,27 +135,30 @@ function DevExpressConverter() {
135
135
}
136
136
137
137
const left = ast . left !== undefined ? processAstNode ( ast . left ) : convertValue ( ast . field ) ;
138
+ const leftDefault = ast . left ?. args [ 1 ] ?. value ;
138
139
const right = ast . right !== undefined ? processAstNode ( ast . right ) : convertValue ( ast . value ) ;
140
+ const rightDefault = ast . right ?. args [ 1 ] ?. value ;
139
141
let operatorToken = ast . operator . toLowerCase ( ) ;
140
142
141
- if ( operatorToken === "like" ) {
143
+ if ( operatorToken === "like" ) {
142
144
operatorToken = "contains" ;
143
- } else if ( operatorToken === "not like" ) {
145
+ } else if ( operatorToken === "not like" ) {
144
146
operatorToken = "notcontains" ;
145
147
}
146
148
147
149
let comparison = [ left , operatorToken , right ] ;
148
150
151
+ // Last null because of special case when using dropdown it https://github.com/DevExpress/DevExtreme/blob/25_1/packages/devextreme/js/__internal/data/m_utils.ts#L18 it takes last value as null
149
152
if ( ( ast . left && isFunctionNullCheck ( ast . left , true ) ) || ( ast . value && isFunctionNullCheck ( ast . value , false ) ) ) {
150
- comparison = [ [ left , operatorToken , right ] , 'or' , [ left , operatorToken , null , { type : "ISNULL" , defaultValue : ( ast . left ?? ast . value ) . args [ 1 ] ?. value } ] ] ;
153
+ comparison = [ [ left , operatorToken , right ] , 'or' , [ left , operatorToken , null , { type : "ISNULL" , defaultValue : ( ast . left ?? ast . value ) . args [ 1 ] ?. value } , null ] ] ;
151
154
} else if ( ast . right && isFunctionNullCheck ( ast . right , true ) ) {
152
- comparison = [ [ left , operatorToken , right ] , 'or' , [ right , operatorToken , null , { type : "ISNULL" , defaultValue : ast . right . args [ 1 ] ?. value } ] ] ;
155
+ comparison = [ [ left , operatorToken , right ] , 'or' , [ right , operatorToken , null , { type : "ISNULL" , defaultValue : ast . right . args [ 1 ] ?. value } , null ] ] ;
153
156
}
154
157
155
158
// Apply short-circuit evaluation if enabled
156
159
if ( EnableShortCircuit ) {
157
- if ( isAlwaysTrue ( comparison ) ) return true ;
158
- if ( isAlwaysFalse ( comparison ) ) return false ;
160
+ if ( isAlwaysTrue ( comparison , leftDefault , rightDefault ) ) return true ;
161
+ if ( isAlwaysFalse ( comparison , leftDefault , rightDefault ) ) return false ;
159
162
}
160
163
161
164
return comparison ;
@@ -229,8 +232,8 @@ function DevExpressConverter() {
229
232
if ( typeof val === "object" ) {
230
233
if ( val . type === "placeholder" ) {
231
234
const placeholderValue = resolvePlaceholderFromResultObject ( val . value ) ;
232
-
233
- if ( val ?. dataType === "string" ) {
235
+
236
+ if ( val ?. dataType === "string" ) {
234
237
return placeholderValue ?. toString ( ) ;
235
238
}
236
239
@@ -331,29 +334,38 @@ function DevExpressConverter() {
331
334
/**
332
335
* Checks if a condition is always true.
333
336
* @param {Array } condition - The condition to check.
337
+ * @param {* } leftDefault - The default value for the left operand.
338
+ * @param {* } rightDefault - The default value for the right operand.
334
339
* @returns {boolean } True if the condition is always true.
335
340
*/
336
- function isAlwaysTrue ( condition ) {
337
- return Array . isArray ( condition ) && condition . length >= 3 && evaluateExpression ( ...condition ) == true ;
341
+ function isAlwaysTrue ( condition , leftDefault , rightDefault ) {
342
+ return Array . isArray ( condition ) && condition . length >= 3 && evaluateExpression ( ...condition , leftDefault , rightDefault ) == true ;
338
343
}
339
344
340
345
/**
341
346
* Checks if a condition is always false.
342
347
* @param {Array } condition - The condition to check.
348
+ * @param {* } leftDefault - The default value for the left operand.
349
+ * @param {* } rightDefault - The default value for the right operand.
343
350
* @returns {boolean } True if the condition is always false.
344
351
*/
345
- function isAlwaysFalse ( condition ) {
346
- return Array . isArray ( condition ) && condition . length >= 3 && evaluateExpression ( ...condition ) == false ;
352
+ function isAlwaysFalse ( condition , leftDefault , rightDefault ) {
353
+ return Array . isArray ( condition ) && condition . length >= 3 && evaluateExpression ( ...condition , leftDefault , rightDefault ) == false ;
347
354
}
348
355
349
356
/**
350
357
* Evaluates a simple expression.
351
358
* @param {* } left - The left operand.
352
359
* @param {string } operator - The operator.
353
360
* @param {* } right - The right operand.
361
+ * @param {* } leftDefault - The default value for the left operand.
362
+ * @param {* } rightDefault - The default value for the right
354
363
* @returns {boolean|null } The result of the evaluation or null if not evaluable.
355
364
*/
356
- function evaluateExpression ( left , operator , right ) {
365
+ function evaluateExpression ( left , operator , right , leftDefault , rightDefault ) {
366
+ if ( left == null && leftDefault != undefined ) left = leftDefault ;
367
+ if ( right == null && rightDefault != undefined ) right = rightDefault ;
368
+
357
369
if ( ( left !== null && isNaN ( left ) ) || ( right !== null && isNaN ( right ) ) ) return null ;
358
370
359
371
if ( left === null || right === null ) {
0 commit comments