2022-02-04 10:59:54 +00:00
|
|
|
import React from "react";
|
2020-04-15 11:42:11 +00:00
|
|
|
import BaseControl, { ControlProps } from "./BaseControl";
|
2022-02-04 10:59:54 +00:00
|
|
|
import { StyledPropertyPaneButton } from "./StyledControls";
|
2020-04-15 11:42:11 +00:00
|
|
|
import styled from "constants/DefaultTheme";
|
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
|
|
|
import {
|
|
|
|
|
BaseItemProps,
|
|
|
|
|
DroppableComponent,
|
|
|
|
|
RenderComponentProps,
|
|
|
|
|
} from "components/ads/DraggableListComponent";
|
2022-03-17 10:19:17 +00:00
|
|
|
import orderBy from "lodash/orderBy";
|
|
|
|
|
import isString from "lodash/isString";
|
|
|
|
|
import isUndefined from "lodash/isUndefined";
|
2022-04-07 16:19:12 +00:00
|
|
|
import includes from "lodash/includes";
|
|
|
|
|
import map from "lodash/map";
|
2020-12-02 12:53:51 +00:00
|
|
|
import * as Sentry from "@sentry/react";
|
2021-03-15 12:17:56 +00:00
|
|
|
import { Category, Size } from "components/ads/Button";
|
2021-09-21 07:55:56 +00:00
|
|
|
import { useDispatch } from "react-redux";
|
|
|
|
|
import { ReduxActionTypes } from "constants/ReduxActionConstants";
|
2022-02-04 10:59:54 +00:00
|
|
|
import { DraggableListCard } from "components/ads/DraggableListCard";
|
2020-04-15 11:42:11 +00:00
|
|
|
|
|
|
|
|
const StyledPropertyPaneButtonWrapper = styled.div`
|
|
|
|
|
display: flex;
|
|
|
|
|
width: 100%;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
`;
|
|
|
|
|
|
2020-05-07 10:51:37 +00:00
|
|
|
const TabsWrapper = styled.div`
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
`;
|
|
|
|
|
|
2022-03-24 10:01:45 +00:00
|
|
|
type DroppableItem = BaseItemProps;
|
2020-04-15 11:42:11 +00:00
|
|
|
|
2021-09-21 07:55:56 +00:00
|
|
|
function AddTabButtonComponent({ widgetId }: any) {
|
|
|
|
|
const dispatch = useDispatch();
|
|
|
|
|
const addOption = () => {
|
|
|
|
|
dispatch({
|
|
|
|
|
type: ReduxActionTypes.WIDGET_ADD_NEW_TAB_CHILD,
|
|
|
|
|
payload: {
|
|
|
|
|
widgetId,
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
return (
|
|
|
|
|
<StyledPropertyPaneButtonWrapper>
|
|
|
|
|
<StyledPropertyPaneButton
|
|
|
|
|
category={Category.tertiary}
|
2022-04-07 16:19:12 +00:00
|
|
|
className="t--add-tab-btn"
|
2021-09-21 07:55:56 +00:00
|
|
|
icon="plus"
|
|
|
|
|
onClick={addOption}
|
|
|
|
|
size={Size.medium}
|
|
|
|
|
tag="button"
|
|
|
|
|
text="Add a Tab"
|
|
|
|
|
type="button"
|
|
|
|
|
/>
|
|
|
|
|
</StyledPropertyPaneButtonWrapper>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
function TabControlComponent(props: RenderComponentProps<DroppableItem>) {
|
2022-02-04 10:59:54 +00:00
|
|
|
const { index, item } = props;
|
2021-09-21 07:55:56 +00:00
|
|
|
const dispatch = useDispatch();
|
|
|
|
|
const deleteOption = () => {
|
|
|
|
|
dispatch({
|
|
|
|
|
type: ReduxActionTypes.WIDGET_DELETE_TAB_CHILD,
|
|
|
|
|
payload: { ...item, index },
|
|
|
|
|
});
|
2022-04-07 16:19:12 +00:00
|
|
|
if (props.deleteOption) props.deleteOption(index);
|
2021-09-21 07:55:56 +00:00
|
|
|
};
|
|
|
|
|
|
2020-04-15 11:42:11 +00:00
|
|
|
return (
|
2022-02-04 10:59:54 +00:00
|
|
|
<DraggableListCard
|
|
|
|
|
{...props}
|
|
|
|
|
deleteOption={deleteOption}
|
|
|
|
|
isDelete
|
|
|
|
|
placeholder="Tab Title"
|
|
|
|
|
/>
|
2020-04-15 11:42:11 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-04 10:59:54 +00:00
|
|
|
type State = {
|
|
|
|
|
focusedIndex: number | null;
|
2022-04-07 16:19:12 +00:00
|
|
|
duplicateTabIds: string[];
|
2022-02-04 10:59:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class TabControl extends BaseControl<ControlProps, State> {
|
|
|
|
|
constructor(props: ControlProps) {
|
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
|
|
this.state = {
|
|
|
|
|
focusedIndex: null,
|
2022-04-07 16:19:12 +00:00
|
|
|
duplicateTabIds: this.getDuplicateTabIds(props.propertyValue),
|
2022-02-04 10:59:54 +00:00
|
|
|
};
|
|
|
|
|
}
|
2022-04-07 16:19:12 +00:00
|
|
|
|
|
|
|
|
getDuplicateTabIds = (propertyValue: ControlProps["propertyValue"]) => {
|
|
|
|
|
const duplicateTabIds = [];
|
|
|
|
|
const tabIds = Object.keys(propertyValue);
|
|
|
|
|
const tabNames = map(propertyValue, "label");
|
|
|
|
|
|
|
|
|
|
for (let index = 0; index < tabNames.length; index++) {
|
|
|
|
|
const currLabel = tabNames[index] as string;
|
|
|
|
|
const duplicateValueIndex = tabNames.indexOf(currLabel);
|
|
|
|
|
if (duplicateValueIndex !== index) {
|
|
|
|
|
// get tab id from propertyValue index
|
|
|
|
|
duplicateTabIds.push(propertyValue[tabIds[index]].id);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return duplicateTabIds;
|
|
|
|
|
};
|
|
|
|
|
|
2020-12-02 12:53:51 +00:00
|
|
|
componentDidMount() {
|
|
|
|
|
this.migrateTabData(this.props.propertyValue);
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-04 10:59:54 +00:00
|
|
|
componentDidUpdate(prevProps: ControlProps): void {
|
|
|
|
|
//on adding a new column last column should get focused
|
|
|
|
|
if (
|
|
|
|
|
Object.keys(prevProps.propertyValue).length + 1 ===
|
|
|
|
|
Object.keys(this.props.propertyValue).length
|
|
|
|
|
) {
|
|
|
|
|
this.updateFocus(Object.keys(this.props.propertyValue).length - 1, true);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-02 12:53:51 +00:00
|
|
|
migrateTabData(
|
|
|
|
|
tabData: Array<{
|
|
|
|
|
id: string;
|
|
|
|
|
label: string;
|
|
|
|
|
}>,
|
|
|
|
|
) {
|
|
|
|
|
// Added a migration script for older tab data that was strings
|
|
|
|
|
// deprecate after enough tabs have moved to the new format
|
2022-03-17 10:19:17 +00:00
|
|
|
if (isString(tabData)) {
|
2020-12-02 12:53:51 +00:00
|
|
|
try {
|
|
|
|
|
const parsedData: Array<{
|
|
|
|
|
sid: string;
|
|
|
|
|
label: string;
|
|
|
|
|
}> = JSON.parse(tabData);
|
|
|
|
|
this.updateProperty(this.props.propertyName, parsedData);
|
|
|
|
|
return parsedData;
|
|
|
|
|
} catch (error) {
|
|
|
|
|
Sentry.captureException({
|
|
|
|
|
message: "Tab Migration Failed",
|
|
|
|
|
oldData: this.props.propertyValue,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
return this.props.propertyValue;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-17 10:19:17 +00:00
|
|
|
getTabItems = () => {
|
2022-04-07 16:19:12 +00:00
|
|
|
let menuItems: Array<{
|
2022-03-17 10:19:17 +00:00
|
|
|
id: string;
|
|
|
|
|
label: string;
|
2022-04-07 16:19:12 +00:00
|
|
|
isVisible?: boolean;
|
|
|
|
|
isDuplicateLabel?: boolean;
|
2022-03-17 10:19:17 +00:00
|
|
|
}> =
|
|
|
|
|
isString(this.props.propertyValue) ||
|
|
|
|
|
isUndefined(this.props.propertyValue)
|
|
|
|
|
? []
|
|
|
|
|
: Object.values(this.props.propertyValue);
|
2022-04-07 16:19:12 +00:00
|
|
|
menuItems = orderBy(menuItems, ["index"], ["asc"]);
|
|
|
|
|
menuItems = menuItems.map((tab: DroppableItem) => ({
|
|
|
|
|
...tab,
|
|
|
|
|
isDuplicateLabel: includes(this.state.duplicateTabIds, tab.id),
|
|
|
|
|
}));
|
|
|
|
|
return menuItems;
|
2022-03-17 10:19:17 +00:00
|
|
|
};
|
|
|
|
|
|
2021-04-27 07:16:54 +00:00
|
|
|
updateItems = (items: Array<Record<string, any>>) => {
|
|
|
|
|
const tabsObj = items.reduce((obj: any, each: any, index: number) => {
|
|
|
|
|
obj[each.id] = {
|
|
|
|
|
...each,
|
|
|
|
|
index,
|
|
|
|
|
};
|
|
|
|
|
return obj;
|
|
|
|
|
}, {});
|
|
|
|
|
this.updateProperty(this.props.propertyName, tabsObj);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
onEdit = (index: number) => {
|
2022-03-17 10:19:17 +00:00
|
|
|
const tabs = this.getTabItems();
|
2021-04-27 07:16:54 +00:00
|
|
|
const tabToChange = tabs[index];
|
|
|
|
|
this.props.openNextPanel({
|
|
|
|
|
index,
|
|
|
|
|
...tabToChange,
|
|
|
|
|
propPaneId: this.props.widgetProperties.widgetId,
|
|
|
|
|
});
|
2020-04-15 11:42:11 +00:00
|
|
|
};
|
2022-03-17 10:19:17 +00:00
|
|
|
render() {
|
2020-04-15 11:42:11 +00:00
|
|
|
return (
|
2020-05-07 10:51:37 +00:00
|
|
|
<TabsWrapper>
|
2020-04-15 11:42:11 +00:00
|
|
|
<DroppableComponent
|
2022-04-07 16:19:12 +00:00
|
|
|
deleteOption={this.deleteOption}
|
2022-02-04 10:59:54 +00:00
|
|
|
fixedHeight={370}
|
|
|
|
|
focusedIndex={this.state.focusedIndex}
|
2021-03-29 15:47:22 +00:00
|
|
|
itemHeight={45}
|
2022-03-17 10:19:17 +00:00
|
|
|
items={this.getTabItems()}
|
2021-04-28 10:28:39 +00:00
|
|
|
onEdit={this.onEdit}
|
2020-04-15 11:42:11 +00:00
|
|
|
renderComponent={TabControlComponent}
|
2021-02-26 06:17:21 +00:00
|
|
|
toggleVisibility={this.toggleVisibility}
|
2022-02-04 10:59:54 +00:00
|
|
|
updateFocus={this.updateFocus}
|
2021-04-28 10:28:39 +00:00
|
|
|
updateItems={this.updateItems}
|
|
|
|
|
updateOption={this.updateOption}
|
2020-04-15 11:42:11 +00:00
|
|
|
/>
|
2021-09-21 07:55:56 +00:00
|
|
|
<AddTabButtonComponent
|
|
|
|
|
widgetId={this.props.widgetProperties.widgetId}
|
|
|
|
|
/>
|
2020-05-07 10:51:37 +00:00
|
|
|
</TabsWrapper>
|
2020-04-15 11:42:11 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-26 06:17:21 +00:00
|
|
|
toggleVisibility = (index: number) => {
|
2022-03-17 10:19:17 +00:00
|
|
|
const tabs = this.getTabItems();
|
2021-02-26 06:17:21 +00:00
|
|
|
const isVisible = tabs[index].isVisible === true ? false : true;
|
|
|
|
|
const updatedTabs = tabs.map((tab, tabIndex) => {
|
|
|
|
|
if (index === tabIndex) {
|
|
|
|
|
return {
|
|
|
|
|
...tab,
|
|
|
|
|
isVisible: isVisible,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
return tab;
|
|
|
|
|
});
|
|
|
|
|
this.updateProperty(this.props.propertyName, updatedTabs);
|
|
|
|
|
};
|
|
|
|
|
|
2022-04-07 16:19:12 +00:00
|
|
|
deleteOption = (index: number) => {
|
|
|
|
|
const tabIds = Object.keys(this.props.propertyValue);
|
|
|
|
|
const newPropertyValue = { ...this.props.propertyValue };
|
|
|
|
|
// detele current item from propertyValue
|
|
|
|
|
delete newPropertyValue[tabIds[index]];
|
|
|
|
|
const duplicateTabIds = this.getDuplicateTabIds(newPropertyValue);
|
|
|
|
|
this.setState({ duplicateTabIds });
|
|
|
|
|
};
|
|
|
|
|
|
2020-04-15 11:42:11 +00:00
|
|
|
updateOption = (index: number, updatedLabel: string) => {
|
2022-03-17 10:19:17 +00:00
|
|
|
const tabsArray = this.getTabItems();
|
2021-09-21 07:55:56 +00:00
|
|
|
const { id: itemId } = tabsArray[index];
|
2021-04-27 07:16:54 +00:00
|
|
|
this.updateProperty(
|
|
|
|
|
`${this.props.propertyName}.${itemId}.label`,
|
|
|
|
|
updatedLabel,
|
|
|
|
|
);
|
2022-04-07 16:19:12 +00:00
|
|
|
// check entered label is unique or duplicate
|
|
|
|
|
const tabNames = map(tabsArray, "label");
|
|
|
|
|
let duplicateTabIds = [...this.state.duplicateTabIds];
|
|
|
|
|
// if duplicate, add into array
|
|
|
|
|
if (includes(tabNames, updatedLabel)) {
|
|
|
|
|
duplicateTabIds.push(itemId);
|
|
|
|
|
this.setState({ duplicateTabIds });
|
|
|
|
|
} else {
|
|
|
|
|
duplicateTabIds = duplicateTabIds.filter((id) => id !== itemId);
|
|
|
|
|
this.setState({ duplicateTabIds });
|
|
|
|
|
}
|
2020-04-15 11:42:11 +00:00
|
|
|
};
|
|
|
|
|
|
2022-02-04 10:59:54 +00:00
|
|
|
updateFocus = (index: number, isFocused: boolean) => {
|
|
|
|
|
this.setState({ focusedIndex: isFocused ? index : null });
|
|
|
|
|
};
|
|
|
|
|
|
2020-04-29 10:29:02 +00:00
|
|
|
static getControlType() {
|
2020-04-15 11:42:11 +00:00
|
|
|
return "TABS_INPUT";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default TabControl;
|