mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 23:51:16 +08:00
Add 'o' keyboard shortcut to toggle the outline addon. Add note about keyboard shortuct in the addon documentation.
This commit is contained in:
parent
d286d4f2fe
commit
195dce2704
@ -20,4 +20,4 @@ module.exports = {
|
|||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
You can now click on the outline button in the toolbar to toggle the outlines.
|
You can now click on the outline button or press the <kbd>o</kbd> key in the toolbar to toggle the outlines.
|
||||||
|
@ -1,10 +1,11 @@
|
|||||||
import React, { memo, useCallback } from 'react';
|
import React, { memo, useCallback, useEffect } from 'react';
|
||||||
import { useGlobals } from '@storybook/api';
|
import { useGlobals, useStorybookApi } from '@storybook/api';
|
||||||
import { Icons, IconButton } from '@storybook/components';
|
import { Icons, IconButton } from '@storybook/components';
|
||||||
import { PARAM_KEY } from './constants';
|
import { ADDON_ID, PARAM_KEY } from './constants';
|
||||||
|
|
||||||
export const OutlineSelector = memo(() => {
|
export const OutlineSelector = memo(() => {
|
||||||
const [globals, updateGlobals] = useGlobals();
|
const [globals, updateGlobals] = useGlobals();
|
||||||
|
const api = useStorybookApi();
|
||||||
|
|
||||||
const isActive = globals[PARAM_KEY] || false;
|
const isActive = globals[PARAM_KEY] || false;
|
||||||
|
|
||||||
@ -16,6 +17,16 @@ export const OutlineSelector = memo(() => {
|
|||||||
[isActive]
|
[isActive]
|
||||||
);
|
);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
api.setAddonShortcut(ADDON_ID, {
|
||||||
|
label: 'Toggle Measure [O]',
|
||||||
|
defaultShortcut: ['O'],
|
||||||
|
actionName: 'outline',
|
||||||
|
showInMenu: false,
|
||||||
|
action: toggleOutline,
|
||||||
|
});
|
||||||
|
}, [toggleOutline, api]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<IconButton
|
<IconButton
|
||||||
key="outline"
|
key="outline"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user