forked from WordPress/gutenberg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add UI commands to the post editor (WordPress#51900)
Co-authored-by: ntsekouras <ntsekouras@outlook.com>
- Loading branch information
1 parent
32d3fbb
commit e9a71c3
Showing
3 changed files
with
106 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
103 changes: 103 additions & 0 deletions
103
packages/edit-post/src/hooks/commands/use-common-commands.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
/** | ||
* WordPress dependencies | ||
*/ | ||
import { useSelect, useDispatch } from '@wordpress/data'; | ||
import { __, isRTL } from '@wordpress/i18n'; | ||
import { | ||
code, | ||
cog, | ||
drawerLeft, | ||
drawerRight, | ||
blockDefault, | ||
} from '@wordpress/icons'; | ||
import { useCommand } from '@wordpress/commands'; | ||
import { store as preferencesStore } from '@wordpress/preferences'; | ||
import { store as interfaceStore } from '@wordpress/interface'; | ||
|
||
/** | ||
* Internal dependencies | ||
*/ | ||
import { store as editPostStore } from '../../store'; | ||
|
||
export default function useCommonCommands() { | ||
const { openGeneralSidebar, closeGeneralSidebar, switchEditorMode } = | ||
useDispatch( editPostStore ); | ||
const { editorMode, activeSidebar } = useSelect( | ||
( select ) => ( { | ||
activeSidebar: select( interfaceStore ).getActiveComplementaryArea( | ||
editPostStore.name | ||
), | ||
editorMode: select( editPostStore ).getEditorMode(), | ||
} ), | ||
[] | ||
); | ||
const { toggle } = useDispatch( preferencesStore ); | ||
|
||
useCommand( { | ||
name: 'core/open-settings-sidebar', | ||
label: __( 'Toggle settings sidebar' ), | ||
icon: isRTL() ? drawerLeft : drawerRight, | ||
callback: ( { close } ) => { | ||
close(); | ||
if ( activeSidebar === 'edit-post/document' ) { | ||
closeGeneralSidebar(); | ||
} else { | ||
openGeneralSidebar( 'edit-post/document' ); | ||
} | ||
}, | ||
} ); | ||
|
||
useCommand( { | ||
name: 'core/open-block-inspector', | ||
label: __( 'Toggle block inspector' ), | ||
icon: blockDefault, | ||
callback: ( { close } ) => { | ||
close(); | ||
if ( activeSidebar === 'edit-post/block' ) { | ||
closeGeneralSidebar(); | ||
} else { | ||
openGeneralSidebar( 'edit-post/block' ); | ||
} | ||
}, | ||
} ); | ||
|
||
useCommand( { | ||
name: 'core/toggle-distraction-free', | ||
label: __( 'Toggle distraction free' ), | ||
icon: cog, | ||
callback: ( { close } ) => { | ||
toggle( 'core/edit-post', 'distractionFree' ); | ||
close(); | ||
}, | ||
} ); | ||
|
||
useCommand( { | ||
name: 'core/toggle-spotlight-mode', | ||
label: __( 'Toggle spotlight mode' ), | ||
icon: cog, | ||
callback: ( { close } ) => { | ||
toggle( 'core/edit-post', 'focusMode' ); | ||
close(); | ||
}, | ||
} ); | ||
|
||
useCommand( { | ||
name: 'core/toggle-top-toolbar', | ||
label: __( 'Toggle top toolbar' ), | ||
icon: cog, | ||
callback: ( { close } ) => { | ||
toggle( 'core/edit-post', 'fixedToolbar' ); | ||
close(); | ||
}, | ||
} ); | ||
|
||
useCommand( { | ||
name: 'core/toggle-code-editor', | ||
label: __( 'Toggle code editor' ), | ||
icon: code, | ||
callback: ( { close } ) => { | ||
switchEditorMode( editorMode === 'visual' ? 'text' : 'visual' ); | ||
close(); | ||
}, | ||
} ); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters