Skip to content

Commit

Permalink
Docs: Fundamentals of Block Development - Registration of a block (#5…
Browse files Browse the repository at this point in the history
…6334)

* Add block registration documentation

* Update block registration process

* Update block registration in client code

* updated doc

* Update block registration settings

* Grammar check

* Moved Registration of A block to fundamentals of block development

* Added maarkdown extension

* Delete docs/getting-started/fundamentals-block-development/registration-of-a-block

* Removed "key"

* clarification path block.json

* Fix block.json registration path

* server-side features require block server registration

* server-side features require block server registration

* Update docs/getting-started/fundamentals-block-development/registration-of-a-block.md

Co-authored-by: Ramon <[email protected]>

* Update docs/getting-started/fundamentals-block-development/registration-of-a-block.md

Co-authored-by: Ramon <[email protected]>

* Update docs/getting-started/fundamentals-block-development/registration-of-a-block.md

Co-authored-by: Ramon <[email protected]>

* Update docs/getting-started/fundamentals-block-development/registration-of-a-block.md

Co-authored-by: Ramon <[email protected]>

* Update docs/getting-started/fundamentals-block-development/registration-of-a-block.md

Co-authored-by: Ramon <[email protected]>

* Update docs/getting-started/fundamentals-block-development/registration-of-a-block.md

Co-authored-by: Ramon <[email protected]>

* Fix formatting in registration-of-a-block.md

* Added link to new page and some text adjustments

* Update block registration function and build process reference

---------

Co-authored-by: Ramon <[email protected]>
  • Loading branch information
juanmaguitar and ramonjd authored Nov 28, 2023
1 parent 1c835dd commit 26033ae
Show file tree
Hide file tree
Showing 2 changed files with 101 additions and 59 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
# Registration of a block

A block is usually registered through a plugin on both the server and client-side using its `block.json` metadata.

Although technically, blocks could be registered only in the client, **registering blocks on both the server and in the client is a strong recommendation**. Some server-side features like Dynamic Rendering, Block Supports, Block Hooks, or Block style variations require the block to "exist" on the server, and they won't work properly without server registration of the block.

