import Widget from "../../../canvas/widgets/base" import Tools from "../../../canvas/constants/tools" import { removeKeyFromObject } from "../../../utils/common" import { DownOutlined, UpOutlined } from "@ant-design/icons" class SpinBox extends Widget{ static widgetType = "spin_box" constructor(props) { super(props) this.droppableTags = null // disables drops const newAttrs = removeKeyFromObject("layout", this.state.attrs) this.state = { ...this.state, size: { width: 70, height: 'fit' }, attrs: { ...newAttrs, styling: { ...newAttrs.styling, foregroundColor: { label: "Foreground Color", tool: Tools.COLOR_PICKER, // the tool to display, can be either HTML ELement or a constant string value: "#000", onChange: (value) => { this.setWidgetStyling("color", value) this.setAttrValue("styling.foregroundColor", value) } } }, spinProps: { label: "Properties", display: "horizontal", min: { label: "Min", tool: Tools.NUMBER_INPUT, // the tool to display, can be either HTML ELement or a constant string toolProps: { placeholder: "min" }, value: 0, onChange: (value) => this.setAttrValue("spinProps.min", value) }, max: { label: "Max", tool: Tools.NUMBER_INPUT, toolProps: { placeholder: "max"}, value: 100, onChange: (value) => this.setAttrValue("spinProps.max", value) }, step: { label: "Step", tool: Tools.NUMBER_INPUT, toolProps: { placeholder: "max", stringMode: true, step: "0.1"}, value: 1, onChange: (value) => this.setAttrValue("spinProps.step", value) }, default: { label: "Default", tool: Tools.NUMBER_INPUT, toolProps: { placeholder: "max", stringMode: true, step: "0.1"}, value: 0, onChange: (value) => this.setAttrValue("spinProps.default", value) } }, } } } componentDidMount(){ super.componentDidMount() this.setAttrValue("styling.backgroundColor", "#fff") this.setWidgetName("SpinBox") } getToolbarAttrs(){ const toolBarAttrs = super.getToolbarAttrs() return ({ id: this.__id, widgetName: toolBarAttrs.widgetName, placeHolder: this.state.attrs.placeHolder, size: toolBarAttrs.size, ...this.state.attrs, }) } renderContent(){ return (