mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:31:19 +08:00
Merge pull request #5677 from storybooks/fix/5666
CHANGE the keyboard shortcuts of toggleNav & togglePanel
This commit is contained in:
parent
4a442cb5e0
commit
1254bdd509
@ -4461,7 +4461,7 @@ exports[`Storyshots UI|Settings/ShortcutsScreen default shortcuts 1`] = `
|
||||
placeholder="Type keys"
|
||||
readonly=""
|
||||
spellcheck="false"
|
||||
value="S"
|
||||
value="A"
|
||||
/>
|
||||
<svg
|
||||
class="emotion-16"
|
||||
@ -4511,7 +4511,7 @@ exports[`Storyshots UI|Settings/ShortcutsScreen default shortcuts 1`] = `
|
||||
placeholder="Type keys"
|
||||
readonly=""
|
||||
spellcheck="false"
|
||||
value="A"
|
||||
value="S"
|
||||
/>
|
||||
<svg
|
||||
class="emotion-16"
|
||||
|
@ -11,14 +11,14 @@ import { Consumer } from '../core/context';
|
||||
|
||||
const createMenu = memoize(1)((api, shortcutKeys, isFullscreen, showPanel, showNav) => [
|
||||
{
|
||||
id: 'A',
|
||||
id: 'S',
|
||||
title: 'Show sidebar',
|
||||
onClick: () => api.toggleNav(),
|
||||
right: shortcutToHumanString(shortcutKeys.toggleNav),
|
||||
left: showNav ? <ListItemIcon icon="check" /> : <ListItemIcon />,
|
||||
},
|
||||
{
|
||||
id: 'S',
|
||||
id: 'A',
|
||||
title: 'Show addons',
|
||||
onClick: () => api.togglePanel(),
|
||||
right: shortcutToHumanString(shortcutKeys.togglePanel),
|
||||
|
@ -9,9 +9,9 @@ export const controlOrMetaKey = () => (isMacLike() ? 'meta' : 'control');
|
||||
|
||||
export const defaultShortcuts = Object.freeze({
|
||||
fullScreen: ['F'],
|
||||
togglePanel: ['S'], // Panel visibiliy
|
||||
togglePanel: ['A'],
|
||||
panelPosition: ['D'],
|
||||
toggleNav: ['A'],
|
||||
toggleNav: ['S'],
|
||||
toolbar: ['T'],
|
||||
search: ['/'],
|
||||
focusNav: ['1'],
|
||||
|
@ -28,7 +28,7 @@ describe('shortcuts api', () => {
|
||||
store.setState(state);
|
||||
|
||||
expect(api.getShortcutKeys().fullScreen).toEqual(['Z']);
|
||||
expect(api.getShortcutKeys().togglePanel).toEqual(['S']);
|
||||
expect(api.getShortcutKeys().togglePanel).toEqual(['A']);
|
||||
});
|
||||
|
||||
it('sets defaults, ignoring anything persisted that is out of date', () => {
|
||||
@ -61,7 +61,7 @@ describe('shortcuts api', () => {
|
||||
await api.setShortcut('togglePanel', ['B']);
|
||||
await api.restoreAllDefaultShortcuts();
|
||||
expect(api.getShortcutKeys().fullScreen).toEqual(['F']);
|
||||
expect(api.getShortcutKeys().togglePanel).toEqual(['S']);
|
||||
expect(api.getShortcutKeys().togglePanel).toEqual(['A']);
|
||||
});
|
||||
|
||||
it('restores single default', async () => {
|
||||
|
@ -8,8 +8,8 @@ import ShortcutsScreen from './shortcuts';
|
||||
// A limited set of keys we use in this test file
|
||||
const shortcutKeys = {
|
||||
fullScreen: ['F'],
|
||||
togglePanel: ['S'],
|
||||
toggleNav: ['A'],
|
||||
togglePanel: ['A'],
|
||||
toggleNav: ['S'],
|
||||
toolbar: ['T'],
|
||||
search: ['/'],
|
||||
focusNav: ['1'],
|
||||
|
Loading…
x
Reference in New Issue
Block a user