## Description Rename `design-system` package to `@appsmith/ads` ## Automation /ok-to-test tags="@tag.All" ### 🔍 Cypress test results <!-- This is an auto-generated comment: Cypress test results --> > [!TIP] > 🟢 🟢 🟢 All cypress tests have passed! 🎉 🎉 🎉 > Workflow run: <https://github.com/appsmithorg/appsmith/actions/runs/10319507327> > Commit: 65d9664dd75b750496458a6e1652e0da858e1fc6 > <a href="https://internal.appsmith.com/app/cypress-dashboard/rundetails-65890b3c81d7400d08fa9ee5?branch=master&workflowId=10319507327&attempt=1" target="_blank">Cypress dashboard</a>. > Tags: `@tag.All` > Spec: > <hr>Fri, 09 Aug 2024 13:47:50 UTC <!-- end of auto-generated comment: Cypress test results --> ## Communication Should the DevRel and Marketing teams inform users about this change? - [ ] Yes - [x] No
52 lines
1.4 KiB
TypeScript
52 lines
1.4 KiB
TypeScript
import React from "react";
|
|
import type { ControlData, ControlProps } from "./BaseControl";
|
|
import BaseControl from "./BaseControl";
|
|
import type { DropdownOption } from "components/constants";
|
|
import { KeyValueComponent } from "./KeyValueComponent";
|
|
import { isDynamicValue } from "utils/DynamicBindingUtils";
|
|
import type { SegmentedControlOption } from "@appsmith/ads";
|
|
|
|
class OptionControl extends BaseControl<ControlProps> {
|
|
render() {
|
|
return (
|
|
<KeyValueComponent
|
|
pairs={this.props.propertyValue}
|
|
updatePairs={this.updateOptions}
|
|
/>
|
|
);
|
|
}
|
|
|
|
updateOptions = (
|
|
options: SegmentedControlOption[],
|
|
isUpdatedViaKeyboard = false,
|
|
) => {
|
|
this.updateProperty("options", options, isUpdatedViaKeyboard);
|
|
};
|
|
|
|
static getControlType() {
|
|
return "OPTION_INPUT";
|
|
}
|
|
|
|
// TODO: Fix this the next time the file is edited
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
static canDisplayValueInUI(config: ControlData, value: any): boolean {
|
|
if (isDynamicValue(value)) return false;
|
|
|
|
try {
|
|
const pairs: DropdownOption[] = JSON.parse(value);
|
|
for (const x of pairs) {
|
|
const keys = Object.keys(x);
|
|
if (!keys.includes("label") || !keys.includes("value")) {
|
|
return false;
|
|
}
|
|
}
|
|
} catch {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|
|
|
|
export default OptionControl;
|