最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

reactjs - Can't render custom widget for field in react-awesome-query-builder 6.6.x - Stack Overflow

programmeradmin2浏览0评论

I'm using react-awesome-query-builder with the @react-awesome-query-builder/antd package, and I'm trying to create a custom widget for a field called Consents.device. However, no matter what I do, the query builder always renders the default text input instead of my custom component.

Here’s what I’ve done so far:

  1. Registered my custom widget in the widgets section:
import DeviceWidget from "@/components/crm/device-widget";

widgets: {
  ...AntdConfig.widgets,
  device_widget: {
    type: 'text',
    jsType: 'string',
    valueSrc: 'value',
    widget: DeviceWidget,
    valueLabel: 'Choose a device',
    valuePlaceholder: 'Choose a device',
    formatValue: val => `"${val}"`,
    mongoFormatValue: val => val,
  }
}
  1. Registered the widget under types.text.widgets:
types: {
  ...AntdConfig.types,
  text: {
    ...AntdConfig.types.text,
    widgets: {
      ...AntdConfig.types.text.widgets,
      device_widget: {
        widgetProps: {},
        opProps: {},
      },
    },
  },
}
  1. Defined the field like this:
Consents: {
  type: "!struct",
  label: "Consents",
  subfields: {
    device: {
      label: "Device",
      type: "text",
      preferWidgets: ["device_widget"],
      valueSources: ["value"],
      operators: ["equal", "not_equal", "is_empty", "is_not_empty"],
    }
  }
}
  1. My custom widget is a controlled component:
const DeviceWidget = ({ value, setValue, placeholder }) => {
  return (
    <div>
      Device Widget 
    </div>
  );
};

Despite all this, the query builder never renders my custom widget, only the default text input.

I also tried using factory instead of widget, but it didn’t help. I followed the documentation here and here, but nothing seems to work.

Any ideas? Has something changed recently in how custom widgets are supported?

发布评论

评论列表(0)

  1. 暂无评论