-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
class-wp-block-type.php
191 lines (167 loc) · 3.95 KB
/
class-wp-block-type.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<?php
/**
* Blocks API: WP_Block_Type class
*
* @package gutenberg
* @since 0.6.0
*/
/**
* Core class representing a block type.
*
* @since 0.6.0
*
* @see register_block_type()
*/
class WP_Block_Type {
/**
* Block type key.
*
* @since 0.6.0
* @var string
*/
public $name;
/**
* Block type render callback.
*
* @since 0.6.0
* @var callable
*/
public $render_callback;
/**
* Block type attributes property schemas.
*
* @since 0.10.0
* @var array
*/
public $attributes;
/**
* Block type editor script handle.
*
* @since 2.0.0
* @var string
*/
public $editor_script;
/**
* Block type front end script handle.
*
* @since 2.0.0
* @var string
*/
public $script;
/**
* Block type editor style handle.
*
* @since 2.0.0
* @var string
*/
public $editor_style;
/**
* Block type front end style handle.
*
* @since 2.0.0
* @var string
*/
public $style;
/**
* Constructor.
*
* Will populate object properties from the provided arguments.
*
* @since 0.6.0
*
* @see register_block_type()
*
* @param string $block_type Block type name including namespace.
* @param array|string $args Optional. Array or string of arguments for registering a block type.
* Default empty array.
*/
public function __construct( $block_type, $args = array() ) {
$this->name = $block_type;
$this->set_props( $args );
}
/**
* Renders the block type output for given attributes.
*
* @since 0.6.0
*
* @param array $attributes Optional. Block attributes. Default empty array.
* @return string Rendered block type output.
*/
public function render( $attributes = array() ) {
if ( ! $this->is_dynamic() ) {
return '';
}
$attributes = $this->prepare_attributes_for_render( $attributes );
return (string) call_user_func( $this->render_callback, $attributes );
}
/**
* Returns true if the block type is dynamic, or false otherwise. A dynamic
* block is one which defers its rendering to occur on-demand at runtime.
*
* @return boolean Whether block type is dynamic.
*/
public function is_dynamic() {
return is_callable( $this->render_callback );
}
/**
* Validates attributes against the current block schema, populating
* defaulted and missing values, and omitting unknown attributes.
*
* @param array $attributes Original block attributes.
* @return array Prepared block attributes.
*/
public function prepare_attributes_for_render( $attributes ) {
if ( ! isset( $this->attributes ) ) {
return $attributes;
}
$prepared_attributes = array();
foreach ( $this->attributes as $attribute_name => $schema ) {
$value = null;
if ( isset( $attributes[ $attribute_name ] ) ) {
$is_valid = rest_validate_value_from_schema( $attributes[ $attribute_name ], $schema );
if ( ! is_wp_error( $is_valid ) ) {
$value = rest_sanitize_value_from_schema( $attributes[ $attribute_name ], $schema );
}
}
if ( is_null( $value ) && isset( $schema['default'] ) ) {
$value = $schema['default'];
}
$prepared_attributes[ $attribute_name ] = $value;
}
return $prepared_attributes;
}
/**
* Sets block type properties.
*
* @since 0.6.0
*
* @param array|string $args Array or string of arguments for registering a block type.
*/
public function set_props( $args ) {
$args = wp_parse_args( $args, array(
'render_callback' => null,
) );
$args['name'] = $this->name;
foreach ( $args as $property_name => $property_value ) {
$this->$property_name = $property_value;
}
}
/**
* Get all available block attributes including possible layout attribute from Columns block.
*
* @return array Array of attributes.
*/
public function get_attributes() {
return is_array( $this->attributes ) ?
array_merge( $this->attributes, array(
'layout' => array(
'type' => 'string',
),
) ) :
array(
'layout' => array(
'type' => 'string',
),
);
}
}