An Addon to add a button from within any react functional component to the storybook toolbar.
Note that this addon will only work with react app.
within .storybook/main.js:
module.exports = {
addons: ['storybook-addon-toolbar-actions/register'],
};within any functional component:
To add icon:
import { useToolbarActions } from 'storybook-addon-toolbar-actions';
import AcUnitIcon from '@material-ui/icons/AcUnit';
export const WithIcon = () => {
useToolbarActions(
'icon-id',
<AcUnitIcon style={{ fill: 'currentColor' }} />,
() => {
console.log('clicked');
},
);
return <button />;
};To add option list:
import { useToolbarActions } from 'storybook-addon-toolbar-actions';
import AcUnitIcon from '@material-ui/icons/AcUnit';
export const WithOptions = () => {
const [options, setOptions] = useState<ToolbarActionOption[]>([
{ key: 'name', value: 'val' },
{ key: 'name2', value: 'val' },
]);
useToolbarActions(
'icon-id',
<AcUnitIcon style={{ fill: 'currentColor' }} />,
{
options,
onClick:(options, option) => {
setOptions(options);
console.log(option);
},
},
);
return <button />;
};- active?: boolean;
- options?: ToolbarActionOption[];
- closeOptionListOnClick?: boolean;
- group?: string | number;
- setToKnob?: string;
- stateKnobValues
- multiChoice?: boolean;
Will activate the storybook IconButton indicator.
If set a dropdown list will be open under the button:
Will close the option dropdown list when option clicked.
When multiChoice set to
truethecloseOptionListOnClickoption has no effect.
Use this option to sort and group button in their container, when set the Separator will be added between button.
The value of this option will be used for knob:
setToKnob: 'locale';
// will be knob-locale=valueThe Value of the knob set as follow:
Icon Button:
Required to set active to true/false, if stateKnobValues not set the true/false will be the value of knob.
When stateKnobValues set, the value of stateKnobValues.active or stateKnobValues.inactive will be used depending on the active state.
Single choice option:
When options provided and multiChoice not set, the value of selected option will be set to knob.
Multi choice option:
When options provided and multiChoice set to true, an array of selected option will be set to knob.
When stateKnobValues set, the value of stateKnobValues.active or stateKnobValues.inactive will be used depending on the active state.
When set to true user can select multiple option.
