2021-09-09 15:10:22 +00:00
|
|
|
// import React, { JSXElementConstructor } from "react";
|
|
|
|
|
// import { IconProps, IconWrapper } from "constants/IconConstants";
|
|
|
|
|
|
2021-12-08 13:11:13 +00:00
|
|
|
import { Alignment } from "@blueprintjs/core";
|
|
|
|
|
import { IconName } from "@blueprintjs/icons";
|
2021-09-09 15:10:22 +00:00
|
|
|
import {
|
|
|
|
|
CONTAINER_GRID_PADDING,
|
|
|
|
|
GridDefaults,
|
|
|
|
|
WIDGET_PADDING,
|
|
|
|
|
} from "constants/WidgetConstants";
|
|
|
|
|
import generate from "nanoid/generate";
|
|
|
|
|
import { WidgetPositionProps } from "./BaseWidget";
|
2021-10-06 12:57:05 +00:00
|
|
|
import { Theme } from "constants/DefaultTheme";
|
|
|
|
|
import {
|
|
|
|
|
ButtonStyleTypes,
|
|
|
|
|
ButtonVariant,
|
|
|
|
|
ButtonVariantTypes,
|
2021-12-08 13:11:13 +00:00
|
|
|
ButtonPlacement,
|
|
|
|
|
ButtonPlacementTypes,
|
2021-10-06 12:57:05 +00:00
|
|
|
} from "components/constants";
|
|
|
|
|
import tinycolor from "tinycolor2";
|
2021-09-09 15:10:22 +00:00
|
|
|
|
feat: JSON Form widget (#8472)
* 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
2022-03-24 07:13:25 +00:00
|
|
|
const punycode = require("punycode/");
|
|
|
|
|
|
|
|
|
|
type SanitizeOptions = {
|
|
|
|
|
existingKeys?: string[];
|
|
|
|
|
};
|
|
|
|
|
|
2021-09-09 15:10:22 +00:00
|
|
|
export function getDisplayName(WrappedComponent: {
|
|
|
|
|
displayName: any;
|
|
|
|
|
name: any;
|
|
|
|
|
}) {
|
|
|
|
|
return WrappedComponent.displayName || WrappedComponent.name || "Component";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function getWidgetDimensions(props: WidgetPositionProps) {
|
|
|
|
|
return {
|
|
|
|
|
componentWidth:
|
|
|
|
|
(props.rightColumn - props.leftColumn) * props.parentColumnSpace,
|
|
|
|
|
componentHeight: (props.bottomRow - props.topRow) * props.parentRowSpace,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function getSnapSpaces(props: WidgetPositionProps) {
|
|
|
|
|
const { componentWidth } = getWidgetDimensions(props);
|
|
|
|
|
return {
|
|
|
|
|
snapRowSpace: GridDefaults.DEFAULT_GRID_ROW_HEIGHT,
|
|
|
|
|
snapColumnSpace: componentWidth
|
|
|
|
|
? (componentWidth - (CONTAINER_GRID_PADDING + WIDGET_PADDING) * 2) /
|
|
|
|
|
GridDefaults.DEFAULT_GRID_COLUMNS
|
|
|
|
|
: 0,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const hexToRgb = (
|
|
|
|
|
hex: string,
|
|
|
|
|
): {
|
|
|
|
|
r: number;
|
|
|
|
|
g: number;
|
|
|
|
|
b: number;
|
|
|
|
|
} => {
|
|
|
|
|
const result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex);
|
|
|
|
|
return result
|
|
|
|
|
? {
|
|
|
|
|
r: parseInt(result[1], 16),
|
|
|
|
|
g: parseInt(result[2], 16),
|
|
|
|
|
b: parseInt(result[3], 16),
|
|
|
|
|
}
|
|
|
|
|
: {
|
|
|
|
|
r: -1,
|
|
|
|
|
g: -1,
|
|
|
|
|
b: -1,
|
|
|
|
|
};
|
|
|
|
|
};
|
2022-03-31 18:19:58 +00:00
|
|
|
// Padding between PositionContainer and Widget
|
2021-11-30 10:38:46 +00:00
|
|
|
export const WidgetContainerDiff = 8;
|
2021-09-09 15:10:22 +00:00
|
|
|
export const hexToRgba = (color: string, alpha: number) => {
|
|
|
|
|
const value = hexToRgb(color);
|
|
|
|
|
return `rgba(${value.r}, ${value.g}, ${value.b}, ${alpha});`;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const ALPHANUMERIC = "1234567890abcdefghijklmnopqrstuvwxyz";
|
|
|
|
|
// const ALPHABET = "abcdefghijklmnopqrstuvwxyz";
|
|
|
|
|
|
|
|
|
|
export const generateReactKey = ({
|
|
|
|
|
prefix = "",
|
|
|
|
|
}: { prefix?: string } = {}): string => {
|
|
|
|
|
return prefix + generate(ALPHANUMERIC, 10);
|
|
|
|
|
};
|
2021-10-06 12:57:05 +00:00
|
|
|
|
|
|
|
|
export const getCustomTextColor = (theme: Theme, backgroundColor?: string) => {
|
|
|
|
|
if (!backgroundColor)
|
2021-11-06 08:00:57 +00:00
|
|
|
return theme.colors.button[ButtonStyleTypes.PRIMARY.toLowerCase()].primary
|
2021-10-06 12:57:05 +00:00
|
|
|
.textColor;
|
|
|
|
|
const isDark = tinycolor(backgroundColor).isDark();
|
|
|
|
|
if (isDark) {
|
|
|
|
|
return theme.colors.button.custom.solid.light.textColor;
|
|
|
|
|
}
|
|
|
|
|
return theme.colors.button.custom.solid.dark.textColor;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const getCustomHoverColor = (
|
|
|
|
|
theme: Theme,
|
|
|
|
|
buttonVariant?: ButtonVariant,
|
|
|
|
|
backgroundColor?: string,
|
|
|
|
|
) => {
|
|
|
|
|
if (!backgroundColor) {
|
|
|
|
|
return theme.colors.button[ButtonStyleTypes.PRIMARY.toLowerCase()][
|
2021-10-12 08:04:51 +00:00
|
|
|
(buttonVariant || ButtonVariantTypes.PRIMARY).toLowerCase()
|
2021-10-06 12:57:05 +00:00
|
|
|
].hoverColor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (buttonVariant) {
|
2021-10-12 08:04:51 +00:00
|
|
|
case ButtonVariantTypes.SECONDARY:
|
2021-10-06 12:57:05 +00:00
|
|
|
return backgroundColor
|
|
|
|
|
? tinycolor(backgroundColor)
|
|
|
|
|
.lighten(40)
|
|
|
|
|
.toString()
|
2021-11-06 08:00:57 +00:00
|
|
|
: theme.colors.button.primary.secondary.hoverColor;
|
2021-10-06 12:57:05 +00:00
|
|
|
|
2021-10-12 08:04:51 +00:00
|
|
|
case ButtonVariantTypes.TERTIARY:
|
2021-10-06 12:57:05 +00:00
|
|
|
return backgroundColor
|
|
|
|
|
? tinycolor(backgroundColor)
|
|
|
|
|
.lighten(40)
|
|
|
|
|
.toString()
|
2021-11-06 08:00:57 +00:00
|
|
|
: theme.colors.button.primary.tertiary.hoverColor;
|
2021-10-06 12:57:05 +00:00
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return backgroundColor
|
|
|
|
|
? tinycolor(backgroundColor)
|
|
|
|
|
.darken(10)
|
|
|
|
|
.toString()
|
2021-11-06 08:00:57 +00:00
|
|
|
: theme.colors.button.primary.primary.hoverColor;
|
2021-10-06 12:57:05 +00:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const getCustomBackgroundColor = (
|
|
|
|
|
buttonVariant?: ButtonVariant,
|
|
|
|
|
backgroundColor?: string,
|
|
|
|
|
) => {
|
2021-10-12 08:04:51 +00:00
|
|
|
return buttonVariant === ButtonVariantTypes.PRIMARY
|
|
|
|
|
? backgroundColor
|
|
|
|
|
: "none";
|
2021-10-06 12:57:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const getCustomBorderColor = (
|
|
|
|
|
buttonVariant?: ButtonVariant,
|
|
|
|
|
backgroundColor?: string,
|
|
|
|
|
) => {
|
2021-10-12 08:04:51 +00:00
|
|
|
return buttonVariant === ButtonVariantTypes.SECONDARY
|
2021-10-06 12:57:05 +00:00
|
|
|
? backgroundColor
|
|
|
|
|
: "none";
|
|
|
|
|
};
|
2021-11-25 10:52:40 +00:00
|
|
|
|
2021-12-08 13:11:13 +00:00
|
|
|
export const getCustomJustifyContent = (placement?: ButtonPlacement) => {
|
|
|
|
|
switch (placement) {
|
|
|
|
|
case ButtonPlacementTypes.START:
|
|
|
|
|
return "start";
|
|
|
|
|
case ButtonPlacementTypes.CENTER:
|
|
|
|
|
return "center";
|
|
|
|
|
case ButtonPlacementTypes.BETWEEN:
|
|
|
|
|
return "space-between";
|
|
|
|
|
default:
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const getAlignText = (isRightAlign: boolean, iconName?: IconName) =>
|
|
|
|
|
iconName
|
|
|
|
|
? isRightAlign
|
|
|
|
|
? Alignment.LEFT
|
|
|
|
|
: Alignment.RIGHT
|
|
|
|
|
: Alignment.CENTER;
|
2021-11-25 10:52:40 +00:00
|
|
|
export const escapeSpecialChars = (stringifiedJSONObject: string) => {
|
|
|
|
|
return stringifiedJSONObject
|
|
|
|
|
.replace(/\\n/g, "\\\\n") // new line char
|
|
|
|
|
.replace(/\\b/g, "\\\\b") //
|
|
|
|
|
.replace(/\\t/g, "\\\\t") // tab
|
|
|
|
|
.replace(/\\f/g, "\\\\f") //
|
|
|
|
|
.replace(/\\/g, "\\\\") //
|
|
|
|
|
.replace(/\\r/g, "\\\\r"); //
|
|
|
|
|
};
|
feat: JSON Form widget (#8472)
* 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
2022-03-24 07:13:25 +00:00
|
|
|
|
|
|
|
|
// Creates a map between the string part of a key with max suffixed number found
|
|
|
|
|
// eg. keys -> ["key1", "key10", "newKey"]
|
|
|
|
|
// returns -> {key: 10, newKey: 0 }
|
|
|
|
|
const generateKeyToIndexMap = (keys: string[]) => {
|
|
|
|
|
const map: Record<string, number> = {};
|
|
|
|
|
|
|
|
|
|
keys.forEach((key) => {
|
|
|
|
|
/**
|
|
|
|
|
* input key123
|
|
|
|
|
* -> ['123', index: 3, input: 'key123', groups: undefined] (match return value)
|
|
|
|
|
*
|
|
|
|
|
* input key
|
|
|
|
|
* -> null
|
|
|
|
|
*/
|
|
|
|
|
const match = key.match(/\d+$/);
|
|
|
|
|
let prefix = key;
|
|
|
|
|
let suffix = 0;
|
|
|
|
|
const isKeyPresentInMap = map.hasOwnProperty(prefix);
|
|
|
|
|
|
|
|
|
|
if (match) {
|
|
|
|
|
prefix = key.slice(0, match.index); // key123 -> key
|
|
|
|
|
suffix = parseInt(match[0], 10);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!isKeyPresentInMap || (isKeyPresentInMap && map[key] < suffix)) {
|
|
|
|
|
map[prefix] = suffix;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return map;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const sanitizeKey = (key: string, options?: SanitizeOptions) => {
|
|
|
|
|
// Step1 convert to ASCII characters
|
|
|
|
|
let sanitizedKey = punycode.toASCII(key);
|
|
|
|
|
|
|
|
|
|
// Step 2 Replaces all spl. characters/spaces with _
|
|
|
|
|
sanitizedKey = sanitizedKey.replace(/[^\w]/gi, "_");
|
|
|
|
|
|
|
|
|
|
// Step 3 Check if empty key
|
|
|
|
|
if (sanitizedKey.length === 0) sanitizedKey = "_";
|
|
|
|
|
|
|
|
|
|
// Step 4 Check if key starts with number
|
|
|
|
|
const [firstCharacter] = sanitizedKey;
|
|
|
|
|
if (/\d/.test(firstCharacter)) sanitizedKey = `_${sanitizedKey}`;
|
|
|
|
|
|
|
|
|
|
// Step 5 handle checking with existing keys if present
|
|
|
|
|
const { existingKeys = [] } = options || {};
|
|
|
|
|
if (existingKeys.length) {
|
|
|
|
|
const exactMatch = existingKeys.includes(sanitizedKey);
|
|
|
|
|
|
|
|
|
|
if (!exactMatch) return sanitizedKey;
|
|
|
|
|
|
|
|
|
|
const keyToIndexMap = generateKeyToIndexMap(existingKeys);
|
|
|
|
|
|
|
|
|
|
const match = sanitizedKey.match(/\d+$/);
|
|
|
|
|
let prefix = sanitizedKey;
|
|
|
|
|
|
|
|
|
|
if (match) {
|
|
|
|
|
prefix = sanitizedKey.slice(0, match.index); // key123 -> key
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (keyToIndexMap.hasOwnProperty(prefix)) {
|
|
|
|
|
return `${prefix}${keyToIndexMap[prefix] + 1}`;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return sanitizedKey;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return sanitizedKey;
|
|
|
|
|
};
|