-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
index.js
65 lines (55 loc) · 1.46 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/**
* WordPress dependencies
*/
import { __ } from '@wordpress/i18n';
import { image 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: {
sizeSlug: 'large',
url: 'https://s.w.org/images/core/5.3/MtBlanc1.jpg',
// translators: Caption accompanying an image of the Mont Blanc, which serves as an example for the Image block.
caption: __( 'Mont Blanc appears—still, snowy, and serene.' ),
},
},
__experimentalLabel( attributes, { context } ) {
const customName = attributes?.metadata?.name;
if ( context === 'list-view' && customName ) {
return customName;
}
if ( context === 'accessibility' ) {
const { caption, alt, url } = attributes;
if ( ! url ) {
return __( 'Empty' );
}
if ( ! alt ) {
return caption || '';
}
// This is intended to be read by a screen reader.
// A period simply means a pause, no need to translate it.
return alt + ( caption ? '. ' + caption : '' );
}
},
getEditWrapperProps( attributes ) {
return {
'data-align': attributes.align,
};
},
transforms,
edit,
save,
deprecated,
};
export const init = () => initBlock( { name, metadata, settings } );