Skip to content

Commit

Permalink
Use aspect ratio icon and zoom out tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
jeryj committed Aug 2, 2024
1 parent 34790f0 commit 7f96a96
Showing 1 changed file with 21 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ import {
__experimentalText as Text,
FormToggle,
VisuallyHidden,
Tooltip,
} from '@wordpress/components';
import { useDispatch, useSelect } from '@wordpress/data';
import { Icon, fullscreen } from '@wordpress/icons';
import { Icon, aspectRatio } from '@wordpress/icons';

/**
* Internal dependencies
Expand Down Expand Up @@ -139,28 +140,32 @@ export function PatternCategoryPreviews( {
[ setPatternSourceFilter, changePage ]
);

const zoomOutLabel = __( 'Zoom out' );

return (
<>
<VStack
spacing={ 2 }
className="block-editor-inserter__patterns-category-panel-header"
>
<HStack>
<HStack as="label" expanded={ false }>
<FormToggle
onChange={ () => {
if ( isZoomOut ) {
// TODO: We should set it back to what it was, not to edit.
__unstableSetEditorMode( 'edit' );
} else {
__unstableSetEditorMode( 'zoom-out' );
}
} }
checked={ isZoomOut }
/>
<VisuallyHidden>Full Screen View</VisuallyHidden>
<Icon icon={ fullscreen } size="24" />
</HStack>
<Tooltip text={ zoomOutLabel }>
<HStack as="label" expanded={ false }>
<FormToggle
onChange={ () => {
if ( isZoomOut ) {
// TODO: We should set it back to what it was, not to edit.
__unstableSetEditorMode( 'edit' );
} else {
__unstableSetEditorMode( 'zoom-out' );
}
} }
checked={ isZoomOut }
/>
<VisuallyHidden>{ zoomOutLabel }</VisuallyHidden>
<Icon icon={ aspectRatio } size="24" />
</HStack>
</Tooltip>
<PatternsFilter
patternSyncFilter={ patternSyncFilter }
patternSourceFilter={ patternSourceFilter }
Expand Down

0 comments on commit 7f96a96

Please sign in to comment.