For example, to allow a block [to be styled via `theme.json`](https://developer.wordpress.org/themes/global-settings-and-styles/settings/blocks/), it needs to be registered on the server, otherwise, any styles assigned to it in `theme.json` will be ignored.

[![Open Block Registration diagram in excalidraw](https://developer.wordpress.org/files/2023/11/block-registration-e1700493399839.png)](https://excalidraw.com/#json=PUQu7jpvbKsUHYfpHWn7s,61QnhpZtjykp3s44lbUN_g "Open Block Registration diagram in excalidraw")

### Registration of the block with PHP (server-side)

Block registration on the server usually takes place in the main plugin PHP file with the `register_block_type` function called on the [init hook](https://developer.wordpress.org/reference/hooks/init/).

The [`register_block_type`](https://developer.wordpress.org/reference/functions/register_block_type/) function aims to simplify block type registration on the server by reading metadata stored in the `block.json` file.

This function takes two params relevant in this context (`$block_type` accepts more types and variants):

- `$block_type` (`string`) – path to the folder where the `block.json` file is located or full path to the metadata file if named differently.
- `$args` (`array`) – an optional array of block type arguments. Default value: `[]`. Any arguments may be defined. However, the one described below is supported by default:
- `$render_callback` (`callable`) – callback used to render blocks of this block type, it's an alternative to the `render` field in `block.json`.

As part of the build process, the `block.json` file is usually copied from the `src` folder to the `build` folder, so the path to the `block.json` of your registered block should refer to the `build` folder.

`register_block_type` returns the registered block type (`WP_Block_Type`) on success or `false` on failure.

**Example:**
```php
register_block_type(
__DIR__ . '/notice',
array(
'render_callback' => 'render_block_core_notice',
)
);
```

**Example:**
```php
function minimal_block_ca6eda___register_block() {
register_block_type( __DIR__ . '/build' );
}

add_action( 'init', 'minimal_block_ca6eda___register_block' );
```
_See the [full block example](https://github.com/WordPress/block-development-examples/tree/trunk/plugins/minimal-block-ca6eda) of the [code above](https://github.com/WordPress/block-development-examples/blob/trunk/plugins/minimal-block-ca6eda/index.php)_

### Registration of the block with JavaScript (client-side)

When the block is registered on the server, you only need to register the client-side settings on the client using the same block’s name.

**Example:**

```js
registerBlockType( 'my-plugin/notice', {
edit: Edit,
// ...other client-side settings
} );
```

Although registering the block also on the server with PHP is still recommended for the reasons mentioned at ["Benefits using the metadata file"](https://developer.wordpress.org/block-editor/reference-guides/block-api/block-metadata/#benefits-using-the-metadata-file), if you want to register it only client-side you can use [`registerBlockType`](https://developer.wordpress.org/block-editor/reference-guides/packages/packages-blocks/#registerblocktype) method from `@wordpress/blocks` package to register a block type using the metadata loaded from `block.json` file.

The function takes two params:

- `$blockNameOrMetadata` (`string`|`Object`) – block type name or the metadata object loaded from the `block.json`
- `$settings` (`Object`) – client-side block settings.

<div class="callout callout-tip">
The content of <code>block.json</code> (or any other <code>.json</code> file) can be imported directly in Javascript files when using <a href="/docs/getting-started/devenv/get-started-with-wp-scripts/#the-build-process-with-wp-scripts">a build process like the one available with <code>wp-scripts</code></a>
</div>

The client-side block settings object passed as a second parameter include two properties that are especially relevant:
- `edit`: The React component that gets used in the editor for our block.
- `save`: The React component that generates the static HTML markup that gets saved to the Database.

`registerBlockType` returns the registered block type (`WPBlock`) on success or `undefined` on failure.

**Example:**

```js
import { registerBlockType } from '@wordpress/blocks';
import metadata from './block.json';

registerBlockType( metadata.name, {
edit() {
return <p>Hello World - Block Editor</p>;
},
save() {
return <p>Hello World - Frontend</p>;
},
} );
```
_See the [code above](https://github.com/WordPress/block-development-examples/blob/trunk/plugins/minimal-block-ca6eda/src/index.js) in [an example](https://github.com/WordPress/block-development-examples/tree/trunk/plugins/minimal-block-ca6eda)_

## Additional resources

- [`register_block_type` PHP function](https://developer.wordpress.org/reference/functions/register_block_type/)
- [`registerBlockType` JS function](https://developer.wordpress.org/block-editor/reference-guides/packages/packages-blocks/#registerblocktype)
- [Why a block needs to be registered in both the server and the client?](https://github.com/WordPress/gutenberg/discussions/55884) | GitHub Discussion
62 changes: 3 additions & 59 deletions docs/reference-guides/block-api/block-metadata.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,65 +77,9 @@ Development is improved by using a defined schema definition file. Supported edi
"$schema": "https://schemas.wp.org/trunk/block.json"
```

## Block registration

### PHP (server-side)

The [`register_block_type`](https://developer.wordpress.org/reference/functions/register_block_type/) function that aims to simplify the block type registration on the server, can read metadata stored in the `block.json` file.

This function takes two params relevant in this context (`$block_type` accepts more types and variants):

- `$block_type` (`string`) – path to the folder where the `block.json` file is located or full path to the metadata file if named differently.
- `$args` (`array`) – an optional array of block type arguments. Default value: `[]`. Any arguments may be defined. However, the one described below is supported by default:
- `$render_callback` (`callable`) – callback used to render blocks of this block type, it's an alternative to the `render` field in `block.json`.

It returns the registered block type (`WP_Block_Type`) on success or `false` on failure.

**Example:**

```php
register_block_type(
__DIR__ . '/notice',
array(
'render_callback' => 'render_block_core_notice',
)
);
```

### JavaScript (client-side)

When the block is registered on the server, you only need to register the client-side settings on the client using the same block’s name.

**Example:**

```js
registerBlockType( 'my-plugin/notice', {
edit: Edit,
// ...other client-side settings
} );
```

Although registering the block also on the server with PHP is still recommended for the reasons above, if you want to register it only client-side you can now use `registerBlockType` method from `@wordpress/blocks` package to register a block type using the metadata loaded from `block.json` file.

The function takes two params:

- `$blockNameOrMetadata` (`string`|`Object`) – block type name (supported previously) or the metadata object loaded from the `block.json` file with a bundler (e.g., webpack) or a custom Babel plugin.
- `$settings` (`Object`) – client-side block settings.

It returns the registered block type (`WPBlock`) on success or `undefined` on failure.

**Example:**

```js
import { registerBlockType } from '@wordpress/blocks';
import Edit from './edit';
import metadata from './block.json';

registerBlockType( metadata, {
edit: Edit,
// ...other client-side settings
} );
```
<div class="callout callout-info">
Check <a href="/docs/getting-started/fundamentals-block-development/registration-of-a-block.md">Registration of a block</a> to learn more about how to register a block using its metadata.
</div>

## Block API

Expand Down

1 comment on commit 26033ae

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Flaky tests detected in 26033ae.
Some tests passed with failed attempts. The failures may not be related to this commit but are still reported for visibility. See the documentation for more information.

🔍 Workflow run URL: https://github.com/WordPress/gutenberg/actions/runs/7014531268
📝 Reported issues:

Please sign in to comment.