Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tweak, and add, more consistent commands #53496

Merged
merged 5 commits into from
Aug 14, 2023
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 29 additions & 10 deletions packages/core-commands/src/site-editor-navigation-commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
post,
page,
layout,
symbol,
symbolFilled,
styles,
navigation,
Expand Down Expand Up @@ -135,7 +136,7 @@ function useSiteEditorBasicNavigationCommands() {

result.push( {
name: 'core/edit-site/open-navigation',
label: __( 'Open navigation' ),
label: __( 'Navigation' ),
icon: navigation,
callback: ( { close } ) => {
const args = {
Expand All @@ -152,12 +153,12 @@ function useSiteEditorBasicNavigationCommands() {
} );

result.push( {
name: 'core/edit-site/open-pages',
label: __( 'Open pages' ),
icon: page,
name: 'core/edit-site/open-styles',
label: __( 'Styles' ),
icon: styles,
callback: ( { close } ) => {
const args = {
path: '/page',
path: '/wp_global_styles',
};
const targetUrl = addQueryArgs( 'site-editor.php', args );
if ( isSiteEditor ) {
Expand All @@ -170,12 +171,12 @@ function useSiteEditorBasicNavigationCommands() {
} );

result.push( {
name: 'core/edit-site/open-style-variations',
label: __( 'Open style variations' ),
icon: styles,
name: 'core/edit-site/open-pages',
label: __( 'Pages' ),
icon: page,
callback: ( { close } ) => {
const args = {
path: '/wp_global_styles',
path: '/page',
};
const targetUrl = addQueryArgs( 'site-editor.php', args );
if ( isSiteEditor ) {
Expand All @@ -189,7 +190,7 @@ function useSiteEditorBasicNavigationCommands() {

result.push( {
name: 'core/edit-site/open-templates',
label: __( 'Open templates' ),
label: __( 'Templates' ),
icon: layout,
callback: ( { close } ) => {
const args = {
Expand All @@ -205,6 +206,24 @@ function useSiteEditorBasicNavigationCommands() {
},
} );

result.push( {
name: 'core/edit-site/open-patterns',
label: __( 'Patterns' ),
icon: symbol,
callback: ( { close } ) => {
const args = {
path: '/patterns',
};
const targetUrl = addQueryArgs( 'site-editor.php', args );
if ( isSiteEditor ) {
history.push( args );
} else {
document.location = targetUrl;
}
close();
},
} );

return result;
}, [ history, isSiteEditor, isTemplatesAccessible, isBlockBasedTheme ] );

Expand Down
4 changes: 2 additions & 2 deletions packages/edit-post/src/components/keyboard-shortcuts/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,8 @@ function KeyboardShortcuts() {
toggleFeature( 'distractionFree' );
createInfoNotice(
isFeatureActive( 'distractionFree' )
? __( 'Distraction free mode turned on.' )
: __( 'Distraction free mode turned off.' ),
? __( 'Distraction free on.' )
: __( 'Distraction free off.' ),
{
id: 'core/edit-post/distraction-free-mode/notice',
type: 'snackbar',
Expand Down
8 changes: 4 additions & 4 deletions packages/edit-post/src/hooks/commands/use-common-commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export default function useCommonCommands() {

useCommand( {
name: 'core/open-preferences',
label: __( 'Open editor preferences' ),
label: __( 'Editor preferences' ),
icon: cog,
callback: () => {
openModal( PREFERENCES_MODAL_NAME );
Expand All @@ -160,7 +160,7 @@ export default function useCommonCommands() {

useCommand( {
name: 'core/open-shortcut-help',
label: __( 'Open keyboard shortcuts' ),
label: __( 'Keyboard shortcuts' ),
icon: keyboard,
callback: () => {
openModal( KEYBOARD_SHORTCUT_HELP_MODAL_NAME );
Expand All @@ -178,8 +178,8 @@ export default function useCommonCommands() {
close();
createInfoNotice(
showBlockBreadcrumbs
? __( 'Breadcrumbs off.' )
: __( 'Breadcrumbs on.' ),
? __( 'Breadcrumbs hidden.' )
: __( 'Breadcrumbs visible.' ),
{
id: 'core/edit-post/toggle-breadcrumbs/notice',
type: 'snackbar',
Expand Down
8 changes: 4 additions & 4 deletions packages/edit-site/src/hooks/commands/use-common-commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import { useMemo } from '@wordpress/element';
import { useDispatch, useSelect } from '@wordpress/data';
import { __ } from '@wordpress/i18n';
import { trash, backup, help, styles, external } from '@wordpress/icons';
import { trash, backup, help, styles, external, brush } from '@wordpress/icons';
import { useCommandLoader, useCommand } from '@wordpress/commands';
import { privateApis as blockEditorPrivateApis } from '@wordpress/block-editor';
import { privateApis as routerPrivateApis } from '@wordpress/router';
Expand Down Expand Up @@ -218,8 +218,8 @@ function useGlobalStylesOpenCssCommands() {
return [
{
name: 'core/edit-site/open-styles-css',
label: __( 'Open CSS' ),
icon: styles,
label: __( 'Customize CSS' ),
icon: brush,
callback: ( { close } ) => {
close();
if ( ! isEditorPage ) {
Expand Down Expand Up @@ -272,7 +272,7 @@ function useGlobalStylesOpenRevisionsCommands() {
return [
{
name: 'core/edit-site/open-global-styles-revisions',
label: __( 'Open styles revisions' ),
label: __( 'Style revisions' ),
icon: backup,
callback: ( { close } ) => {
close();
Expand Down
74 changes: 61 additions & 13 deletions packages/edit-site/src/hooks/commands/use-edit-mode-commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,37 @@ function usePageContentFocusCommands() {
return { isLoading: false, commands };
}

function useEditorModeCommands() {
const { switchEditorMode } = useDispatch( editSiteStore );
const { canvasMode, editorMode } = useSelect(
( select ) => ( {
canvasMode: unlock( select( editSiteStore ) ).getCanvasMode(),
editorMode: select( editSiteStore ).getEditorMode(),
} ),
[]
);

if ( canvasMode !== 'edit' ) {
richtabor marked this conversation as resolved.
Show resolved Hide resolved
return { isLoading: false, commands: [] };
}

const commands = [];

if ( editorMode === 'text' ) {
richtabor marked this conversation as resolved.
Show resolved Hide resolved
commands.push( {
name: 'core/exit-code-editor',
label: __( 'Exit code editor' ),
icon: code,
callback: ( { close } ) => {
switchEditorMode( 'visual' );
close();
},
} );
}

return { isLoading: false, commands };
}

function useManipulateDocumentCommands() {
const { isLoaded, record: template } = useEditedEntityRecord();
const { removeTemplate, revertTemplate } = useDispatch( editSiteStore );
Expand Down Expand Up @@ -244,8 +275,8 @@ function useEditUICommands() {
toggle( 'core/edit-site', 'distractionFree' );
createInfoNotice(
getPreference( 'core/edit-site', 'distractionFree' )
? __( 'Distraction free mode turned on.' )
: __( 'Distraction free mode turned off.' ),
? __( 'Distraction free on.' )
: __( 'Distraction free off.' ),
{
id: 'core/edit-site/distraction-free-mode/notice',
type: 'snackbar',
Expand All @@ -265,19 +296,21 @@ function useEditUICommands() {
},
} );

commands.push( {
name: 'core/toggle-code-editor',
label: __( 'Toggle code editor' ),
icon: code,
callback: ( { close } ) => {
switchEditorMode( editorMode === 'visual' ? 'text' : 'visual' );
close();
},
} );
if ( editorMode === 'visual' ) {
commands.push( {
name: 'core/toggle-code-editor',
label: __( 'Open code editor' ),
icon: code,
callback: ( { close } ) => {
switchEditorMode( 'text' );
close();
},
} );
}

commands.push( {
name: 'core/open-preferences',
label: __( 'Open editor preferences' ),
label: __( 'Editor preferences' ),
icon: cog,
callback: () => {
openModal( PREFERENCES_MODAL_NAME );
Expand All @@ -286,7 +319,7 @@ function useEditUICommands() {

commands.push( {
name: 'core/open-shortcut-help',
label: __( 'Open keyboard shortcuts' ),
label: __( 'Keyboard shortcuts' ),
icon: keyboard,
callback: () => {
openModal( KEYBOARD_SHORTCUT_HELP_MODAL_NAME );
Expand All @@ -302,6 +335,15 @@ function useEditUICommands() {
callback: ( { close } ) => {
toggle( 'core/edit-site', 'showBlockBreadcrumbs' );
close();
createInfoNotice(
showBlockBreadcrumbs
? __( 'Breadcrumbs hidden.' )
: __( 'Breadcrumbs visible.' ),
{
id: 'core/edit-site/toggle-breadcrumbs/notice',
type: 'snackbar',
}
);
},
} );

Expand All @@ -312,6 +354,12 @@ function useEditUICommands() {
}

export function useEditModeCommands() {
useCommandLoader( {
name: 'core/exit-code-editor',
hook: useEditorModeCommands,
context: 'site-editor-edit',
} );

useCommandLoader( {
name: 'core/edit-site/page-content-focus',
hook: usePageContentFocusCommands,
Expand Down