33 lines
997 B
TypeScript
33 lines
997 B
TypeScript
|
|
import WidgetQueryGeneratorForm from "components/editorComponents/WidgetQueryGeneratorForm";
|
||
|
|
import React from "react";
|
||
|
|
import type { ControlProps } from "./BaseControl";
|
||
|
|
import BaseControl from "./BaseControl";
|
||
|
|
class OneClickBindingControl extends BaseControl<OneClickBindingControlProps> {
|
||
|
|
constructor(props: OneClickBindingControlProps) {
|
||
|
|
super(props);
|
||
|
|
}
|
||
|
|
|
||
|
|
static getControlType() {
|
||
|
|
return "ONE_CLICK_BINDING_CONTROL";
|
||
|
|
}
|
||
|
|
|
||
|
|
public onUpdatePropertyValue(value: string) {
|
||
|
|
this.props.onPropertyChange?.(this.props.propertyName, value, false, true);
|
||
|
|
}
|
||
|
|
|
||
|
|
public render() {
|
||
|
|
return (
|
||
|
|
<WidgetQueryGeneratorForm
|
||
|
|
entityId={this.props.widgetProperties.widgetId}
|
||
|
|
expectedType={this.props.expected?.autocompleteDataType}
|
||
|
|
onUpdate={(value: string) => this.onUpdatePropertyValue(value)}
|
||
|
|
propertyPath={this.props.propertyName}
|
||
|
|
/>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
export default OneClickBindingControl;
|
||
|
|
|
||
|
|
export type OneClickBindingControlProps = ControlProps;
|