-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
Fix: Align Hook: Impossible to set no alignment when a default align exists #9634
Changes from 7 commits
7915de1
cc8d892
3e951a4
ccb5cda
d34c086
e5b9af8
6328e19
e62a91c
6a31b85
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`Align Hook Works As Expected Block with align array Correctly applies the selected alignment and correctly removes the alignment 1`] = ` | ||
"<!-- wp:test/test-align-array {\\"align\\":\\"center\\"} --> | ||
<div style=\\"outline:1px solid gray;padding:5px\\" class=\\"wp-block-test-test-align-array aligncenter\\">Test Align Hook</div> | ||
<!-- /wp:test/test-align-array -->" | ||
`; | ||
|
||
exports[`Align Hook Works As Expected Block with align array Correctly applies the selected alignment and correctly removes the alignment 2`] = ` | ||
"<!-- wp:test/test-align-array --> | ||
<div style=\\"outline:1px solid gray;padding:5px\\" class=\\"wp-block-test-test-align-array\\">Test Align Hook</div> | ||
<!-- /wp:test/test-align-array -->" | ||
`; | ||
|
||
exports[`Align Hook Works As Expected Block with align true Correctly applies the selected alignment and correctly removes the alignment 1`] = ` | ||
"<!-- wp:test/test-align-true {\\"align\\":\\"right\\"} --> | ||
<div style=\\"outline:1px solid gray;padding:5px\\" class=\\"wp-block-test-test-align-true alignright\\">Test Align Hook</div> | ||
<!-- /wp:test/test-align-true -->" | ||
`; | ||
|
||
exports[`Align Hook Works As Expected Block with align true Correctly applies the selected alignment and correctly removes the alignment 2`] = ` | ||
"<!-- wp:test/test-align-true --> | ||
<div style=\\"outline:1px solid gray;padding:5px\\" class=\\"wp-block-test-test-align-true\\">Test Align Hook</div> | ||
<!-- /wp:test/test-align-true -->" | ||
`; | ||
|
||
exports[`Align Hook Works As Expected Block with default align Correctly applies the selected alignment and correctly removes the alignment 1`] = ` | ||
"<!-- wp:test/test-default-align {\\"align\\":\\"center\\"} --> | ||
<div style=\\"outline:1px solid gray;padding:5px\\" class=\\"wp-block-test-test-default-align aligncenter\\">Test Align Hook</div> | ||
<!-- /wp:test/test-default-align -->" | ||
`; | ||
|
||
exports[`Align Hook Works As Expected Block with default align Correctly applies the selected alignment and correctly removes the alignment 2`] = ` | ||
"<!-- wp:test/test-default-align {\\"align\\":\\"\\"} --> | ||
<div style=\\"outline:1px solid gray;padding:5px\\" class=\\"wp-block-test-test-default-align\\">Test Align Hook</div> | ||
<!-- /wp:test/test-default-align -->" | ||
`; | ||
|
||
exports[`Align Hook Works As Expected Block with no alignment set Does not save any alignment related attribute or class 1`] = ` | ||
"<!-- wp:test/test-no-alignment-set --> | ||
<div style=\\"outline:1px solid gray;padding:5px\\" class=\\"wp-block-test-test-no-alignment-set\\">Test Align Hook</div> | ||
<!-- /wp:test/test-no-alignment-set -->" | ||
`; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,199 @@ | ||
/** | ||
* Internal dependencies | ||
*/ | ||
import { | ||
newPost, | ||
insertBlock, | ||
getEditedPostContent, | ||
setPostContent, | ||
getAllBlocks, | ||
selectBlockByClientId, | ||
switchToEditor, | ||
} from '../support/utils'; | ||
import { activatePlugin, deactivatePlugin } from '../support/plugins'; | ||
|
||
describe( 'Align Hook Works As Expected', () => { | ||
beforeAll( async () => { | ||
await activatePlugin( 'gutenberg-test-align-hook' ); | ||
} ); | ||
|
||
beforeEach( async () => { | ||
await newPost(); | ||
} ); | ||
|
||
afterAll( async () => { | ||
await deactivatePlugin( 'gutenberg-test-align-hook' ); | ||
} ); | ||
|
||
const getAlignmentToolbarLabels = async () => { | ||
const buttonLabels = await page.evaluate( () => { | ||
return Array.from( | ||
document.querySelectorAll( | ||
'.editor-block-toolbar button[aria-label^="Align"]' | ||
) | ||
).map( | ||
( button ) => { | ||
return button.getAttribute( 'aria-label' ); | ||
} | ||
); | ||
} ); | ||
return buttonLabels; | ||
}; | ||
|
||
const createShowsTheExpectedButtonsTest = ( blockName, buttonLabels ) => { | ||
it( 'Shows the expected buttons on the alignment toolbar', | ||
async () => { | ||
await insertBlock( blockName ); | ||
expect( | ||
await getAlignmentToolbarLabels() | ||
).toEqual( buttonLabels ); | ||
} ); | ||
}; | ||
|
||
const createDoesNotApplyAlignmentByDefaultTest = ( blockName ) => { | ||
it( 'Does not apply any alignment by default', async () => { | ||
await insertBlock( blockName ); | ||
// verify no alignment button is in pressed state | ||
const pressedButtons = await page.$$( '.editor-block-toolbar button[aria-label^="Align"][aria-pressed="true"]' ); | ||
expect( pressedButtons ).toHaveLength( 0 ); | ||
} ); | ||
}; | ||
|
||
const verifyMarkupIsValid = async ( htmlMarkup ) => { | ||
await switchToEditor( 'Code' ); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Given that you set post content using data layer, do you still need to switch to Code Editor? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The idea of this switch was to make sure everything is unmounted and mounted again. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. But it was removed as it makes our tests faster and it does not seem required for this case. |
||
await setPostContent( htmlMarkup ); | ||
await switchToEditor( 'Visual' ); | ||
const blocks = await getAllBlocks(); | ||
expect( blocks ).toHaveLength( 1 ); | ||
expect( blocks[ 0 ].isValid ).toBeTruthy(); | ||
}; | ||
|
||
const createCorrectlyAppliesAndRemovesAlignmentTest = ( blockName, alignment ) => { | ||
it( 'Correctly applies the selected alignment and correctly removes the alignment', | ||
async () => { | ||
const BUTTON_SELECTOR = `.editor-block-toolbar button[aria-label="Align ${ alignment }"]`; | ||
const BUTTON_PRESSED_SELECTOR = `${ BUTTON_SELECTOR }[aria-pressed="true"]`; | ||
// set the specified alignment. | ||
await insertBlock( blockName ); | ||
await page.click( BUTTON_SELECTOR ); | ||
|
||
// verify the button of the specified alignment is pressed. | ||
let pressedButtons = await page.$$( BUTTON_PRESSED_SELECTOR ); | ||
expect( pressedButtons ).toHaveLength( 1 ); | ||
|
||
let htmlMarkup = await getEditedPostContent(); | ||
|
||
// verify the markup of the selected alignment was generated. | ||
expect( htmlMarkup ).toMatchSnapshot(); | ||
|
||
// verify the markup can be correctly parsed | ||
await verifyMarkupIsValid( htmlMarkup ); | ||
|
||
await selectBlockByClientId( | ||
( await getAllBlocks() )[ 0 ].clientId | ||
); | ||
|
||
// remove the alignment. | ||
await page.click( BUTTON_SELECTOR ); | ||
|
||
// verify no alignment button is in pressed state. | ||
pressedButtons = await page.$$( BUTTON_PRESSED_SELECTOR ); | ||
expect( pressedButtons ).toHaveLength( 0 ); | ||
|
||
// verify alignment markup was removed from the block. | ||
htmlMarkup = await getEditedPostContent(); | ||
expect( htmlMarkup ).toMatchSnapshot(); | ||
|
||
// verify the markup when no alignment is set is valid | ||
await verifyMarkupIsValid( htmlMarkup ); | ||
|
||
await selectBlockByClientId( | ||
( await getAllBlocks() )[ 0 ].clientId | ||
); | ||
|
||
// verify no alignment button is in pressed state after parsing the block. | ||
pressedButtons = await page.$$( BUTTON_PRESSED_SELECTOR ); | ||
expect( pressedButtons ).toHaveLength( 0 ); | ||
} | ||
); | ||
}; | ||
|
||
describe( 'Block with no alignment set', () => { | ||
const BLOCK_NAME = 'Test No Alignment Set'; | ||
it( 'Shows no alignment buttons on the alignment toolbar', | ||
async () => { | ||
expect( await getAlignmentToolbarLabels() ).toHaveLength( 0 ); | ||
} | ||
); | ||
|
||
it( 'Does not save any alignment related attribute or class', | ||
async () => { | ||
await insertBlock( BLOCK_NAME ); | ||
expect( await getEditedPostContent() ).toMatchSnapshot(); | ||
} | ||
); | ||
} ); | ||
|
||
describe( 'Block with align true', () => { | ||
const BLOCK_NAME = 'Test Align True'; | ||
|
||
createShowsTheExpectedButtonsTest( BLOCK_NAME, [ | ||
'Align left', | ||
'Align center', | ||
'Align right', | ||
] ); | ||
|
||
createDoesNotApplyAlignmentByDefaultTest( BLOCK_NAME ); | ||
|
||
createCorrectlyAppliesAndRemovesAlignmentTest( BLOCK_NAME, 'right' ); | ||
} ); | ||
|
||
describe( 'Block with align array', () => { | ||
const BLOCK_NAME = 'Test Align Array'; | ||
|
||
createShowsTheExpectedButtonsTest( BLOCK_NAME, [ | ||
'Align left', | ||
'Align center', | ||
] ); | ||
|
||
createDoesNotApplyAlignmentByDefaultTest( BLOCK_NAME ); | ||
|
||
createCorrectlyAppliesAndRemovesAlignmentTest( BLOCK_NAME, 'center' ); | ||
} ); | ||
|
||
describe( 'Block with default align', () => { | ||
const BLOCK_NAME = 'Test Default Align'; | ||
const PRESSED_BUTTON_SELECTOR = '.editor-block-toolbar button[aria-label="Align right"][aria-pressed="true"]'; | ||
createShowsTheExpectedButtonsTest( BLOCK_NAME, [ | ||
'Align left', | ||
'Align center', | ||
'Align right', | ||
] ); | ||
|
||
it( 'Applies the selected alignment by default', async () => { | ||
await insertBlock( BLOCK_NAME ); | ||
// verify the correct alignment button is pressed | ||
const pressedButtons = await page.$$( PRESSED_BUTTON_SELECTOR ); | ||
expect( pressedButtons ).toHaveLength( 1 ); | ||
} ); | ||
|
||
it( 'The default markup does not contain the alignment attribute but contains the alignment class', | ||
async () => { | ||
await insertBlock( BLOCK_NAME ); | ||
const markup = await getEditedPostContent(); | ||
expect( markup ).not.toContain( '"align":"right"' ); | ||
expect( markup ).toContain( 'alignright' ); | ||
} | ||
); | ||
|
||
it( 'Can remove the default alignment and the align attribute equals none but alignnone class is not applied', async () => { | ||
await insertBlock( BLOCK_NAME ); | ||
// remove the alignment. | ||
await page.click( PRESSED_BUTTON_SELECTOR ); | ||
const markup = await getEditedPostContent(); | ||
expect( markup ).toContain( '"align":""' ); | ||
} ); | ||
|
||
createCorrectlyAppliesAndRemovesAlignmentTest( BLOCK_NAME, 'center' ); | ||
} ); | ||
} ); |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
/** | ||
* Plugin Name: Gutenberg Test Align Hook | ||
* Plugin URI: https://github.com/WordPress/gutenberg | ||
* Author: Gutenberg Team | ||
* | ||
* @package gutenberg-test-align-hook | ||
*/ | ||
wp_enqueue_script( | ||
'gutenberg-test-align-hook', | ||
plugins_url( 'align-hook/index.js', __FILE__ ), | ||
array( | ||
'wp-blocks', | ||
'wp-element', | ||
'wp-editor', | ||
'wp-i18n' | ||
), | ||
filemtime( plugin_dir_path( __FILE__ ) . 'align-hook/index.js' ), | ||
true | ||
); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is cool in combination with
map
👍