-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathindex.js
44 lines (39 loc) · 1.21 KB
/
index.js
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
/**
* WordPress dependencies
*/
import { __ } from '@wordpress/i18n';
import { verse as icon } from '@wordpress/icons';
/**
* Internal dependencies
*/
import initBlock from '../utils/init-block';
import deprecated from './deprecated';
import edit from './edit';
import metadata from './block.json';
import save from './save';
import transforms from './transforms';
const { name } = metadata;
export { metadata, name };
export const settings = {
icon,
example: {
attributes: {
/* eslint-disable @wordpress/i18n-no-collapsible-whitespace */
// translators: Sample content for the Verse block. Can be replaced with a more locale-adequate work.
content: __(
'WHAT was he doing, the great god Pan,\n Down in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.'
),
/* eslint-enable @wordpress/i18n-no-collapsible-whitespace */
},
},
transforms,
deprecated,
merge( attributes, attributesToMerge ) {
return {
content: attributes.content + '\n\n' + attributesToMerge.content,
};
},
edit,
save,
};
export const init = () => initBlock( { name, metadata, settings } );