File size: 586 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import { PANEL_MAPPINGS } from '@automattic/help-center/src/constants';
/**
* Given the name of a Calypso customizer panel, returns an object containing
* the section or panel to be used in autofocus. Returns null if the panel is
* not recognized.
* @param {string} panel Calypso panel slug
* @returns {?Object} WordPress autofocus argument object
*/
export function getCustomizerFocus( panel: string ) {
if ( PANEL_MAPPINGS.hasOwnProperty( panel ) ) {
const [ key, value ] = PANEL_MAPPINGS[ panel ];
return { [ `autofocus[${ key }]` ]: value };
}
return null;
}
|