-
Notifications
You must be signed in to change notification settings - Fork 800
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Contact Form: add accessible name to form (#34667)
* Contact Form: add accessible name to form * Update accessible name on content change * Remove unused code * Fix package version * Add warning notice
- Loading branch information
1 parent
2254c83
commit 959a1ef
Showing
6 changed files
with
84 additions
and
20 deletions.
There are no files selected for viewing
4 changes: 4 additions & 0 deletions
4
projects/packages/forms/changelog/add-contact-form-accessible-name
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,4 @@ | ||
Significance: minor | ||
Type: added | ||
|
||
Contact Form: add accessible name to form |
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
53 changes: 53 additions & 0 deletions
53
projects/packages/forms/src/blocks/contact-form/hooks/use-form-accessible-name.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,53 @@ | ||
import { useSelect } from '@wordpress/data'; | ||
import { useEffect } from '@wordpress/element'; | ||
|
||
const getNameFromBlockHeading = block => { | ||
const innerHeading = block.innerBlocks?.find( b => b.name === 'core/heading' ); | ||
|
||
return innerHeading?.attributes?.content; | ||
}; | ||
|
||
const getNameFromBlockPreviousHeadings = ( block, pageBlocks ) => { | ||
const blockIndex = pageBlocks.findIndex( b => b.clientId === block.clientId ); | ||
const previousBlocks = pageBlocks.slice( 0, blockIndex ); | ||
const closestHeading = previousBlocks.findLast( b => b.name === 'core/heading' ); | ||
|
||
return closestHeading?.attributes?.content; | ||
}; | ||
|
||
/** | ||
* Update the form accessible stored in the `formTitle` attribute as the block or page | ||
* content changes. The heuristic is as follows: | ||
* 1. Look for a heading inside the form | ||
* 2. Look for a heading in the previous siblings | ||
* 3. Use the post title (in Contact_Form::parse, server side) | ||
* | ||
* @param {string} formTitle - The form title | ||
* @param {string} clientId - The block unique identifier | ||
* @param {Function} setAttributes - Function to call to update one or more attributes | ||
*/ | ||
export default function useFormAccessibleName( formTitle, clientId, setAttributes ) { | ||
const { pageBlocks } = useSelect( select => ( { | ||
pageBlocks: select( 'core/block-editor' ).getBlocks(), | ||
} ) ); | ||
|
||
useEffect( () => { | ||
const currentBlock = pageBlocks.find( block => block.clientId === clientId ); | ||
|
||
let name = ''; | ||
|
||
if ( currentBlock ) { | ||
// #1 | ||
name = getNameFromBlockHeading( currentBlock ); | ||
|
||
if ( ! name ) { | ||
// #2 | ||
name = getNameFromBlockPreviousHeadings( currentBlock, pageBlocks ); | ||
} | ||
} | ||
|
||
if ( formTitle !== name ) { | ||
setAttributes( { formTitle: name } ); | ||
} | ||
}, [ clientId, formTitle, setAttributes, pageBlocks ] ); | ||
} |
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
5 changes: 5 additions & 0 deletions
5
projects/plugins/jetpack/changelog/add-contact-form-accessible-name
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,5 @@ | ||
Significance: patch | ||
Type: other | ||
Comment: Updated composer.lock. | ||
|
||
|