Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIO-9266/FIO-9267/FIO-9268: Fixes an issue where nested form validation will be skipped if parent form submits empty data #203

Merged
merged 1 commit into from
Dec 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions src/utils/formUtil/index.ts
Original file line number Diff line number Diff line change
@@ -559,9 +559,6 @@ export function getComponentLocalData(paths: ComponentPaths, data: any, local?:

export function shouldProcessComponent(comp: Component, row: any, value: any): boolean {
if (getModelType(comp) === 'dataObject') {
if (isEmpty(row)) {
return false;
}
const noReferenceAttached = value?._id ? isEmpty(value.data) && !has(value, 'form') : false;
const shouldBeCleared =
(!comp.hasOwnProperty('clearOnHide') || comp.clearOnHide) &&

Unchanged files with check annotations Beta

import { ProcessorContext } from 'types';
export class ProcessorError extends Error {
context: Omit<ProcessorContext<any>, 'scope'>;

Check warning on line 3 in src/error/ProcessorError.ts

GitHub Actions / setup

Unexpected any. Specify a different type

Check warning on line 3 in src/error/ProcessorError.ts

GitHub Actions / publish

Unexpected any. Specify a different type
constructor(message: string, context: ProcessorContext<any>, processor: string = 'unknown') {

Check warning on line 4 in src/error/ProcessorError.ts

GitHub Actions / setup

Unexpected any. Specify a different type

Check warning on line 4 in src/error/ProcessorError.ts

GitHub Actions / publish

Unexpected any. Specify a different type
super(message);
this.message = `${message}\nin ${processor} at ${context.path}`;
const { component, path, data, row } = context;
import { BaseEvaluator, EvaluatorOptions, EvaluatorContext } from 'utils/Evaluator';
export class JSONLogicEvaluator extends BaseEvaluator {
public static evaluate(
func: any,

Check warning on line 6 in src/modules/jsonlogic/index.ts

GitHub Actions / setup

Unexpected any. Specify a different type

Check warning on line 6 in src/modules/jsonlogic/index.ts

GitHub Actions / publish

Unexpected any. Specify a different type
args: any = {},

Check warning on line 7 in src/modules/jsonlogic/index.ts

GitHub Actions / setup

Unexpected any. Specify a different type

Check warning on line 7 in src/modules/jsonlogic/index.ts

GitHub Actions / publish

Unexpected any. Specify a different type
ret: any = '',

Check warning on line 8 in src/modules/jsonlogic/index.ts

GitHub Actions / setup

Unexpected any. Specify a different type

Check warning on line 8 in src/modules/jsonlogic/index.ts

GitHub Actions / publish

Unexpected any. Specify a different type
interpolate: boolean = false,
context: any = {},

Check warning on line 10 in src/modules/jsonlogic/index.ts

GitHub Actions / setup

Unexpected any. Specify a different type

Check warning on line 10 in src/modules/jsonlogic/index.ts

GitHub Actions / publish

Unexpected any. Specify a different type
options: EvaluatorOptions = {},
) {
let returnVal = null;
}
}
export type EvaluatorFn = (context: EvaluatorContext) => any;

Check warning on line 28 in src/modules/jsonlogic/index.ts

GitHub Actions / setup

Unexpected any. Specify a different type

Check warning on line 28 in src/modules/jsonlogic/index.ts

GitHub Actions / publish

Unexpected any. Specify a different type
export function evaluate(
context: EvaluatorContext,
if (evalContextFn) {
evalContextFn(evalContextValue);
}
if (instance && (instance as any).evaluate) {

Check warning on line 44 in src/modules/jsonlogic/index.ts

GitHub Actions / setup

Unexpected any. Specify a different type

Check warning on line 44 in src/modules/jsonlogic/index.ts

GitHub Actions / publish

Unexpected any. Specify a different type
return (instance as any).evaluate(evaluation, evalContextValue, ret, false, options);

Check warning on line 45 in src/modules/jsonlogic/index.ts

GitHub Actions / setup

Unexpected any. Specify a different type

Check warning on line 45 in src/modules/jsonlogic/index.ts

GitHub Actions / publish

Unexpected any. Specify a different type
}
return (JSONLogicEvaluator as any).evaluate(

Check warning on line 47 in src/modules/jsonlogic/index.ts

GitHub Actions / setup

Unexpected any. Specify a different type

Check warning on line 47 in src/modules/jsonlogic/index.ts

GitHub Actions / publish

Unexpected any. Specify a different type
evaluation,
evalContextValue,
ret,