2019-11-05 05:09:50 +00:00
|
|
|
import React from "react";
|
2023-05-19 18:37:06 +00:00
|
|
|
import styled from "styled-components";
|
|
|
|
|
import { Option, Select, Text, Icon } from "design-system";
|
chore: upgrade to prettier v2 + enforce import types (#21013)Co-authored-by: Satish Gandham <hello@satishgandham.com> Co-authored-by: Satish Gandham <satish.iitg@gmail.com>
## Description
This PR upgrades Prettier to v2 + enforces TypeScript’s [`import
type`](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-8.html#type-only-imports-and-export)
syntax where applicable. It’s submitted as a separate PR so we can merge
it easily.
As a part of this PR, we reformat the codebase heavily:
- add `import type` everywhere where it’s required, and
- re-format the code to account for Prettier 2’s breaking changes:
https://prettier.io/blog/2020/03/21/2.0.0.html#breaking-changes
This PR is submitted against `release` to make sure all new code by team
members will adhere to new formatting standards, and we’ll have fewer
conflicts when merging `bundle-optimizations` into `release`. (I’ll
merge `release` back into `bundle-optimizations` once this PR is
merged.)
### Why is this needed?
This PR is needed because, for the Lodash optimization from
https://github.com/appsmithorg/appsmith/commit/7cbb12af886621256224be0c93e6a465dd710ad3,
we need to use `import type`. Otherwise, `babel-plugin-lodash` complains
that `LoDashStatic` is not a lodash function.
However, just using `import type` in the current codebase will give you
this:
<img width="962" alt="Screenshot 2023-03-08 at 17 45 59"
src="https://user-images.githubusercontent.com/2953267/223775744-407afa0c-e8b9-44a1-90f9-b879348da57f.png">
That’s because Prettier 1 can’t parse `import type` at all. To parse it,
we need to upgrade to Prettier 2.
### Why enforce `import type`?
Apart from just enabling `import type` support, this PR enforces
specifying `import type` everywhere it’s needed. (Developers will get
immediate TypeScript and ESLint errors when they forget to do so.)
I’m doing this because I believe `import type` improves DX and makes
refactorings easier.
Let’s say you had a few imports like below. Can you tell which of these
imports will increase the bundle size? (Tip: it’s not all of them!)
```ts
// app/client/src/workers/Linting/utils.ts
import { Position } from "codemirror";
import { LintError as JSHintError, LintOptions } from "jshint";
import { get, isEmpty, isNumber, keys, last, set } from "lodash";
```
It’s pretty hard, right?
What about now?
```ts
// app/client/src/workers/Linting/utils.ts
import type { Position } from "codemirror";
import type { LintError as JSHintError, LintOptions } from "jshint";
import { get, isEmpty, isNumber, keys, last, set } from "lodash";
```
Now, it’s clear that only `lodash` will be bundled.
This helps developers to see which imports are problematic, but it
_also_ helps with refactorings. Now, if you want to see where
`codemirror` is bundled, you can just grep for `import \{.*\} from
"codemirror"` – and you won’t get any type-only imports.
This also helps (some) bundlers. Upon transpiling, TypeScript erases
type-only imports completely. In some environment (not ours), this makes
the bundle smaller, as the bundler doesn’t need to bundle type-only
imports anymore.
## Type of change
- Chore (housekeeping or task changes that don't impact user perception)
## How Has This Been Tested?
This was tested to not break the build.
### Test Plan
> Add Testsmith test cases links that relate to this PR
### Issues raised during DP testing
> Link issues raised during DP testing for better visiblity and tracking
(copy link from comments dropped on this PR)
## Checklist:
### Dev activity
- [x] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my own code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [x] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my
feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] PR is being merged under a feature flag
### QA activity:
- [ ] Test plan has been approved by relevant developers
- [ ] Test plan has been peer reviewed by QA
- [ ] Cypress test cases have been added and approved by either SDET or
manual QA
- [ ] Organized project review call with relevant stakeholders after
Round 1/2 of QA
- [ ] Added Test Plan Approved label after reveiwing all Cypress test
---------
Co-authored-by: Satish Gandham <hello@satishgandham.com>
Co-authored-by: Satish Gandham <satish.iitg@gmail.com>
2023-03-16 11:41:47 +00:00
|
|
|
import type { ControlProps } from "./BaseControl";
|
|
|
|
|
import BaseControl from "./BaseControl";
|
2022-02-15 07:34:17 +00:00
|
|
|
import { isNil } from "lodash";
|
2022-05-04 09:45:57 +00:00
|
|
|
import { isDynamicValue } from "utils/DynamicBindingUtils";
|
chore: upgrade to prettier v2 + enforce import types (#21013)Co-authored-by: Satish Gandham <hello@satishgandham.com> Co-authored-by: Satish Gandham <satish.iitg@gmail.com>
## Description
This PR upgrades Prettier to v2 + enforces TypeScript’s [`import
type`](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-8.html#type-only-imports-and-export)
syntax where applicable. It’s submitted as a separate PR so we can merge
it easily.
As a part of this PR, we reformat the codebase heavily:
- add `import type` everywhere where it’s required, and
- re-format the code to account for Prettier 2’s breaking changes:
https://prettier.io/blog/2020/03/21/2.0.0.html#breaking-changes
This PR is submitted against `release` to make sure all new code by team
members will adhere to new formatting standards, and we’ll have fewer
conflicts when merging `bundle-optimizations` into `release`. (I’ll
merge `release` back into `bundle-optimizations` once this PR is
merged.)
### Why is this needed?
This PR is needed because, for the Lodash optimization from
https://github.com/appsmithorg/appsmith/commit/7cbb12af886621256224be0c93e6a465dd710ad3,
we need to use `import type`. Otherwise, `babel-plugin-lodash` complains
that `LoDashStatic` is not a lodash function.
However, just using `import type` in the current codebase will give you
this:
<img width="962" alt="Screenshot 2023-03-08 at 17 45 59"
src="https://user-images.githubusercontent.com/2953267/223775744-407afa0c-e8b9-44a1-90f9-b879348da57f.png">
That’s because Prettier 1 can’t parse `import type` at all. To parse it,
we need to upgrade to Prettier 2.
### Why enforce `import type`?
Apart from just enabling `import type` support, this PR enforces
specifying `import type` everywhere it’s needed. (Developers will get
immediate TypeScript and ESLint errors when they forget to do so.)
I’m doing this because I believe `import type` improves DX and makes
refactorings easier.
Let’s say you had a few imports like below. Can you tell which of these
imports will increase the bundle size? (Tip: it’s not all of them!)
```ts
// app/client/src/workers/Linting/utils.ts
import { Position } from "codemirror";
import { LintError as JSHintError, LintOptions } from "jshint";
import { get, isEmpty, isNumber, keys, last, set } from "lodash";
```
It’s pretty hard, right?
What about now?
```ts
// app/client/src/workers/Linting/utils.ts
import type { Position } from "codemirror";
import type { LintError as JSHintError, LintOptions } from "jshint";
import { get, isEmpty, isNumber, keys, last, set } from "lodash";
```
Now, it’s clear that only `lodash` will be bundled.
This helps developers to see which imports are problematic, but it
_also_ helps with refactorings. Now, if you want to see where
`codemirror` is bundled, you can just grep for `import \{.*\} from
"codemirror"` – and you won’t get any type-only imports.
This also helps (some) bundlers. Upon transpiling, TypeScript erases
type-only imports completely. In some environment (not ours), this makes
the bundle smaller, as the bundler doesn’t need to bundle type-only
imports anymore.
## Type of change
- Chore (housekeeping or task changes that don't impact user perception)
## How Has This Been Tested?
This was tested to not break the build.
### Test Plan
> Add Testsmith test cases links that relate to this PR
### Issues raised during DP testing
> Link issues raised during DP testing for better visiblity and tracking
(copy link from comments dropped on this PR)
## Checklist:
### Dev activity
- [x] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my own code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [x] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my
feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] PR is being merged under a feature flag
### QA activity:
- [ ] Test plan has been approved by relevant developers
- [ ] Test plan has been peer reviewed by QA
- [ ] Cypress test cases have been added and approved by either SDET or
manual QA
- [ ] Organized project review call with relevant stakeholders after
Round 1/2 of QA
- [ ] Added Test Plan Approved label after reveiwing all Cypress test
---------
Co-authored-by: Satish Gandham <hello@satishgandham.com>
Co-authored-by: Satish Gandham <satish.iitg@gmail.com>
2023-03-16 11:41:47 +00:00
|
|
|
import type { DSEventDetail } from "utils/AppsmithUtils";
|
|
|
|
|
import { DSEventTypes, DS_EVENT } from "utils/AppsmithUtils";
|
2022-07-14 05:00:30 +00:00
|
|
|
import { emitInteractionAnalyticsEvent } from "utils/AppsmithUtils";
|
2023-07-25 04:56:33 +00:00
|
|
|
import { getValidationErrorForProperty } from "./utils";
|
2019-09-18 10:19:50 +00:00
|
|
|
|
2023-05-19 18:37:06 +00:00
|
|
|
const FlagWrapper = styled.span`
|
|
|
|
|
font-family: "Twemoji Country Flags";
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
line-height: 19px;
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
position: relative;
|
|
|
|
|
top: 1px;
|
|
|
|
|
overflow: initial !important;
|
|
|
|
|
`;
|
|
|
|
|
|
2023-07-25 04:56:33 +00:00
|
|
|
const ErrorMessage = styled.div`
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
line-height: 14px;
|
|
|
|
|
color: var(--ads-v2-color-fg-error);
|
|
|
|
|
margin-top: 5px;
|
|
|
|
|
`;
|
|
|
|
|
|
2019-09-18 10:19:50 +00:00
|
|
|
class DropDownControl extends BaseControl<DropDownControlProps> {
|
2022-07-14 05:00:30 +00:00
|
|
|
containerRef = React.createRef<HTMLDivElement>();
|
|
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
|
this.containerRef.current?.addEventListener(
|
|
|
|
|
DS_EVENT,
|
|
|
|
|
this.handleAdsEvent as (arg0: Event) => void,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
|
this.containerRef.current?.removeEventListener(
|
|
|
|
|
DS_EVENT,
|
|
|
|
|
this.handleAdsEvent as (arg0: Event) => void,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
handleAdsEvent = (e: CustomEvent<DSEventDetail>) => {
|
|
|
|
|
if (
|
|
|
|
|
e.detail.component === "Dropdown" &&
|
|
|
|
|
e.detail.event === DSEventTypes.KEYPRESS
|
|
|
|
|
) {
|
|
|
|
|
emitInteractionAnalyticsEvent(this.containerRef.current, {
|
|
|
|
|
key: e.detail.meta.key,
|
|
|
|
|
});
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2019-09-18 10:19:50 +00:00
|
|
|
render() {
|
2023-05-19 18:37:06 +00:00
|
|
|
let defaultSelected: string | string[] | undefined = undefined;
|
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
|
|
|
|
2022-05-06 05:04:17 +00:00
|
|
|
if (this.props.isMultiSelect) {
|
2023-05-19 18:37:06 +00:00
|
|
|
defaultSelected = [];
|
2022-05-06 05:04:17 +00:00
|
|
|
}
|
|
|
|
|
|
2023-02-14 16:07:31 +00:00
|
|
|
const options =
|
|
|
|
|
typeof this.props.options === "function"
|
|
|
|
|
? this.props.options(this.props.widgetProperties)
|
|
|
|
|
: this.props?.options || [];
|
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
|
|
|
|
2021-05-06 14:06:41 +00:00
|
|
|
if (this.props.defaultValue) {
|
2022-05-06 05:04:17 +00:00
|
|
|
if (this.props.isMultiSelect) {
|
|
|
|
|
const defaultValueSet = new Set(this.props.defaultValue);
|
2023-05-19 18:37:06 +00:00
|
|
|
defaultSelected = options
|
|
|
|
|
.filter((option) => defaultValueSet.has(option.value))
|
|
|
|
|
.map((option) => option.value);
|
2022-05-06 05:04:17 +00:00
|
|
|
} else {
|
|
|
|
|
defaultSelected = options.find(
|
|
|
|
|
(option) => option.value === this.props.defaultValue,
|
2023-05-19 18:37:06 +00:00
|
|
|
)?.value;
|
2022-05-06 05:04:17 +00:00
|
|
|
}
|
2021-05-06 14:06:41 +00:00
|
|
|
}
|
2021-03-15 12:17:56 +00:00
|
|
|
|
2023-05-19 18:37:06 +00:00
|
|
|
let selected: string | string[];
|
2022-05-04 09:45:57 +00:00
|
|
|
|
2022-05-06 05:04:17 +00:00
|
|
|
if (this.props.isMultiSelect) {
|
|
|
|
|
const propertyValueSet = new Set(this.props.propertyValue);
|
2023-05-19 18:37:06 +00:00
|
|
|
selected = options
|
|
|
|
|
.filter((option) => propertyValueSet.has(option.value))
|
|
|
|
|
.map((option) => option.value);
|
2022-05-06 05:04:17 +00:00
|
|
|
} else {
|
|
|
|
|
const computedValue =
|
|
|
|
|
!isNil(this.props.propertyValue) &&
|
2023-02-14 16:07:31 +00:00
|
|
|
isDynamicValue(this.props.propertyValue) &&
|
|
|
|
|
// "dropdownUsePropertyValue" comes from the property config. This is set to true when
|
|
|
|
|
// the actual propertyValue (not the evaluated) is to be used for finding the option from "options".
|
|
|
|
|
!this.props.dropdownUsePropertyValue
|
2022-05-06 05:04:17 +00:00
|
|
|
? this.props.evaluatedValue
|
|
|
|
|
: this.props.propertyValue;
|
|
|
|
|
|
2023-05-19 18:37:06 +00:00
|
|
|
selected = options.find(
|
|
|
|
|
(option) => option.value === computedValue,
|
|
|
|
|
)?.value;
|
2023-07-25 04:56:33 +00:00
|
|
|
|
|
|
|
|
if (this.props.alwaysShowSelected && !selected) {
|
|
|
|
|
selected = computedValue;
|
|
|
|
|
}
|
2021-03-15 12:17:56 +00:00
|
|
|
}
|
|
|
|
|
|
2023-07-25 04:56:33 +00:00
|
|
|
const errors = getValidationErrorForProperty(
|
|
|
|
|
this.props.widgetProperties,
|
|
|
|
|
this.props.propertyName,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const errorMessage = errors?.[errors.length - 1]?.errorMessage?.message;
|
|
|
|
|
|
2019-09-18 10:19:50 +00:00
|
|
|
return (
|
2023-05-19 18:37:06 +00:00
|
|
|
<div className="w-full h-full" ref={this.containerRef}>
|
|
|
|
|
<Select
|
|
|
|
|
defaultValue={defaultSelected}
|
2022-05-06 05:04:17 +00:00
|
|
|
isMultiSelect={this.props.isMultiSelect}
|
2023-07-25 04:56:33 +00:00
|
|
|
isValid={!errors.length}
|
2023-05-19 18:37:06 +00:00
|
|
|
onDeselect={this.onDeselect}
|
|
|
|
|
onSelect={this.onSelect}
|
|
|
|
|
optionFilterProp="label"
|
|
|
|
|
optionLabelProp={this.props.hideSubText ? "label" : "children"}
|
2022-05-06 05:04:17 +00:00
|
|
|
placeholder={this.props.placeholderText}
|
2023-05-19 18:37:06 +00:00
|
|
|
showSearch={this.props.enableSearch}
|
|
|
|
|
value={selected}
|
|
|
|
|
virtual={this.props.virtual || false}
|
|
|
|
|
>
|
|
|
|
|
{options.map((option, index) => (
|
|
|
|
|
<Option
|
|
|
|
|
className="t--dropdown-option"
|
|
|
|
|
key={index}
|
|
|
|
|
label={option.label}
|
|
|
|
|
value={option.value}
|
|
|
|
|
>
|
2023-06-13 13:00:51 +00:00
|
|
|
<div className="flex flex-row w-full">
|
|
|
|
|
{/* Show Flag if present */}
|
|
|
|
|
{option.leftElement && (
|
|
|
|
|
<FlagWrapper>{option.leftElement}</FlagWrapper>
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
{/* Show icon if present */}
|
|
|
|
|
{option.icon && (
|
|
|
|
|
<Icon className="mr-1" name={option.icon} size="md" />
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
{option.subText ? (
|
|
|
|
|
this.props.hideSubText ? (
|
|
|
|
|
// Show subText below the main text eg - DatePicker control
|
|
|
|
|
<div className="w-full flex flex-col">
|
|
|
|
|
<Text kind="action-m">{option.label}</Text>
|
|
|
|
|
<Text kind="action-s">{option.subText}</Text>
|
|
|
|
|
</div>
|
|
|
|
|
) : (
|
|
|
|
|
// Show subText to the right side eg - Label fontsize control
|
|
|
|
|
<div className="w-full flex justify-between items-end">
|
|
|
|
|
<Text kind="action-m">{option.label}</Text>
|
|
|
|
|
<Text kind="action-s">{option.subText}</Text>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
2023-05-19 18:37:06 +00:00
|
|
|
) : (
|
2023-06-13 13:00:51 +00:00
|
|
|
// Only show the label eg - Auto height control
|
|
|
|
|
<Text kind="action-m">{option.label}</Text>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
2023-05-19 18:37:06 +00:00
|
|
|
</Option>
|
|
|
|
|
))}
|
|
|
|
|
</Select>
|
2023-07-25 04:56:33 +00:00
|
|
|
{errorMessage && (
|
|
|
|
|
<ErrorMessage data-testid="t---dropdown-control-error">
|
|
|
|
|
{errorMessage}
|
|
|
|
|
</ErrorMessage>
|
|
|
|
|
)}
|
2023-05-19 18:37:06 +00:00
|
|
|
</div>
|
2019-09-18 10:19:50 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-19 18:37:06 +00:00
|
|
|
onSelect = (value?: string): void => {
|
2022-02-15 07:34:17 +00:00
|
|
|
if (!isNil(value)) {
|
2022-05-06 05:04:17 +00:00
|
|
|
let selectedValue: string | string[] = this.props.propertyValue;
|
|
|
|
|
if (this.props.isMultiSelect) {
|
|
|
|
|
if (Array.isArray(selectedValue)) {
|
|
|
|
|
const index = selectedValue.indexOf(value);
|
|
|
|
|
if (index >= 0) {
|
|
|
|
|
selectedValue = [
|
|
|
|
|
...selectedValue.slice(0, index),
|
|
|
|
|
...selectedValue.slice(index + 1),
|
|
|
|
|
];
|
|
|
|
|
} else {
|
|
|
|
|
selectedValue = [...selectedValue, value];
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
selectedValue = [selectedValue, value];
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
selectedValue = value;
|
|
|
|
|
}
|
2023-05-19 18:37:06 +00:00
|
|
|
this.updateProperty(this.props.propertyName, selectedValue);
|
2022-05-06 05:04:17 +00:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2023-05-19 18:37:06 +00:00
|
|
|
onDeselect = (value?: string) => {
|
2022-05-06 05:04:17 +00:00
|
|
|
if (!isNil(value)) {
|
|
|
|
|
let selectedValue: string | string[] = this.props.propertyValue;
|
|
|
|
|
if (this.props.isMultiSelect) {
|
|
|
|
|
if (Array.isArray(selectedValue)) {
|
|
|
|
|
const index = selectedValue.indexOf(value);
|
|
|
|
|
if (index >= 0) {
|
|
|
|
|
selectedValue = [
|
|
|
|
|
...selectedValue.slice(0, index),
|
|
|
|
|
...selectedValue.slice(index + 1),
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
selectedValue = [];
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
selectedValue = "";
|
|
|
|
|
}
|
|
|
|
|
this.updateProperty(this.props.propertyName, selectedValue);
|
2019-09-18 10:19:50 +00:00
|
|
|
}
|
2019-10-31 05:28:11 +00:00
|
|
|
};
|
2019-09-18 10:19:50 +00:00
|
|
|
|
2021-03-15 12:17:56 +00:00
|
|
|
isOptionSelected = (selectedOption: any) => {
|
2019-11-05 05:09:50 +00:00
|
|
|
return selectedOption.value === this.props.propertyValue;
|
|
|
|
|
};
|
2019-09-18 10:19:50 +00:00
|
|
|
|
2020-04-14 05:35:16 +00:00
|
|
|
static getControlType() {
|
2019-09-18 10:19:50 +00:00
|
|
|
return "DROP_DOWN";
|
|
|
|
|
}
|
2022-06-03 05:07:02 +00:00
|
|
|
|
2022-07-07 05:37:50 +00:00
|
|
|
static canDisplayValueInUI(
|
|
|
|
|
config: DropDownControlProps,
|
|
|
|
|
value: any,
|
|
|
|
|
): boolean {
|
2023-02-14 16:07:31 +00:00
|
|
|
const options =
|
|
|
|
|
typeof config?.options === "function"
|
|
|
|
|
? config?.options(config.widgetProperties)
|
|
|
|
|
: config?.options || [];
|
|
|
|
|
|
2022-07-07 05:37:50 +00:00
|
|
|
const allowedValues = new Set(
|
2023-02-14 16:07:31 +00:00
|
|
|
options?.map((x: { value: string | number }) => x.value.toString()),
|
2022-07-07 05:37:50 +00:00
|
|
|
);
|
|
|
|
|
if (config.isMultiSelect) {
|
|
|
|
|
try {
|
|
|
|
|
const values = JSON.parse(value);
|
|
|
|
|
for (const x of values) {
|
|
|
|
|
if (!allowedValues.has(x.toString())) return false;
|
|
|
|
|
}
|
|
|
|
|
} catch {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2022-06-03 05:07:02 +00:00
|
|
|
return true;
|
2022-07-07 05:37:50 +00:00
|
|
|
} else {
|
|
|
|
|
return allowedValues.has(value);
|
|
|
|
|
}
|
2022-06-03 05:07:02 +00:00
|
|
|
}
|
2019-09-18 10:19:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface DropDownControlProps extends ControlProps {
|
2023-02-14 16:07:31 +00:00
|
|
|
options?: any[] | ((props: ControlProps["widgetProperties"]) => any[]);
|
2021-05-06 14:06:41 +00:00
|
|
|
defaultValue?: string;
|
2023-05-19 18:37:06 +00:00
|
|
|
virtual?: boolean;
|
2019-11-05 05:09:50 +00:00
|
|
|
placeholderText: string;
|
2022-05-06 05:04:17 +00:00
|
|
|
searchPlaceholderText: string;
|
|
|
|
|
isMultiSelect?: boolean;
|
2021-07-15 12:50:01 +00:00
|
|
|
dropdownHeight?: string;
|
|
|
|
|
enableSearch?: boolean;
|
2019-11-05 05:09:50 +00:00
|
|
|
propertyValue: string;
|
2021-03-24 08:53:39 +00:00
|
|
|
optionWidth?: string;
|
2021-10-11 06:01:05 +00:00
|
|
|
hideSubText?: boolean;
|
2023-02-14 16:07:31 +00:00
|
|
|
dropdownUsePropertyValue?: boolean;
|
2023-07-25 04:56:33 +00:00
|
|
|
alwaysShowSelected?: boolean;
|
2019-09-18 10:19:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default DropDownControl;
|