Button
Brizy's control button features a panel button that can trigger a click event based on user interaction.
Example of the button
:
Parameters
Name | Type | Default | Description |
---|---|---|---|
id | string | - | The identifier used to separate the buttons. |
type | string | - | Type should be "button" to use this control. |
className? | string | - | The custom CSS class name that will be set on the control. It can be used to modify the control styles. |
position? | number | - | The position of the control in toolbar. |
roles? | Array<Role> | - | Render the control only if the current user's role matches one of the roles in the provided array. type Role = "admin" | "viewer" | "editor" | "designer" | "manager" |
devices? | "all" | "desktop" | "responsive" | "all" | Define the devices where the control will be rendered. "all" renders the control on all devices. "desktop" renders the control only on desktop devices. "responsive" renders the control on both tablet and mobile devices. |
disabled? | boolean | false | Configure the condition under which the control is disabled or enabled. 0 |
onClick | function | - | Function to be called when the button is clicked. |
config.icon | string | - | The icon name of the button. |
config?.text | string | - | The text displayed on the button. |
config?.reverse | boolean | false | Determines whether the button layout is reversed. |
config?.reverseTheme | boolean | false | Configures whether the theme is reversed for the button. |
config?.title | string | - | The tooltip title of the button. |
Basic example
Standard definition with only the required keys. This control will be displayed on all devices.
The onClick
function is triggered when the button is clicked.
{
id: "duplicate",
type: "button",
onClick: () => {}
}
Return value
The button
control in Brizy serves as an interactive element that triggers an action when clicked and does not return a value.
Usage
Class name example
Adding a CSS class to the control's DOM node.
{
id: "duplicate",
type: "button",
onClick: () => {},
className: "myButton"
}
Roles example
Show the control only to users with admin and designer privileges.
{
id: "duplicate",
type: "button",
onClick: () => {},
roles: ["admin", "designer"]
}
Devices examples
It will be rendered on all devices. This value can be skipped because it is set to "all"
by default.
{
id: "duplicate",
type: "button",
onClick: () => {},
devices: "all"
}
Rendering will occur only on desktop
.
{
id: "duplicate",
type: "button",
onClick: () => {},
devices: "desktop"
}
The display is limited to responsive modes, specifically tablet
and mobile
.
{
id: "duplicate",
type: "button",
onClick: () => {},
devices: "responsive"
}
Disabled examples
Control will be disabled. Normally, here should be your dynamic condition.
{
id: "duplicate",
type: "button",
onClick: () => {},
disabled: true
}
Control will be disabled when videoType
variable will be "custom"
.
getValue
is a getter function that allows us to retrieve the value of controls by their id.
"videoType"
is the id of the "select"
control below.
const getToolbarContols = ({ getValue }) => {
const videoType = getValue("videoType");
return [
{
id: "videoType",
type: "select",
choices: [
{ title: "Youtube", value: "youtube" },
{ title: "Custom", value: "custom" },
],
},
{
id: "duplicate",
type: "button",
onClick: () => {},
disabled: videoType === "custom",
},
];
};
Config icon
example
The icon
property specifies the icon to be used for the button.
Here, "nc-add"
is the name of the icon.
{
id: "duplicate",
type: "button",
onClick: () => {},
config: {
icon: "nc-add"
}
}
Config text
example
The text
property specifies the text displayed on the button.
{
id: "duplicate",
type: "button",
onClick: () => {},
config: {
text: "example"
}
}
Config reverse
example
When set to true
, the layout is reversed.
When set to false
, the layout is not reversed.
{
id: "duplicate",
type: "button",
onClick: () => {},
config: {
reverse: true
}
}
Config reverseTheme
example
When set to true
, the theme is reversed.
When set to false
, the theme is not reversed.
{
id: "duplicate",
type: "button",
onClick: () => {},
config: {
reverseTheme: true
}
}
Config title
example
The title
property specifies the tooltip text for the button.
{
id: "duplicate",
type: "button",
onClick: () => {},
config: {
title: "example"
}
}