A dropdown component that takes care of all the annoying bits for you, with added support for programmatic triggers on top.
---import { Dropdown, Button } from 'studiocms:ui/components';---
<Dropdown id='dropdown' options={[ { label: 'Option 1', value: 'opt-1'}, { label: 'Option 2', value: 'opt-2'}, ]}> <Button color='primary'> Trigger Dropdown </Button></Dropdown>
import { import DropdownHelper
DropdownHelper } from 'studiocms:ui/components';
const const dropdown: any
dropdown = new import DropdownHelper
DropdownHelper('dropdown');
You can change the dropdowns position by supplying the align
prop.
---import { Dropdown, Button } from 'studiocms:ui/components';---
<Dropdown id='dropdown' options={[ { label: 'Option 1', value: 'opt-1'}, { label: 'Option 2', value: 'opt-2'}, ]} align='start'> <Button color='primary'> Start-aligned </Button></Dropdown>
<!-- Other buttons omitted for simplicity -->
import { import DropdownHelper
DropdownHelper } from 'studiocms:ui/components';
const const dropdown: any
dropdown = new import DropdownHelper
DropdownHelper('dropdown');
You can tell the dropdown wrapper to only show the dropdown when it’s children are right-clicked:
---import { Dropdown, Button } from 'studiocms:ui/components';---
<Dropdown id='dropdown' options={[ { label: 'Option 1', value: 'opt-1'}, { label: 'Option 2', value: 'opt-2'}, ]} triggerOn='right'> <Button color='primary'> Right Click </Button></Dropdown>
import { import DropdownHelper
DropdownHelper } from 'studiocms:ui/components';
const const dropdown: any
dropdown = new import DropdownHelper
DropdownHelper('dropdown');
You can disable a dropdown by passing the disabled
prop.
<Dropdown disabled {/* ... */}> <!-- ... --></Dropdown>
No, you read that right. You can customize the options too. You can individually disable them, turn them into links and also change their color to any of the default colors:
---import { Dropdown, Button } from 'studiocms:ui/components';---
<Dropdown id='dropdown' options={[ { label: 'Default', value: 'default', color: 'default' }, { label: 'Primary', value: 'primary', color: 'primary' }, { label: 'Success', value: 'success', color: 'success' }, { label: 'Warning', value: 'warning', color: 'warning' }, { label: 'Danger', value: 'danger', color: 'danger' }, { label: 'Info', value: 'info', color: 'info' }, { label: 'Monochrome', value: 'mono', color: 'mono' }, { label: 'Disabled', value: 'disabled', disabled: true }, { label: 'As Link', value: 'custom-href', href: '/' }, ]}> <Button color='primary'> Customized Options </Button></Dropdown>
import { import DropdownHelper
DropdownHelper } from 'studiocms:ui/components';
const const dropdown: any
dropdown = new import DropdownHelper
DropdownHelper('dropdown');
The dropdown items also support icons. You can pass an icon name to the option object:
---import { Dropdown, Button } from 'studiocms:ui/components';---
<Dropdown id='dropdown' options={[ { label: 'Notifications', value: 'notifications', icon: 'bell' }, { label: 'Settings', value: 'settings', icon: 'cog-6-tooth' }, { label: 'Profile', value: 'profile', icon: 'user' }, ]}> <Button color='primary'> Customized Icons </Button></Dropdown>
import { import DropdownHelper
DropdownHelper } from 'studiocms:ui/components';
const const dropdown: any
dropdown = new import DropdownHelper
DropdownHelper('dropdown');
You know how, this entire page, we’ve been assigning our DropdownHelper
to a variable? There’s a reason for that. The DropdownHelper allows
you to access some built-in functions for programmatically toggling, showing and hiding the dropdown. You can even register a callback for when one of the
dropdowns options has been clicked!
import { import DropdownHelper
DropdownHelper } from 'studiocms:ui/components';
const const dropdown: any
dropdown = new import DropdownHelper
DropdownHelper('dropdown');
const dropdown: any
dropdown.any
registerClickCallback((value: any
value) => { // `value` will be the value you gave your option in the dropdown wrapper. any
console.any
log(value: any
value);});
// You can toggle the dropdown like this:const dropdown: any
dropdown.any
toggle();
// Instead of toggling, you can simply show or hide the dropdown:const dropdown: any
dropdown.any
show();const dropdown: any
dropdown.any
hide();