-
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
Merged
jorgefilipecosta
merged 9 commits into
master
from
fix/align-hook-default-align-no-align-bug
Oct 8, 2018
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
7915de1
Fix: Align Hook: Impossible to set no alignment when a default align …
jorgefilipecosta cc8d892
add end 2 end test
jorgefilipecosta 3e951a4
post rebase fixes
jorgefilipecosta ccb5cda
code improvements
jorgefilipecosta d34c086
Used empty string instead of null, as no alignment option.
jorgefilipecosta e5b9af8
Added docs.
jorgefilipecosta 6328e19
Fix alignment of code example
gziolo e62a91c
remove editor modes switch
jorgefilipecosta 6a31b85
Merge branch 'fix/align-hook-default-align-no-align-bug' of https://g…
jorgefilipecosta File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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,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 -->" | ||
`; |
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,196 @@ | ||
/** | ||
* Internal dependencies | ||
*/ | ||
import { | ||
newPost, | ||
insertBlock, | ||
getEditedPostContent, | ||
setPostContent, | ||
getAllBlocks, | ||
selectBlockByClientId, | ||
} 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 setPostContent( htmlMarkup ); | ||
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' ); | ||
} ); | ||
} ); |
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
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,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 | ||
); |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
👍