-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathindex.js
503 lines (472 loc) · 11.4 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
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
/**
* External dependencies
*/
import { parse } from 'url';
import { includes } from 'lodash';
/**
* WordPress dependencies
*/
import { __, sprintf } from '@wordpress/i18n';
import { Component, renderToString } from '@wordpress/element';
import { Button, Placeholder, Spinner, SandBox } from '@wordpress/components';
import { addQueryArgs } from '@wordpress/url';
/**
* Internal dependencies
*/
import './style.scss';
import './editor.scss';
import { createBlock } from '../../api';
import RichText from '../../rich-text';
import BlockControls from '../../block-controls';
import BlockAlignmentToolbar from '../../block-alignment-toolbar';
// These embeds do not work in sandboxes
const HOSTS_NO_PREVIEWS = [ 'facebook.com' ];
function getEmbedBlockSettings( { title, icon, category = 'embed', transforms, keywords = [] } ) {
return {
title,
description: __( 'The Embed block allows you to easily add videos, images, tweets, audio, and other content to your post or page.' ),
icon,
category,
keywords,
attributes: {
url: {
type: 'string',
},
caption: {
type: 'array',
source: 'children',
selector: 'figcaption',
default: [],
},
align: {
type: 'string',
},
},
transforms,
getEditWrapperProps( attributes ) {
const { align } = attributes;
if ( 'left' === align || 'right' === align || 'wide' === align || 'full' === align ) {
return { 'data-align': align };
}
},
edit: class extends Component {
constructor() {
super( ...arguments );
this.doServerSideRender = this.doServerSideRender.bind( this );
this.state = {
html: '',
type: '',
error: false,
fetching: false,
};
}
componentWillMount() {
if ( this.props.attributes.url ) {
// if the url is already there, we're loading a saved block, so we need to render
// a different thing, which is why this doesn't use 'fetching', as that
// is for when the user is putting in a new url on the placeholder form
this.setState( { fetching: true } );
this.doServerSideRender();
}
}
componentWillUnmount() {
// can't abort the fetch promise, so let it know we will unmount
this.unmounting = true;
}
getPhotoHtml( photo ) {
// 100% width for the preview so it fits nicely into the document, some "thumbnails" are
// acually the full size photo.
const photoPreview = <p><img src={ photo.thumbnail_url } alt={ photo.title } width="100%" /></p>;
return renderToString( photoPreview );
}
doServerSideRender( event ) {
if ( event ) {
event.preventDefault();
}
const { url } = this.props.attributes;
const apiURL = addQueryArgs( wpApiSettings.root + 'oembed/1.0/proxy', {
url: url,
_wpnonce: wpApiSettings.nonce,
} );
this.setState( { error: false, fetching: true } );
window.fetch( apiURL, {
credentials: 'include',
} ).then(
( response ) => {
if ( this.unmounting ) {
return;
}
response.json().then( ( obj ) => {
const { html, type } = obj;
if ( html ) {
this.setState( { html, type } );
} else if ( 'photo' === type ) {
this.setState( { html: this.getPhotoHtml( obj ), type } );
} else {
this.setState( { error: true } );
}
this.setState( { fetching: false } );
} );
}
);
}
render() {
const { html, type, error, fetching } = this.state;
const { align, url, caption } = this.props.attributes;
const { setAttributes, isSelected } = this.props;
const updateAlignment = ( nextAlign ) => setAttributes( { align: nextAlign } );
const controls = isSelected && (
<BlockControls key="controls">
<BlockAlignmentToolbar
value={ align }
onChange={ updateAlignment }
/>
</BlockControls>
);
if ( fetching ) {
return [
controls,
<div key="loading" className="wp-block-embed is-loading">
<Spinner />
<p>{ __( 'Embedding…' ) }</p>
</div>,
];
}
if ( ! html ) {
const label = sprintf( __( '%s URL' ), title );
return [
controls,
<Placeholder key="placeholder" icon={ icon } label={ label } className="wp-block-embed">
<form onSubmit={ this.doServerSideRender }>
<input
type="url"
value={ url || '' }
className="components-placeholder__input"
aria-label={ label }
placeholder={ __( 'Enter URL to embed here…' ) }
onChange={ ( event ) => setAttributes( { url: event.target.value } ) } />
<Button
isLarge
type="submit">
{ __( 'Embed' ) }
</Button>
{ error && <p className="components-placeholder__error">{ __( 'Sorry, we could not embed that content.' ) }</p> }
</form>
</Placeholder>,
];
}
const parsedUrl = parse( url );
const cannotPreview = includes( HOSTS_NO_PREVIEWS, parsedUrl.host.replace( /^www\./, '' ) );
const iframeTitle = sprintf( __( 'Embedded content from %s' ), parsedUrl.host );
let typeClassName = 'wp-block-embed';
if ( 'video' === type ) {
typeClassName += ' is-video';
}
return [
controls,
<figure key="embed" className={ typeClassName }>
{ ( cannotPreview ) ? (
<Placeholder icon={ icon } label={ __( 'Embed URL' ) }>
<p className="components-placeholder__error"><a href={ url }>{ url }</a></p>
<p className="components-placeholder__error">{ __( 'Previews for this are unavailable in the editor, sorry!' ) }</p>
</Placeholder>
) : (
<div className="wp-block-embed__wrapper">
<SandBox
html={ html }
title={ iframeTitle }
type={ type }
/>
</div>
) }
{ ( caption && caption.length > 0 ) || isSelected ? (
<RichText
tagName="figcaption"
placeholder={ __( 'Write caption…' ) }
value={ caption }
onChange={ ( value ) => setAttributes( { caption: value } ) }
isSelected={ isSelected }
inlineToolbar
/>
) : null }
</figure>,
];
}
},
save( { attributes } ) {
const { url, caption, align } = attributes;
if ( ! url ) {
return;
}
return (
<figure className={ align ? `align${ align }` : null }>
{ `\n${ url }\n` /* URL needs to be on its own line. */ }
{ caption && caption.length > 0 && <figcaption>{ caption }</figcaption> }
</figure>
);
},
};
}
export const name = 'core/embed';
export const settings = getEmbedBlockSettings( {
title: __( 'Embed' ),
icon: 'embed-generic',
transforms: {
from: [
{
type: 'raw',
isMatch: ( node ) => node.nodeName === 'P' && /^\s*(https?:\/\/\S+)\s*/i.test( node.textContent ),
transform: ( node ) => {
return createBlock( 'core/embed', {
url: node.textContent.trim(),
} );
},
},
],
},
} );
export const common = [
{
name: 'core-embed/twitter',
settings: getEmbedBlockSettings( {
title: 'Twitter',
icon: 'embed-post',
keywords: [ __( 'tweet' ) ],
} ),
},
{
name: 'core-embed/youtube',
settings: getEmbedBlockSettings( {
title: 'YouTube',
icon: 'embed-video',
keywords: [ __( 'music' ), __( 'video' ) ],
} ),
},
{
name: 'core-embed/facebook',
settings: getEmbedBlockSettings( {
title: 'Facebook',
icon: 'embed-post',
} ),
},
{
name: 'core-embed/instagram',
settings: getEmbedBlockSettings( {
title: 'Instagram',
icon: 'embed-photo',
keywords: [ __( 'image' ) ],
} ),
},
{
name: 'core-embed/wordpress',
settings: getEmbedBlockSettings( {
title: 'WordPress',
icon: 'embed-post',
keywords: [ __( 'post' ), __( 'blog' ) ],
} ),
},
{
name: 'core-embed/soundcloud',
settings: getEmbedBlockSettings( {
title: 'SoundCloud',
icon: 'embed-audio',
keywords: [ __( 'music' ), __( 'audio' ) ],
} ),
},
{
name: 'core-embed/spotify',
settings: getEmbedBlockSettings( {
title: 'Spotify',
icon: 'embed-audio',
keywords: [ __( 'music' ), __( 'audio' ) ],
} ),
},
{
name: 'core-embed/flickr',
settings: getEmbedBlockSettings( {
title: 'Flickr',
icon: 'embed-photo',
keywords: [ __( 'image' ) ],
} ),
},
{
name: 'core-embed/vimeo',
settings: getEmbedBlockSettings( {
title: 'Vimeo',
icon: 'embed-video',
keywords: [ __( 'video' ) ],
} ),
},
];
export const others = [
{
name: 'core-embed/animoto',
settings: getEmbedBlockSettings( {
title: 'Animoto',
icon: 'embed-video',
} ),
},
{
name: 'core-embed/cloudup',
settings: getEmbedBlockSettings( {
title: 'Cloudup',
icon: 'embed-post',
} ),
},
{
name: 'core-embed/collegehumor',
settings: getEmbedBlockSettings( {
title: 'CollegeHumor',
icon: 'embed-video',
} ),
},
{
name: 'core-embed/dailymotion',
settings: getEmbedBlockSettings( {
title: 'Dailymotion',
icon: 'embed-video',
} ),
},
{
name: 'core-embed/funnyordie',
settings: getEmbedBlockSettings( {
title: 'Funny or Die',
icon: 'embed-video',
} ),
},
{
name: 'core-embed/hulu',
settings: getEmbedBlockSettings( {
title: 'Hulu',
icon: 'embed-video',
} ),
},
{
name: 'core-embed/imgur',
settings: getEmbedBlockSettings( {
title: 'Imgur',
icon: 'embed-photo',
} ),
},
{
name: 'core-embed/issuu',
settings: getEmbedBlockSettings( {
title: 'Issuu',
icon: 'embed-post',
} ),
},
{
name: 'core-embed/kickstarter',
settings: getEmbedBlockSettings( {
title: 'Kickstarter',
icon: 'embed-post',
} ),
},
{
name: 'core-embed/meetup-com',
settings: getEmbedBlockSettings( {
title: 'Meetup.com',
icon: 'embed-post',
} ),
},
{
name: 'core-embed/mixcloud',
settings: getEmbedBlockSettings( {
title: 'Mixcloud',
icon: 'embed-audio',
keywords: [ __( 'music' ), __( 'audio' ) ],
} ),
},
{
name: 'core-embed/photobucket',
settings: getEmbedBlockSettings( {
title: 'Photobucket',
icon: 'embed-photo',
} ),
},
{
name: 'core-embed/polldaddy',
settings: getEmbedBlockSettings( {
title: 'Polldaddy',
icon: 'embed-post',
} ),
},
{
name: 'core-embed/reddit',
settings: getEmbedBlockSettings( {
title: 'Reddit',
icon: 'embed-post',
} ),
},
{
name: 'core-embed/reverbnation',
settings: getEmbedBlockSettings( {
title: 'ReverbNation',
icon: 'embed-audio',
} ),
},
{
name: 'core-embed/screencast',
settings: getEmbedBlockSettings( {
title: 'Screencast',
icon: 'embed-video',
} ),
},
{
name: 'core-embed/scribd',
settings: getEmbedBlockSettings( {
title: 'Scribd',
icon: 'embed-post',
} ),
},
{
name: 'core-embed/slideshare',
settings: getEmbedBlockSettings( {
title: 'Slideshare',
icon: 'embed-post',
} ),
},
{
name: 'core-embed/smugmug',
settings: getEmbedBlockSettings( {
title: 'SmugMug',
icon: 'embed-photo',
} ),
},
{
name: 'core-embed/speaker',
settings: getEmbedBlockSettings( {
title: 'Speaker',
icon: 'embed-audio',
} ),
},
{
name: 'core-embed/ted',
settings: getEmbedBlockSettings( {
title: 'TED',
icon: 'embed-video',
} ),
},
{
name: 'core-embed/tumblr',
settings: getEmbedBlockSettings( {
title: 'Tumblr',
icon: 'embed-post',
} ),
},
{
name: 'core-embed/videopress',
settings: getEmbedBlockSettings( {
title: 'VideoPress',
icon: 'embed-video',
keywords: [ __( 'video' ) ],
} ),
},
{
name: 'core-embed/wordpress-tv',
settings: getEmbedBlockSettings( {
title: 'WordPress.tv',
icon: 'embed-video',
} ),
},
];