-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblock.js
More file actions
66 lines (65 loc) · 2.41 KB
/
Copy pathblock.js
File metadata and controls
66 lines (65 loc) · 2.41 KB
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
( function ( wp ) {
const el = wp.element.createElement;
const {SelectControl, TextareaControl} = wp.components;
wp.blocks.registerBlockType( 'christianp/interactive-element', {
attributes: {
item: {
type: 'string',
source: 'attribute',
selector: 'interactive-element',
attribute: 'data-item',
},
params: {
type: 'string',
source: 'text',
selector: 'interactive-element'
},
},
edit: function(props) {
const blockProps = wp.blockEditor.useBlockProps();
const available_elements = clp_interactive_element.elements;
return el( 'div', blockProps,
[
el(
SelectControl,
{
label: 'Select an element',
name: 'item',
value: props.attributes.item,
onChange: selection => props.setAttributes({ item: selection }),
options:
[{value:'',label:''}].concat(
Object.entries(available_elements).map(([item,info]) => {
return { value: item, label: info.name };
})
)
}
),
el(
TextareaControl,
{
label: 'Parameters',
value: props.attributes.params,
name: 'params',
onChange: params => props.setAttributes({ params: params }),
}
)
]
);
},
save: function(props) {
const blockProps = wp.blockEditor.useBlockProps.save();
return el( 'figure', blockProps,
el(
'interactive-element',
{
'data-item': props.attributes.item
},
[
el('script', {'type':'params'}, props.attributes.params)
]
)
);
},
} );
} )( window.wp );