2021-11-11 06:41:05 +00:00
|
|
|
import Widget from "./widget";
|
|
|
|
|
import IconSVG from "./icon.svg";
|
|
|
|
|
import { GRID_DENSITY_MIGRATION_V1 } from "widgets/constants";
|
|
|
|
|
import { Colors } from "constants/Colors";
|
|
|
|
|
import { ButtonVariantTypes } from "components/constants";
|
|
|
|
|
|
|
|
|
|
export const CONFIG = {
|
|
|
|
|
type: Widget.getWidgetType(),
|
|
|
|
|
name: "Button Group", // The display name which will be made in uppercase and show in the widgets panel ( can have spaces )
|
|
|
|
|
iconSVG: IconSVG,
|
|
|
|
|
needsMeta: false, // Defines if this widget adds any meta properties
|
|
|
|
|
isCanvas: false, // Defines if this widget has a canvas within in which we can drop other widgets
|
|
|
|
|
defaults: {
|
|
|
|
|
rows: 1 * GRID_DENSITY_MIGRATION_V1,
|
|
|
|
|
columns: 6 * GRID_DENSITY_MIGRATION_V1,
|
|
|
|
|
widgetName: "ButtonGroup",
|
|
|
|
|
orientation: "horizontal",
|
|
|
|
|
buttonVariant: ButtonVariantTypes.PRIMARY,
|
|
|
|
|
isVisible: true,
|
|
|
|
|
version: 1,
|
2021-12-14 07:55:58 +00:00
|
|
|
animateLoading: true,
|
2021-11-11 06:41:05 +00:00
|
|
|
groupButtons: {
|
|
|
|
|
groupButton1: {
|
|
|
|
|
label: "Favorite",
|
|
|
|
|
iconName: "heart",
|
|
|
|
|
id: "groupButton1",
|
|
|
|
|
widgetId: "",
|
|
|
|
|
buttonColor: Colors.GREEN,
|
|
|
|
|
buttonType: "SIMPLE",
|
2021-12-08 13:11:13 +00:00
|
|
|
placement: "CENTER",
|
2021-11-11 06:41:05 +00:00
|
|
|
isVisible: true,
|
|
|
|
|
isDisabled: false,
|
|
|
|
|
index: 0,
|
|
|
|
|
menuItems: {},
|
|
|
|
|
},
|
|
|
|
|
groupButton2: {
|
|
|
|
|
label: "Add",
|
|
|
|
|
iconName: "add",
|
|
|
|
|
id: "groupButton2",
|
|
|
|
|
buttonColor: Colors.GREEN,
|
|
|
|
|
buttonType: "SIMPLE",
|
2021-12-08 13:11:13 +00:00
|
|
|
placement: "CENTER",
|
2021-11-11 06:41:05 +00:00
|
|
|
widgetId: "",
|
|
|
|
|
isVisible: true,
|
|
|
|
|
isDisabled: false,
|
|
|
|
|
index: 1,
|
|
|
|
|
menuItems: {},
|
|
|
|
|
},
|
|
|
|
|
groupButton3: {
|
|
|
|
|
label: "More",
|
|
|
|
|
iconName: "more",
|
|
|
|
|
id: "groupButton3",
|
|
|
|
|
buttonType: "MENU",
|
2021-12-08 13:11:13 +00:00
|
|
|
placement: "CENTER",
|
2021-11-11 06:41:05 +00:00
|
|
|
buttonColor: Colors.GREEN,
|
|
|
|
|
widgetId: "",
|
|
|
|
|
isVisible: true,
|
|
|
|
|
isDisabled: false,
|
|
|
|
|
index: 2,
|
|
|
|
|
menuItems: {
|
|
|
|
|
menuItem1: {
|
|
|
|
|
label: "First Option",
|
|
|
|
|
backgroundColor: "#FFFFFF",
|
|
|
|
|
id: "menuItem1",
|
|
|
|
|
widgetId: "",
|
|
|
|
|
onClick: "",
|
|
|
|
|
isVisible: true,
|
|
|
|
|
isDisabled: false,
|
|
|
|
|
index: 0,
|
|
|
|
|
},
|
|
|
|
|
menuItem2: {
|
|
|
|
|
label: "Second Option",
|
|
|
|
|
backgroundColor: "#FFFFFF",
|
|
|
|
|
id: "menuItem2",
|
|
|
|
|
widgetId: "",
|
|
|
|
|
onClick: "",
|
|
|
|
|
isVisible: true,
|
|
|
|
|
isDisabled: false,
|
|
|
|
|
index: 1,
|
|
|
|
|
},
|
|
|
|
|
menuItem3: {
|
|
|
|
|
label: "Delete",
|
|
|
|
|
iconName: "trash",
|
|
|
|
|
iconColor: "#FFFFFF",
|
|
|
|
|
iconAlign: "right",
|
|
|
|
|
textColor: "#FFFFFF",
|
|
|
|
|
backgroundColor: "#DD4B34",
|
|
|
|
|
id: "menuItem3",
|
|
|
|
|
widgetId: "",
|
|
|
|
|
onClick: "",
|
|
|
|
|
isVisible: true,
|
|
|
|
|
isDisabled: false,
|
|
|
|
|
index: 2,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
properties: {
|
|
|
|
|
derived: Widget.getDerivedPropertiesMap(),
|
|
|
|
|
default: Widget.getDefaultPropertiesMap(),
|
|
|
|
|
meta: Widget.getMetaPropertiesMap(),
|
|
|
|
|
config: Widget.getPropertyPaneConfig(),
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default Widget;
|