| 1 |
<?php |
| 2 |
/** |
| 3 |
* Tabs Menu Item Block |
| 4 |
* |
| 5 |
* @package WordPress |
| 6 |
*/ |
| 7 |
|
| 8 |
/** |
| 9 |
* Render callback for core/tabs-menu-item. |
| 10 |
* |
| 11 |
* Injects the tab label and IAPI directives into the saved button HTML. |
| 12 |
* Per-item context (index, id, label) is provided by the parent tabs-menu |
| 13 |
* render callback before this is called. |
| 14 |
* |
| 15 |
* @since 7.0.0 |
| 16 |
* |
| 17 |
* @param array $attributes Block attributes. |
| 18 |
* @param string $content Block content (styled button from save.js). |
| 19 |
* @param \WP_Block $block WP_Block instance. |
| 20 |
* |
| 21 |
* @return string Updated HTML. |
| 22 |
*/ |
| 23 |
function gutenberg_block_core_tabs_menu_item_render_callback( array $attributes, string $content, \WP_Block $block ): string { |
| 24 |
$tab_index = $block->context['core/tabs-menu-item-index'] ?? 0; |
| 25 |
$tab_id = $block->context['core/tabs-menu-item-id'] ?? ''; |
| 26 |
$tab_label = $block->context['core/tabs-menu-item-label'] ?? ''; |
| 27 |
|
| 28 |
if ( empty( $tab_id ) ) { |
| 29 |
$tab_id = 'tab-' . $tab_index; |
| 30 |
} |
| 31 |
|
| 32 |
// Add Interactivity API directives and tab-specific attributes to the button. |
| 33 |
$tag_processor = new WP_HTML_Tag_Processor( $content ); |
| 34 |
|
| 35 |
if ( $tag_processor->next_tag() ) { |
| 36 |
$tag_processor->set_attribute( 'id', 'tab__' . $tab_id ); |
| 37 |
$tag_processor->set_attribute( 'aria-controls', $tab_id ); |
| 38 |
$tag_processor->set_attribute( 'data-wp-on--click', 'actions.handleTabClick' ); |
| 39 |
$tag_processor->set_attribute( 'data-wp-on--keydown', 'actions.handleTabKeyDown' ); |
| 40 |
$tag_processor->set_attribute( 'data-wp-bind--aria-selected', 'state.isActiveTab' ); |
| 41 |
$tag_processor->set_attribute( 'data-wp-bind--tabindex', 'state.tabIndexAttribute' ); |
| 42 |
$tag_processor->set_attribute( |
| 43 |
'data-wp-context', |
| 44 |
wp_json_encode( array( 'tabIndex' => $tab_index ) ) |
| 45 |
); |
| 46 |
} |
| 47 |
|
| 48 |
// Inject the tab label into the button. |
| 49 |
return preg_replace( |
| 50 |
'/(<button\b[^>]*>).*?(<\/button>)/s', |
| 51 |
'$1<span>' . wp_kses_post( $tab_label ) . '</span>$2', |
| 52 |
$tag_processor->get_updated_html(), |
| 53 |
1 |
| 54 |
); |
| 55 |
} |
| 56 |
|
| 57 |
/** |
| 58 |
* Registers the `core/tabs-menu-item` block on the server. |
| 59 |
* |
| 60 |
* @since 7.0.0 |
| 61 |
*/ |
| 62 |
function gutenberg_register_block_core_tabs_menu_item() { |
| 63 |
register_block_type_from_metadata( |
| 64 |
__DIR__ . '/tabs-menu-item', |
| 65 |
array( |
| 66 |
'render_callback' => 'gutenberg_block_core_tabs_menu_item_render_callback', |
| 67 |
) |
| 68 |
); |
| 69 |
} |
| 70 |
add_action( 'init', 'gutenberg_register_block_core_tabs_menu_item', 20 ); |
| 71 |
|