Customize: Fix focus() to collapse child panels and show parent panel.

When a child panel is open, `wp.customize.panel('parent_panel').focus()` (e.g. `'parent_parent'` might be `'nav_menus'`) collapses the child panel(s) to show the parent panel. 

Follow-up to [30102], [31920], [38648].

Props celloexpressions, costdev, dlh, hareesh-pillai, hellofromTonya, westonruter, wpweaver. 
Fixes #34436.

git-svn-id: https://develop.svn.wordpress.org/trunk@52003 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Tonya Mork 2021-11-03 15:04:55 +00:00
parent 9cfdfd4ecd
commit e6e51414c9

View File

@ -695,10 +695,22 @@
* @param {Function} [params.completeCallback]
*/
focus = function ( params ) {
var construct, completeCallback, focus, focusElement;
var construct, completeCallback, focus, focusElement, sections;
construct = this;
params = params || {};
focus = function () {
// If a child section is currently expanded, collapse it.
if ( construct.extended( api.Panel ) ) {
sections = construct.sections();
if ( 1 < sections.length ) {
sections.forEach( function ( section ) {
if ( section.expanded() ) {
section.collapse();
}
} );
}
}
var focusContainer;
if ( ( construct.extended( api.Panel ) || construct.extended( api.Section ) ) && construct.expanded && construct.expanded() ) {
focusContainer = construct.contentContainer;