-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathedit.js
713 lines (653 loc) · 19 KB
/
edit.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
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
/**
* External dependencies
*/
import classnames from 'classnames';
import {
get,
isEmpty,
filter,
map,
last,
omit,
pick,
} from 'lodash';
/**
* WordPress dependencies
*/
import { getBlobByURL, isBlobURL, revokeBlobURL } from '@wordpress/blob';
import {
Button,
ButtonGroup,
ExternalLink,
PanelBody,
ResizableBox,
SelectControl,
Spinner,
TextareaControl,
TextControl,
ToolbarGroup,
withNotices,
} from '@wordpress/components';
import { compose } from '@wordpress/compose';
import { withSelect, withDispatch } from '@wordpress/data';
import {
BlockAlignmentToolbar,
BlockControls,
BlockIcon,
InspectorControls,
InspectorAdvancedControls,
MediaPlaceholder,
MediaReplaceFlow,
RichText,
__experimentalImageURLInputUI as ImageURLInputUI,
} from '@wordpress/block-editor';
import {
Component,
} from '@wordpress/element';
import { __, sprintf } from '@wordpress/i18n';
import { getPath } from '@wordpress/url';
import { withViewportMatch } from '@wordpress/viewport';
/**
* Internal dependencies
*/
import { createUpgradedEmbedBlock } from '../embed/util';
import icon from './icon';
import ImageSize from './image-size';
/**
* Module constants
*/
import {
MIN_SIZE,
LINK_DESTINATION_MEDIA,
LINK_DESTINATION_ATTACHMENT,
ALLOWED_MEDIA_TYPES,
DEFAULT_SIZE_SLUG,
} from './constants';
export const pickRelevantMediaFiles = ( image ) => {
const imageProps = pick( image, [ 'alt', 'id', 'link', 'caption' ] );
imageProps.url = get( image, [ 'sizes', 'large', 'url' ] ) || get( image, [ 'media_details', 'sizes', 'large', 'source_url' ] ) || image.url;
return imageProps;
};
/**
* Is the URL a temporary blob URL? A blob URL is one that is used temporarily
* while the image is being uploaded and will not have an id yet allocated.
*
* @param {number=} id The id of the image.
* @param {string=} url The url of the image.
*
* @return {boolean} Is the URL a Blob URL
*/
const isTemporaryImage = ( id, url ) => ! id && isBlobURL( url );
/**
* Is the url for the image hosted externally. An externally hosted image has no id
* and is not a blob url.
*
* @param {number=} id The id of the image.
* @param {string=} url The url of the image.
*
* @return {boolean} Is the url an externally hosted url?
*/
const isExternalImage = ( id, url ) => url && ! id && ! isBlobURL( url );
export class ImageEdit extends Component {
constructor() {
super( ...arguments );
this.updateAlt = this.updateAlt.bind( this );
this.updateAlignment = this.updateAlignment.bind( this );
this.onFocusCaption = this.onFocusCaption.bind( this );
this.onImageClick = this.onImageClick.bind( this );
this.onSelectImage = this.onSelectImage.bind( this );
this.onSelectURL = this.onSelectURL.bind( this );
this.updateImage = this.updateImage.bind( this );
this.updateWidth = this.updateWidth.bind( this );
this.updateHeight = this.updateHeight.bind( this );
this.updateDimensions = this.updateDimensions.bind( this );
this.onSetHref = this.onSetHref.bind( this );
this.onSetTitle = this.onSetTitle.bind( this );
this.getFilename = this.getFilename.bind( this );
this.onUploadError = this.onUploadError.bind( this );
this.onImageError = this.onImageError.bind( this );
this.state = {
captionFocused: false,
};
}
componentDidMount() {
const {
attributes,
mediaUpload,
noticeOperations,
} = this.props;
const { id, url = '' } = attributes;
if ( isTemporaryImage( id, url ) ) {
const file = getBlobByURL( url );
if ( file ) {
mediaUpload( {
filesList: [ file ],
onFileChange: ( [ image ] ) => {
this.onSelectImage( image );
},
allowedTypes: ALLOWED_MEDIA_TYPES,
onError: ( message ) => {
noticeOperations.createErrorNotice( message );
},
} );
}
}
}
componentDidUpdate( prevProps ) {
const { id: prevID, url: prevURL = '' } = prevProps.attributes;
const { id, url = '' } = this.props.attributes;
if ( isTemporaryImage( prevID, prevURL ) && ! isTemporaryImage( id, url ) ) {
revokeBlobURL( url );
}
if ( ! this.props.isSelected && prevProps.isSelected && this.state.captionFocused ) {
this.setState( {
captionFocused: false,
} );
}
}
onUploadError( message ) {
const { noticeOperations } = this.props;
noticeOperations.removeAllNotices();
noticeOperations.createErrorNotice( message );
}
onSelectImage( media ) {
if ( ! media || ! media.url ) {
this.props.setAttributes( {
url: undefined,
alt: undefined,
id: undefined,
title: undefined,
caption: undefined,
} );
return;
}
const { id, url, alt, caption, linkDestination } = this.props.attributes;
let mediaAttributes = pickRelevantMediaFiles( media );
// If the current image is temporary but an alt or caption text was meanwhile written by the user,
// make sure the text is not overwritten.
if ( isTemporaryImage( id, url ) ) {
if ( alt ) {
mediaAttributes = omit( mediaAttributes, [ 'alt' ] );
}
if ( caption ) {
mediaAttributes = omit( mediaAttributes, [ 'caption' ] );
}
}
let additionalAttributes;
// Reset the dimension attributes if changing to a different image.
if ( ! media.id || media.id !== id ) {
additionalAttributes = {
width: undefined,
height: undefined,
sizeSlug: DEFAULT_SIZE_SLUG,
};
} else {
// Keep the same url when selecting the same file, so "Image Size" option is not changed.
additionalAttributes = { url };
}
// Check if the image is linked to it's media.
if ( linkDestination === LINK_DESTINATION_MEDIA ) {
// Update the media link.
mediaAttributes.href = media.url;
}
// Check if the image is linked to the attachment page.
if ( linkDestination === LINK_DESTINATION_ATTACHMENT ) {
// Update the media link.
mediaAttributes.href = media.link;
}
this.props.setAttributes( {
...mediaAttributes,
...additionalAttributes,
} );
}
onSelectURL( newURL ) {
const { url } = this.props.attributes;
if ( newURL !== url ) {
this.props.setAttributes( {
url: newURL,
id: undefined,
sizeSlug: DEFAULT_SIZE_SLUG,
} );
}
}
onImageError( url ) {
// Check if there's an embed block that handles this URL.
const embedBlock = createUpgradedEmbedBlock(
{ attributes: { url } }
);
if ( undefined !== embedBlock ) {
this.props.onReplace( embedBlock );
}
}
onSetHref( props ) {
this.props.setAttributes( props );
}
onSetTitle( value ) {
// This is the HTML title attribute, separate from the media object title
this.props.setAttributes( { title: value } );
}
onFocusCaption() {
if ( ! this.state.captionFocused ) {
this.setState( {
captionFocused: true,
} );
}
}
onImageClick() {
if ( this.state.captionFocused ) {
this.setState( {
captionFocused: false,
} );
}
}
updateAlt( newAlt ) {
this.props.setAttributes( { alt: newAlt } );
}
updateAlignment( nextAlign ) {
const extraUpdatedAttributes = [ 'wide', 'full' ].indexOf( nextAlign ) !== -1 ?
{ width: undefined, height: undefined } :
{};
this.props.setAttributes( { ...extraUpdatedAttributes, align: nextAlign } );
}
updateImage( sizeSlug ) {
const { image } = this.props;
const url = get( image, [ 'media_details', 'sizes', sizeSlug, 'source_url' ] );
if ( ! url ) {
return null;
}
this.props.setAttributes( {
url,
width: undefined,
height: undefined,
sizeSlug,
} );
}
updateWidth( width ) {
this.props.setAttributes( { width: parseInt( width, 10 ) } );
}
updateHeight( height ) {
this.props.setAttributes( { height: parseInt( height, 10 ) } );
}
updateDimensions( width = undefined, height = undefined ) {
return () => {
this.props.setAttributes( { width, height } );
};
}
getFilename( url ) {
const path = getPath( url );
if ( path ) {
return last( path.split( '/' ) );
}
}
getImageSizeOptions() {
const { imageSizes, image } = this.props;
return map(
filter( imageSizes, ( { slug } ) => ( get( image, [ 'media_details', 'sizes', slug, 'source_url' ] ) ) ),
( { name, slug } ) => ( { value: slug, label: name } )
);
}
render() {
const {
attributes,
setAttributes,
isLargeViewport,
isSelected,
className,
maxWidth,
noticeUI,
isRTL,
onResizeStart,
onResizeStop,
} = this.props;
const {
url,
alt,
caption,
align,
id,
href,
rel,
linkClass,
linkDestination,
title,
width,
height,
linkTarget,
sizeSlug,
} = attributes;
const isExternal = isExternalImage( id, url );
const controls = (
<BlockControls>
<BlockAlignmentToolbar
value={ align }
onChange={ this.updateAlignment }
/>
{ url && <MediaReplaceFlow
mediaURL={ url }
allowedTypes={ ALLOWED_MEDIA_TYPES }
accept="image/*"
onSelect={ this.onSelectImage }
onSelectURL={ this.onSelectURL }
onError={ this.onUploadError }
/> }
{ url && (
<ToolbarGroup>
<ImageURLInputUI
url={ href || '' }
onChangeUrl={ this.onSetHref }
linkDestination={ linkDestination }
mediaUrl={ this.props.image && this.props.image.source_url }
mediaLink={ this.props.image && this.props.image.link }
linkTarget={ linkTarget }
linkClass={ linkClass }
rel={ rel }
/>
</ToolbarGroup>
) }
</BlockControls>
);
const src = isExternal ? url : undefined;
const labels = {
title: ! url ? __( 'Image' ) : __( 'Edit image' ),
instructions: __( 'Upload an image file, pick one from your media library, or add one with a URL.' ),
};
const mediaPreview = ( !! url && <img
alt={ __( 'Edit image' ) }
title={ __( 'Edit image' ) }
className={ 'edit-image-preview' }
src={ url }
/> );
const mediaPlaceholder = (
<MediaPlaceholder
icon={ <BlockIcon icon={ icon } /> }
className={ className }
labels={ labels }
onSelect={ this.onSelectImage }
onSelectURL={ this.onSelectURL }
notices={ noticeUI }
onError={ this.onUploadError }
accept="image/*"
allowedTypes={ ALLOWED_MEDIA_TYPES }
value={ { id, src } }
mediaPreview={ mediaPreview }
disableMediaButtons={ url }
/>
);
if ( ! url ) {
return (
<>
{ controls }
{ mediaPlaceholder }
</>
);
}
const classes = classnames( className, {
'is-transient': isBlobURL( url ),
'is-resized': !! width || !! height,
'is-focused': isSelected,
[ `size-${ sizeSlug }` ]: sizeSlug,
} );
const isResizable = [ 'wide', 'full' ].indexOf( align ) === -1 && isLargeViewport;
const imageSizeOptions = this.getImageSizeOptions();
const getInspectorControls = ( imageWidth, imageHeight ) => (
<>
<InspectorControls>
<PanelBody title={ __( 'Image Settings' ) }>
<TextareaControl
label={ __( 'Alt Text (Alternative Text)' ) }
value={ alt }
onChange={ this.updateAlt }
help={
<>
<ExternalLink href="https://www.w3.org/WAI/tutorials/images/decision-tree">
{ __( 'Describe the purpose of the image' ) }
</ExternalLink>
{ __( 'Leave empty if the image is purely decorative.' ) }
</>
}
/>
{ ! isEmpty( imageSizeOptions ) && (
<SelectControl
label={ __( 'Image Size' ) }
value={ sizeSlug }
options={ imageSizeOptions }
onChange={ this.updateImage }
/>
) }
{ isResizable && (
<div className="block-library-image__dimensions">
<p className="block-library-image__dimensions__row">
{ __( 'Image Dimensions' ) }
</p>
<div className="block-library-image__dimensions__row">
<TextControl
type="number"
className="block-library-image__dimensions__width"
label={ __( 'Width' ) }
value={ width || imageWidth || '' }
min={ 1 }
onChange={ this.updateWidth }
/>
<TextControl
type="number"
className="block-library-image__dimensions__height"
label={ __( 'Height' ) }
value={ height || imageHeight || '' }
min={ 1 }
onChange={ this.updateHeight }
/>
</div>
<div className="block-library-image__dimensions__row">
<ButtonGroup aria-label={ __( 'Image Size' ) }>
{ [ 25, 50, 75, 100 ].map( ( scale ) => {
const scaledWidth = Math.round( imageWidth * ( scale / 100 ) );
const scaledHeight = Math.round( imageHeight * ( scale / 100 ) );
const isCurrent = width === scaledWidth && height === scaledHeight;
return (
<Button
key={ scale }
isSmall
isPrimary={ isCurrent }
isPressed={ isCurrent }
onClick={ this.updateDimensions( scaledWidth, scaledHeight ) }
>
{ scale }%
</Button>
);
} ) }
</ButtonGroup>
<Button
isSmall
onClick={ this.updateDimensions() }
>
{ __( 'Reset' ) }
</Button>
</div>
</div>
) }
</PanelBody>
</InspectorControls>
<InspectorAdvancedControls>
<TextControl
label={ __( 'Title Attribute' ) }
value={ title || '' }
onChange={ this.onSetTitle }
help={
<>
{ __( 'Describe the role of this image on the page.' ) }
<ExternalLink href="https://www.w3.org/TR/html52/dom.html#the-title-attribute">
{ __( '(Note: many devices and browsers do not display this text.)' ) }
</ExternalLink>
</>
}
/>
</InspectorAdvancedControls>
</>
);
// Disable reason: Each block can be selected by clicking on it
/* eslint-disable jsx-a11y/click-events-have-key-events */
return (
<>
{ controls }
<figure className={ classes }>
<ImageSize src={ url } dirtynessTrigger={ align }>
{ ( sizes ) => {
const {
imageWidthWithinContainer,
imageHeightWithinContainer,
imageWidth,
imageHeight,
} = sizes;
const filename = this.getFilename( url );
let defaultedAlt;
if ( alt ) {
defaultedAlt = alt;
} else if ( filename ) {
defaultedAlt = sprintf( __( 'This image has an empty alt attribute; its file name is %s' ), filename );
} else {
defaultedAlt = __( 'This image has an empty alt attribute' );
}
const img = (
// Disable reason: Image itself is not meant to be interactive, but
// should direct focus to block.
/* eslint-disable jsx-a11y/no-noninteractive-element-interactions */
<>
<img
src={ url }
alt={ defaultedAlt }
onClick={ this.onImageClick }
onError={ () => this.onImageError( url ) }
/>
{ isBlobURL( url ) && <Spinner /> }
</>
/* eslint-enable jsx-a11y/no-noninteractive-element-interactions */
);
if ( ! isResizable || ! imageWidthWithinContainer ) {
return (
<>
{ getInspectorControls( imageWidth, imageHeight ) }
<div style={ { width, height } }>
{ img }
</div>
</>
);
}
const currentWidth = width || imageWidthWithinContainer;
const currentHeight = height || imageHeightWithinContainer;
const ratio = imageWidth / imageHeight;
const minWidth = imageWidth < imageHeight ? MIN_SIZE : MIN_SIZE * ratio;
const minHeight = imageHeight < imageWidth ? MIN_SIZE : MIN_SIZE / ratio;
// With the current implementation of ResizableBox, an image needs an explicit pixel value for the max-width.
// In absence of being able to set the content-width, this max-width is currently dictated by the vanilla editor style.
// The following variable adds a buffer to this vanilla style, so 3rd party themes have some wiggleroom.
// This does, in most cases, allow you to scale the image beyond the width of the main column, though not infinitely.
// @todo It would be good to revisit this once a content-width variable becomes available.
const maxWidthBuffer = maxWidth * 2.5;
let showRightHandle = false;
let showLeftHandle = false;
/* eslint-disable no-lonely-if */
// See https://github.com/WordPress/gutenberg/issues/7584.
if ( align === 'center' ) {
// When the image is centered, show both handles.
showRightHandle = true;
showLeftHandle = true;
} else if ( isRTL ) {
// In RTL mode the image is on the right by default.
// Show the right handle and hide the left handle only when it is aligned left.
// Otherwise always show the left handle.
if ( align === 'left' ) {
showRightHandle = true;
} else {
showLeftHandle = true;
}
} else {
// Show the left handle and hide the right handle only when the image is aligned right.
// Otherwise always show the right handle.
if ( align === 'right' ) {
showLeftHandle = true;
} else {
showRightHandle = true;
}
}
/* eslint-enable no-lonely-if */
return (
<>
{ getInspectorControls( imageWidth, imageHeight ) }
<ResizableBox
size={ {
width,
height,
} }
minWidth={ minWidth }
maxWidth={ maxWidthBuffer }
minHeight={ minHeight }
maxHeight={ maxWidthBuffer / ratio }
lockAspectRatio
enable={ {
top: false,
right: showRightHandle,
bottom: true,
left: showLeftHandle,
} }
onResizeStart={ onResizeStart }
onResizeStop={ ( event, direction, elt, delta ) => {
onResizeStop();
setAttributes( {
width: parseInt( currentWidth + delta.width, 10 ),
height: parseInt( currentHeight + delta.height, 10 ),
} );
} }
>
{ img }
</ResizableBox>
</>
);
} }
</ImageSize>
{ ( ! RichText.isEmpty( caption ) || isSelected ) && (
<RichText
tagName="figcaption"
placeholder={ __( 'Write caption…' ) }
value={ caption }
unstableOnFocus={ this.onFocusCaption }
onChange={ ( value ) => setAttributes( { caption: value } ) }
isSelected={ this.state.captionFocused }
inlineToolbar
/>
) }
</figure>
{ mediaPlaceholder }
</>
);
/* eslint-enable jsx-a11y/click-events-have-key-events */
}
}
export default compose( [
withDispatch( ( dispatch ) => {
const { toggleSelection } = dispatch( 'core/block-editor' );
return {
onResizeStart: () => toggleSelection( false ),
onResizeStop: () => toggleSelection( true ),
};
} ),
withSelect( ( select, props ) => {
const { getMedia } = select( 'core' );
const { getSettings } = select( 'core/block-editor' );
const { attributes: { id }, isSelected } = props;
const {
mediaUpload,
imageSizes,
isRTL,
maxWidth,
} = getSettings();
return {
image: id && isSelected ? getMedia( id ) : null,
maxWidth,
isRTL,
imageSizes,
mediaUpload,
};
} ),
withViewportMatch( { isLargeViewport: 'medium' } ),
withNotices,
] )( ImageEdit );