* initial layout * updated parser to support nested array * array field rendering * changes * ts fix * minor revert FormWidget * modified schema structure * select and switch fields * added checkbox field * added RadioGroupField * partial DateField and defaults, typing refactoring * added label and field type change * minor ts changes * changes * modified widget/utils for nested panelConfig, modified schema to object approach * array/object label support * hide field configuration when children not present * added tooltip * field visibility option * disabled state * upgraded tslib, form initial values * custom field configuration - add/hide/edit * field configuration - label change * return input when field configuration reaches max depth * minor changes * form - scroll, fixedfooter, enitity defn and other minior changes * form title * unregister on unmount * fixes * zero state * fix field padding * patched updating form values, removed linting warnings * configured action buttons * minor fix * minor change * property pane - sort fields in field configuration * refactor include all properties * checkbox properties * date properties * refactor typings and radio group properties * switch, multselect, select, array, object properties * minor changes * default value * ts fixes * checkbox field properties implementation * date field prop implementation * switch field * select field and fix deep nested meta properties * multiselect implementation * minor change * input field implementation * fix position jump on field type change * initial accordian * field state property and auto-complete of JSONFormComputeControl * merge fixes * renamed FormBuilder to JSONForm * source data validation minor change * custom field default value fix * Editable keys for custom field * minor fixes * replaced useFieldArray with custom logic, added widget icon * array and object accordian with border/background styling * minor change * disabled states for array and objects * default value minor fix * form level styles * modified logic for isDisabled for array and object, added disabledWhenInvalid, exposed isValid to fieldState for text input, removed useDisableChildren * added isValid for all field types * fixed reset to default values * debounce form values update * minor change * minor change * fix crash - source data change multi-select to array, fix crash - change of options * fix positioning * detect date type in source data * fix crash - when object is passed to regex input field * fixed default sourceData path for fields * accodion keep children mounted on collapse * jest test for schemaParser * widget/helper and useRegisterFieldInvalid test * tests for property config helper and generatePanelPropertyConfig * fix input field validation not appearing * fix date field type detection * rename data -> formData * handle null/undefined field value change in sourceData * added null/undefined as valid values for defaultValue text field * auto detect email field * set formData default value on initial load * switch field inline positioning * field margin fix for row direction * select full width * fiex date field default value - out of range * fix any field type to array * array default value logic change * base cypress test changes * initial json form render cy test * key sanitization * fix fieldState update logic * required design, object/array background color, accordion changes, fix - add new custom field * minor change * cypress tests * fix date formatted value, field state cypress test * cypress - field properties test and fixes * rename test file * fix accessort change to blank value, cypress tests * fix array field default value for modified accessor * minor fix * added animate loading * fix empty state, add new custom field * test data fix * fix warnings * fix timePrecision visibility * button styling * ported input v2 * fix jest tests * fix cypress tests * perf changes * perf improvement * added comments * multiselect changes * input field perf refactor * array field, object field refactor performance * checkbox field refactor * refectored date, radio, select and switch * fixes * test fixes * fixes * minor fix * rename field renderer * remove tracked fieldRenderer field * cypress test fixes * cypress changes * array default value fixes * arrayfield passedDefaultValue * auto enabled JS mode for few properties, reverted swith and date property controls * cypress changes * added widget sniping mode and fixed object passedDefaultValue * multiselect v2 * select v2 * fix jest tests * test fixes * field limit * rename field type dropdown texts * field type changes fixes * jest fixes * loading state submit button * default source data for new widget * modify limit message * multiseelct default value changes and cypress fix * select default value * keep default value intact on field type change * TextTable cypress text fix * review changes * fixed footer changes * collapse styles section by default * fixed footer changes * form modes * custom field key rentention * fixed footer fix in view mode * non ascii characters * fix meta merge in dataTreeWidget * minor fixes * rename useRegisterFieldInvalid.ts -> useRegisterFieldValidity.ts * modified dependency injection into evaluated values * refactored fixedfooter logic * minor change * accessor update * minor change * fixes * QA fixes date field, scroll content * fix phone number field, removed visiblity option from array item * fix sourceData autocomplete * reset logic * fix multiselect reset * form values hydration on widget drag * code review changes * reverted order of merge dataTreeWidget * fixes * added button titles, fixed hydration issue * default value fixes * upgraded react hook form, modified array-level/field-level default value logic * fixed select validation * added icon entity explorer, modified icon align control * modify accessor validation for mongo db _id * update email field regex * review changes * explicitly handle empty source data validation
212 lines
7.1 KiB
TypeScript
212 lines
7.1 KiB
TypeScript
import { ButtonVariantTypes } from "components/constants";
|
|
import { getTheme, ThemeMode } from "selectors/themeSelectors";
|
|
import { escapeSpecialChars, sanitizeKey } from "./WidgetUtils";
|
|
import {
|
|
getCustomTextColor,
|
|
getCustomBackgroundColor,
|
|
getCustomHoverColor,
|
|
} from "./WidgetUtils";
|
|
|
|
describe("validate widget utils button style functions", () => {
|
|
const theme = getTheme(ThemeMode.LIGHT);
|
|
// validate getCustomTextColor function
|
|
it("getCustomTextColor - validate empty or undefined background color", () => {
|
|
// background color is undefined
|
|
const result = getCustomTextColor(theme);
|
|
expect(result).toStrictEqual("#FFFFFF");
|
|
|
|
// background color is empty string
|
|
const backgroundColor = "";
|
|
const expected = "#FFFFFF";
|
|
const result2 = getCustomTextColor(theme, backgroundColor);
|
|
expect(result2).toStrictEqual(expected);
|
|
});
|
|
|
|
it("getCustomTextColor - validate text color in case of dark or light background color", () => {
|
|
// background color is dark
|
|
const blueBackground = "#3366FF";
|
|
const expected1 = "#FFFFFF";
|
|
const result1 = getCustomTextColor(theme, blueBackground);
|
|
expect(result1).toStrictEqual(expected1);
|
|
|
|
// background color is light
|
|
const yellowBackground = "#FFC13D";
|
|
const expected2 = "#333";
|
|
const result2 = getCustomTextColor(theme, yellowBackground);
|
|
expect(result2).toStrictEqual(expected2);
|
|
});
|
|
|
|
// validate getCustomBackgroundColor function
|
|
it("getCustomBackgroundColor - validate empty or undefined background color", () => {
|
|
const expected = "none";
|
|
const result = getCustomBackgroundColor();
|
|
expect(result).toStrictEqual(expected);
|
|
});
|
|
|
|
it("getCustomBackgroundColor - validate background color with primary button variant", () => {
|
|
const backgroundColor = "#03b365";
|
|
const expected = "#03b365";
|
|
const result = getCustomBackgroundColor(
|
|
ButtonVariantTypes.PRIMARY,
|
|
backgroundColor,
|
|
);
|
|
expect(result).toStrictEqual(expected);
|
|
});
|
|
|
|
it("getCustomBackgroundColor - validate background color with secondary button variant", () => {
|
|
const backgroundColor = "#03b365";
|
|
const expected = "none";
|
|
const result = getCustomBackgroundColor(
|
|
ButtonVariantTypes.SECONDARY,
|
|
backgroundColor,
|
|
);
|
|
expect(result).toStrictEqual(expected);
|
|
});
|
|
|
|
// validate getCustomHoverColor function
|
|
it("getCustomHoverColor - validate empty or undefined background color or variant", () => {
|
|
// background color and variant is both are undefined
|
|
const expected = "#00693B";
|
|
const result = getCustomHoverColor(theme);
|
|
expect(result).toStrictEqual(expected);
|
|
|
|
// variant is undefined
|
|
const backgroundColor = "#03b365";
|
|
const expected1 = "#028149";
|
|
const result1 = getCustomHoverColor(theme, undefined, backgroundColor);
|
|
expect(result1).toStrictEqual(expected1);
|
|
});
|
|
|
|
// validate getCustomHoverColor function
|
|
it("getCustomHoverColor - validate hover color for different variant", () => {
|
|
const backgroundColor = "#03b365";
|
|
// variant : PRIMARY
|
|
const expected1 = "#028149";
|
|
const result1 = getCustomHoverColor(
|
|
theme,
|
|
ButtonVariantTypes.PRIMARY,
|
|
backgroundColor,
|
|
);
|
|
expect(result1).toStrictEqual(expected1);
|
|
|
|
// variant : PRIMARY without background
|
|
const expected2 = theme.colors.button.primary.primary.hoverColor;
|
|
const result2 = getCustomHoverColor(theme, ButtonVariantTypes.PRIMARY);
|
|
expect(result2).toStrictEqual(expected2);
|
|
|
|
// variant : SECONDARY
|
|
const expected3 = "#85fdc8";
|
|
const result3 = getCustomHoverColor(
|
|
theme,
|
|
ButtonVariantTypes.SECONDARY,
|
|
backgroundColor,
|
|
);
|
|
expect(result3).toStrictEqual(expected3);
|
|
|
|
// variant : SECONDARY without background
|
|
const expected4 = theme.colors.button.primary.secondary.hoverColor;
|
|
const result4 = getCustomHoverColor(theme, ButtonVariantTypes.SECONDARY);
|
|
expect(result4).toStrictEqual(expected4);
|
|
|
|
// variant : TERTIARY
|
|
const expected5 = "#85fdc8";
|
|
const result5 = getCustomHoverColor(
|
|
theme,
|
|
ButtonVariantTypes.TERTIARY,
|
|
backgroundColor,
|
|
);
|
|
expect(result5).toStrictEqual(expected5);
|
|
|
|
// variant : TERTIARY without background
|
|
const expected6 = theme.colors.button.primary.tertiary.hoverColor;
|
|
const result6 = getCustomHoverColor(theme, ButtonVariantTypes.TERTIARY);
|
|
expect(result6).toStrictEqual(expected6);
|
|
});
|
|
|
|
it("validate escaping special characters", () => {
|
|
const testString = `a\nb\nc
|
|
hello! how are you?
|
|
`;
|
|
const result = escapeSpecialChars(testString);
|
|
const expectedResult = "a\nb\nc\nhello! how are you?\n";
|
|
expect(result).toStrictEqual(expectedResult);
|
|
});
|
|
});
|
|
|
|
describe(".sanitizeKey", () => {
|
|
it("returns sanitized value when passed a valid string", () => {
|
|
const inputAndExpectedOutput = [
|
|
["lowercase", "lowercase"],
|
|
["__abc__", "__abc__"],
|
|
["lower_snake_case", "lower_snake_case"],
|
|
["UPPER_SNAKE_CASE", "UPPER_SNAKE_CASE"],
|
|
["PascalCase", "PascalCase"],
|
|
["camelCase", "camelCase"],
|
|
["lower-kebab-case", "lower_kebab_case"],
|
|
["UPPER_KEBAB-CASE", "UPPER_KEBAB_CASE"],
|
|
["Sentencecase", "Sentencecase"],
|
|
["", "_"],
|
|
["with space", "with_space"],
|
|
["with multiple spaces", "with_multiple__spaces"],
|
|
["with%special)characters", "with_special_characters"],
|
|
["with%$multiple_spl.)characters", "with__multiple_spl__characters"],
|
|
["1startingWithNumber", "_1startingWithNumber"],
|
|
];
|
|
|
|
inputAndExpectedOutput.forEach(([input, expectedOutput]) => {
|
|
const result = sanitizeKey(input);
|
|
expect(result).toEqual(expectedOutput);
|
|
});
|
|
});
|
|
|
|
it("returns sanitized value when valid string with existing keys and reserved keys", () => {
|
|
const existingKeys = [
|
|
"__id",
|
|
"__restricted__",
|
|
"firstName1",
|
|
"_1age",
|
|
"gender",
|
|
"poll123",
|
|
"poll124",
|
|
"poll125",
|
|
"address_",
|
|
];
|
|
|
|
const inputAndExpectedOutput = [
|
|
["lowercase", "lowercase"],
|
|
["__abc__", "__abc__"],
|
|
["lower_snake_case", "lower_snake_case"],
|
|
["UPPER_SNAKE_CASE", "UPPER_SNAKE_CASE"],
|
|
["PascalCase", "PascalCase"],
|
|
["camelCase", "camelCase"],
|
|
["lower-kebab-case", "lower_kebab_case"],
|
|
["UPPER_KEBAB-CASE", "UPPER_KEBAB_CASE"],
|
|
["Sentencecase", "Sentencecase"],
|
|
["", "_"],
|
|
["with space", "with_space"],
|
|
["with multiple spaces", "with_multiple__spaces"],
|
|
["with%special)characters", "with_special_characters"],
|
|
["with%$multiple_spl.)characters", "with__multiple_spl__characters"],
|
|
["1startingWithNumber", "_1startingWithNumber"],
|
|
["1startingWithNumber", "_1startingWithNumber"],
|
|
["firstName", "firstName"],
|
|
["firstName1", "firstName2"],
|
|
["1age", "_1age1"],
|
|
["address&", "address_1"],
|
|
["%&id", "__id1"],
|
|
["%&restricted*(", "__restricted__1"],
|
|
["poll130", "poll130"],
|
|
["poll124", "poll126"],
|
|
["हिन्दि", "xn__j2bd4cyac6f"],
|
|
["😃", "xn__h28h"],
|
|
];
|
|
|
|
inputAndExpectedOutput.forEach(([input, expectedOutput]) => {
|
|
const result = sanitizeKey(input, {
|
|
existingKeys,
|
|
});
|
|
expect(result).toEqual(expectedOutput);
|
|
});
|
|
});
|
|
});
|