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-8185: Fixing issues with EditGrid and DataGrid clearOnHide with Conditionally visible elements. #77

Merged
merged 1 commit into from
Apr 9, 2024
Merged
Show file tree
Hide file tree
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
104 changes: 104 additions & 0 deletions src/process/__tests__/process.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2663,6 +2663,110 @@ describe('Process Tests', () => {
processSync(context);
expect(context.data).to.deep.equal({ textField: '' });
});

it('Should allow conditionally hidden text fields within DataGrid and EditGrids', async () => {
const form = {
display: 'form',
components: [
{
"label": "Edit Grid",
"tableView": false,
"rowDrafts": false,
"key": "editGrid",
"type": "editgrid",
"displayAsTable": false,
"input": true,
"components": [
{
"label": "Select",
"widget": "choicesjs",
"tableView": true,
"data": {
"values": [
{
"label": "Action1",
"value": "action1"
},
{
"label": "Custom",
"value": "custom"
}
]
},
"key": "select",
"type": "select",
"input": true
},
{
"label": "Text Field",
"applyMaskOn": "change",
"tableView": true,
"key": "textField",
"conditional": {
"show": true,
"conjunction": "all",
"conditions": [
{
"component": "editGrid.select",
"operator": "isEqual",
"value": "custom"
}
]
},
"type": "textfield",
"input": true
}
]
},
{
"type": "button",
"label": "Submit",
"key": "submit",
"disableOnInvalid": true,
"input": true,
"tableView": false
}
]
};

const submission = {
data: {
editGrid: [
{
"select": "action1"
},
{
"select": "custom",
"textField": "TEST"
}
]
}
};

const context = {
form,
submission,
data: submission.data,
components: form.components,
processors: ProcessTargets.evaluator,
scope: {},
config: {
server: true
}
};
processSync(context);
expect(context.data).to.deep.equal({
"editGrid": [
{
"select": "action1"
},
{
"select": "custom",
"textField": "TEST"
}
]
});
});
/*
it('Should not clearOnHide when set to false', async () => {
var components = [
Expand Down
12 changes: 10 additions & 2 deletions src/process/clearHidden.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ import {
ProcessorScope,
ProcessorContext,
ProcessorInfo,
ProcessorFnSync
ProcessorFnSync,
ConditionsScope
} from "types";

type ClearHiddenScope = ProcessorScope & {
Expand All @@ -20,7 +21,14 @@ export const clearHiddenProcess: ProcessorFnSync<ClearHiddenScope> = (context) =
if (!scope.clearHidden) {
scope.clearHidden = {};
}
if (component.hidden && value !== undefined && (!component.hasOwnProperty('clearOnHide') || component.clearOnHide)) {
const conditionallyHidden = (scope as ConditionsScope).conditionals?.find((cond) => {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is fine for now, but this type of type assertion makes me think we should just type the entire scope object as it is at runtime rather than kind of shifting the types around

return cond.path === path;
});
if (
conditionallyHidden?.conditionallyHidden &&
(value !== undefined) &&
(!component.hasOwnProperty('clearOnHide') || component.clearOnHide)
) {
unset(data, path);
scope.clearHidden[path] = true;
}
Expand Down
14 changes: 7 additions & 7 deletions src/process/conditions/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,16 +96,18 @@ export const conditionalProcess = (context: ConditionsContext, isHidden: Conditi
if (!scope.conditionals) {
scope.conditionals = [];
}
scope.conditionals.push({ path, conditionallyHidden: true });
const conditionalComp = scope.conditionals[scope.conditionals.length - 1];
let conditionalComp = scope.conditionals.find((cond) => (cond.path === path));
if (!conditionalComp) {
conditionalComp = {path, conditionallyHidden: false};
scope.conditionals.push(conditionalComp);
}

if (skipOnServer(context)) {
return false;
}

const conditionallyHidden = isHidden(context);
if (conditionallyHidden) {
conditionalComp.conditionallyHidden = conditionallyHidden;
conditionalComp.conditionallyHidden = conditionalComp.conditionallyHidden || isHidden(context);
if (conditionalComp.conditionallyHidden) {
const info = componentInfo(component);
if (info.hasColumns || info.hasComps || info.hasRows) {
// If this is a container component, we need to add all the child components as conditionally hidden as well.
Expand All @@ -119,8 +121,6 @@ export const conditionalProcess = (context: ConditionsContext, isHidden: Conditi
else {
set(component, 'hidden', true);
}
} else {
conditionalComp.conditionallyHidden = false;
}
};

Expand Down
6 changes: 3 additions & 3 deletions src/utils/conditions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ export function checkCustomConditional(condition: string, context: ConditionsCon
* @returns
*/
export function checkLegacyConditional(conditional: LegacyConditional, context: ConditionsContext): boolean | null {
const { row, data } = context;
const { row, data, component } = context;
if (!conditional || !isLegacyConditional(conditional) || !conditional.when) {
return null;
}
const value: any = getComponentActualValue(conditional.when, data, row);
const value: any = getComponentActualValue(component, conditional.when, data, row);
const eq = String(conditional.eq);
const show = String(conditional.show);
if (isObject(value) && has(value, eq)) {
Expand Down Expand Up @@ -111,7 +111,7 @@ export function checkSimpleConditional(conditional: SimpleConditional, context:
// Ignore conditions if there is no component path.
return null;
}
const value = getComponentActualValue(conditionComponentPath, data, row);
const value = getComponentActualValue(component, conditionComponentPath, data, row);
const ConditionOperator = ConditionOperators[operator];
return ConditionOperator
? new ConditionOperator().getResult({ value, comparedValue, instance, component, conditionComponentPath })
Expand Down
20 changes: 18 additions & 2 deletions src/utils/formUtil.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ import {
pad,
isPlainObject,
isArray,
isEqual
isEqual,
trim
} from "lodash";
import { compare, applyPatch } from 'fast-json-patch';
import {
Expand Down Expand Up @@ -557,7 +558,22 @@ export function getComponentData(components: Component[], data: DataObject, path
return compData;
}

export function getComponentActualValue(compPath: string, data: any, row: any) {
export function getComponentActualValue(component: Component, compPath: string, data: any, row: any) {
// The compPath here will NOT contain the indexes for DataGrids and EditGrids.
//
// a[0].b[2].c[3].d
//
// Because of this, we will need to determine our parent component path (not data path),
// and find the "row" based comp path.
//
// a[0].b[2].c[3].d => a.b.c.d
//
if (component.parent?.path) {
const parentCompPath = component.parent?.path.replace(/\[[0-9]+\]/g, '');
compPath = compPath.replace(parentCompPath, '');
compPath = trim(compPath, '. ');
}

let value = null;
if (row) {
value = get(row, compPath);
Expand Down
26 changes: 25 additions & 1 deletion src/utils/logic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,36 @@ export const checkTrigger = (context: LogicContext, trigger: any): boolean => {
};

export function setActionBooleanProperty(context: LogicContext, action: LogicActionPropertyBoolean): boolean {
const { component } = context;
const { component, scope, path } = context;
const property = action.property.value;
const currentValue = get(component, property, false).toString();
const newValue = action.state.toString();
if (currentValue !== newValue) {
set(component, property, newValue === 'true');

// If this is "logic" forcing a component to be hidden, then we will set the "conditionallyHidden"
// flag which will trigger the clearOnHide functionality.
if (
property === 'hidden' &&
component.hidden &&
path
) {
if (!(scope as any).conditionals) {
(scope as any).conditionals = [];
}
const conditionalyHidden = (scope as any).conditionals.find((cond: any) => {
return cond.path === path
});
if (conditionalyHidden) {
conditionalyHidden.conditionallyHidden = true;
}
else {
(scope as any).conditionals.push({
path,
conditionallyHidden: true
});
}
}
return true;
}
return false;
Expand Down
Loading