| 1 |
<?php |
| 2 |
/** |
| 3 |
* Tab Panel Block |
| 4 |
* |
| 5 |
* @package WordPress |
| 6 |
*/ |
| 7 |
|
| 8 |
/** |
| 9 |
* Render callback for core/tab-panel. |
| 10 |
* |
| 11 |
* @since 7.0.0 |
| 12 |
* |
| 13 |
* @param array $attributes Block attributes. |
| 14 |
* @param string $content Block content. |
| 15 |
* @param \WP_Block $block Block instance. |
| 16 |
* |
| 17 |
* @return string Updated HTML. |
| 18 |
*/ |
| 19 |
function gutenberg_block_core_tab_panel_render( array $attributes, string $content, \WP_Block $block ): string { |
| 20 |
$tabs_id = $block->context['core/tabs-id'] ?? ''; |
| 21 |
|
| 22 |
static $tab_counters = array(); |
| 23 |
|
| 24 |
if ( ! isset( $tab_counters[ $tabs_id ] ) ) { |
| 25 |
$tab_counters[ $tabs_id ] = 0; |
| 26 |
} |
| 27 |
|
| 28 |
$tab_index = $tab_counters[ $tabs_id ]; |
| 29 |
++$tab_counters[ $tabs_id ]; |
| 30 |
|
| 31 |
$tag_processor = new WP_HTML_Tag_Processor( $content ); |
| 32 |
$tag_processor->next_tag( array( 'class_name' => 'wp-block-tab-panel' ) ); |
| 33 |
|
| 34 |
// Use the user's custom anchor if present, otherwise fall back to |
| 35 |
// the generated position-based ID. |
| 36 |
$tab_id = (string) $tag_processor->get_attribute( 'id' ); |
| 37 |
if ( empty( $tab_id ) ) { |
| 38 |
$tab_id = ! empty( $tabs_id ) |
| 39 |
? $tabs_id . '-tab-' . $tab_index |
| 40 |
: 'tab-' . $tab_index; |
| 41 |
$tag_processor->set_attribute( 'id', $tab_id ); |
| 42 |
} |
| 43 |
|
| 44 |
/** |
| 45 |
* Add interactivity to the tab element. |
| 46 |
*/ |
| 47 |
$tag_processor->set_attribute( |
| 48 |
'data-wp-interactive', |
| 49 |
'core/tabs/private' |
| 50 |
); |
| 51 |
$tag_processor->set_attribute( |
| 52 |
'data-wp-context', |
| 53 |
wp_json_encode( |
| 54 |
array( |
| 55 |
'tab' => array( |
| 56 |
'id' => $tab_id, |
| 57 |
), |
| 58 |
) |
| 59 |
) |
| 60 |
); |
| 61 |
|
| 62 |
/** |
| 63 |
* Process accessibility and interactivity attributes. |
| 64 |
*/ |
| 65 |
$tag_processor->set_attribute( 'role', 'tabpanel' ); |
| 66 |
$tag_processor->set_attribute( 'aria-labelledby', 'tab__' . $tab_id ); |
| 67 |
$tag_processor->set_attribute( 'data-wp-bind--hidden', '!state.isActiveTab' ); |
| 68 |
$tag_processor->set_attribute( 'tabindex', 0 ); |
| 69 |
|
| 70 |
return (string) $tag_processor->get_updated_html(); |
| 71 |
} |
| 72 |
|
| 73 |
/** |
| 74 |
* Registers the `core/tab-panel` block on the server. |
| 75 |
* |
| 76 |
* @hook init |
| 77 |
* |
| 78 |
* @since 7.0.0 |
| 79 |
*/ |
| 80 |
function gutenberg_register_block_core_tab_panel() { |
| 81 |
register_block_type_from_metadata( |
| 82 |
__DIR__ . '/tab-panel', |
| 83 |
array( |
| 84 |
'render_callback' => 'gutenberg_block_core_tab_panel_render', |
| 85 |
) |
| 86 |
); |
| 87 |
} |
| 88 |
add_action( 'init', 'gutenberg_register_block_core_tab_panel', 20 ); |
| 89 |
|