-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
effects.js
639 lines (580 loc) · 18 KB
/
effects.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
/**
* External dependencies
*/
import { BEGIN, COMMIT, REVERT } from 'redux-optimist';
import { get, includes, last, map, castArray, uniqueId } from 'lodash';
/**
* WordPress dependencies
*/
import {
parse,
getBlockType,
switchToBlockType,
createBlock,
serialize,
isSharedBlock,
getDefaultBlockForPostFormat,
doBlocksMatchTemplate,
synchronizeBlocksWithTemplate,
} from '@wordpress/blocks';
import { __ } from '@wordpress/i18n';
import { speak } from '@wordpress/a11y';
/**
* Internal dependencies
*/
import { getPostEditUrl, getWPAdminURL } from '../utils/url';
import {
setupEditorState,
resetPost,
receiveBlocks,
receiveSharedBlocks,
replaceBlock,
replaceBlocks,
createSuccessNotice,
createErrorNotice,
createWarningNotice,
removeNotice,
savePost,
saveSharedBlock,
insertBlock,
removeBlocks,
selectBlock,
removeBlock,
resetBlocks,
setTemplateValidity,
} from './actions';
import {
getCurrentPost,
getCurrentPostType,
getEditedPostContent,
getPostEdits,
isCurrentPostPublished,
isEditedPostDirty,
isEditedPostNew,
isEditedPostSaveable,
getBlock,
getBlockCount,
getBlockRootUID,
getBlocks,
getSharedBlock,
getPreviousBlockUid,
getProvisionalBlockUID,
getSelectedBlock,
isBlockSelected,
getTemplate,
POST_UPDATE_TRANSACTION_ID,
getTemplateLock,
} from './selectors';
/**
* Module Constants
*/
const SAVE_POST_NOTICE_ID = 'SAVE_POST_NOTICE_ID';
const AUTOSAVE_POST_NOTICE_ID = 'AUTOSAVE_POST_NOTICE_ID';
const TRASH_POST_NOTICE_ID = 'TRASH_POST_NOTICE_ID';
const SHARED_BLOCK_NOTICE_ID = 'SHARED_BLOCK_NOTICE_ID';
/**
* Effect handler returning an action to remove the provisional block, if one
* is set.
*
* @param {Object} action Action object.
* @param {Object} store Data store instance.
*
* @return {?Object} Remove action, if provisional block is set.
*/
export function removeProvisionalBlock( action, store ) {
const state = store.getState();
const provisionalBlockUID = getProvisionalBlockUID( state );
if ( provisionalBlockUID && ! isBlockSelected( state, provisionalBlockUID ) ) {
return removeBlock( provisionalBlockUID, false );
}
}
export default {
REQUEST_POST_UPDATE( action, store ) {
const { dispatch, getState } = store;
const state = getState();
const post = getCurrentPost( state );
const edits = getPostEdits( state );
const toSend = {
...edits,
content: getEditedPostContent( state ),
id: post.id,
};
dispatch( {
type: 'UPDATE_POST',
edits: toSend,
optimist: { type: BEGIN, id: POST_UPDATE_TRANSACTION_ID },
} );
dispatch( removeNotice( SAVE_POST_NOTICE_ID ) );
dispatch( removeNotice( AUTOSAVE_POST_NOTICE_ID ) );
const basePath = wp.api.getPostTypeRoute( getCurrentPostType( state ) );
wp.apiRequest( { path: `/wp/v2/${ basePath }/${ post.id }`, method: 'PUT', data: toSend } ).then(
( newPost ) => {
dispatch( resetPost( newPost ) );
dispatch( {
type: 'REQUEST_POST_UPDATE_SUCCESS',
previousPost: post,
post: newPost,
edits: toSend,
optimist: { type: COMMIT, id: POST_UPDATE_TRANSACTION_ID },
} );
},
( err ) => {
dispatch( {
type: 'REQUEST_POST_UPDATE_FAILURE',
error: get( err, 'responseJSON', {
code: 'unknown_error',
message: __( 'An unknown error occurred.' ),
} ),
post,
edits,
optimist: { type: REVERT, id: POST_UPDATE_TRANSACTION_ID },
} );
}
);
},
REQUEST_POST_UPDATE_SUCCESS( action, store ) {
const { previousPost, post } = action;
const { dispatch } = store;
const publishStatus = [ 'publish', 'private', 'future' ];
const isPublished = includes( publishStatus, previousPost.status );
const willPublish = includes( publishStatus, post.status );
let noticeMessage;
let shouldShowLink = true;
if ( ! isPublished && ! willPublish ) {
// If saving a non published post, don't show any notice
noticeMessage = null;
} else if ( isPublished && ! willPublish ) {
// If undoing publish status, show specific notice
noticeMessage = __( 'Post reverted to draft.' );
shouldShowLink = false;
} else if ( ! isPublished && willPublish ) {
// If publishing or scheduling a post, show the corresponding
// publish message
noticeMessage = {
publish: __( 'Post published!' ),
private: __( 'Post published privately!' ),
future: __( 'Post scheduled!' ),
}[ post.status ];
} else {
// Generic fallback notice
noticeMessage = __( 'Post updated!' );
}
if ( noticeMessage ) {
dispatch( createSuccessNotice(
<p>
<span>{ noticeMessage }</span>
{ ' ' }
{ shouldShowLink && <a href={ post.link }>{ __( 'View post' ) }</a> }
</p>,
{ id: SAVE_POST_NOTICE_ID, spokenMessage: noticeMessage }
) );
}
if ( get( window.history.state, 'id' ) !== post.id ) {
window.history.replaceState(
{ id: post.id },
'Post ' + post.id,
getPostEditUrl( post.id )
);
}
},
REQUEST_POST_UPDATE_FAILURE( action, store ) {
const { post, edits } = action;
const { dispatch } = store;
const publishStatus = [ 'publish', 'private', 'future' ];
const isPublished = publishStatus.indexOf( post.status ) !== -1;
// If the post was being published, we show the corresponding publish error message
// Unless we publish an "updating failed" message
const messages = {
publish: __( 'Publishing failed' ),
private: __( 'Publishing failed' ),
future: __( 'Scheduling failed' ),
};
const noticeMessage = ! isPublished && publishStatus.indexOf( edits.status ) !== -1 ?
messages[ edits.status ] :
__( 'Updating failed' );
dispatch( createErrorNotice( noticeMessage, { id: SAVE_POST_NOTICE_ID } ) );
},
REQUEST_AUTOSAVE_NOTICE( action, store ) {
const { autosaveStatus } = action;
const { dispatch } = store;
const noticeMessage = __( 'There is an autosave of this post that is more recent than the version below.' );
if ( autosaveStatus ) {
dispatch( createWarningNotice(
<p>
<span>{ noticeMessage }</span>
{ ' ' }
{ <a href={ autosaveStatus.editLink }>{ __( 'View the autosave' ) }</a> }
</p>,
{
id: AUTOSAVE_POST_NOTICE_ID,
spokenMessage: noticeMessage,
}
) );
}
},
TRASH_POST( action, store ) {
const { dispatch, getState } = store;
const { postId } = action;
const basePath = wp.api.getPostTypeRoute( getCurrentPostType( getState() ) );
dispatch( removeNotice( TRASH_POST_NOTICE_ID ) );
wp.apiRequest( { path: `/wp/v2/${ basePath }/${ postId }`, method: 'DELETE' } ).then(
() => {
dispatch( {
...action,
type: 'TRASH_POST_SUCCESS',
} );
},
( err ) => {
dispatch( {
...action,
type: 'TRASH_POST_FAILURE',
error: get( err, 'responseJSON', {
code: 'unknown_error',
message: __( 'An unknown error occurred.' ),
} ),
} );
}
);
},
TRASH_POST_SUCCESS( action ) {
const { postId, postType } = action;
window.location.href = getWPAdminURL( 'edit.php', {
trashed: 1,
post_type: postType,
ids: postId,
} );
},
TRASH_POST_FAILURE( action, store ) {
const message = action.error.message && action.error.code !== 'unknown_error' ? action.error.message : __( 'Trashing failed' );
store.dispatch( createErrorNotice( message, { id: TRASH_POST_NOTICE_ID } ) );
},
REFRESH_POST( action, store ) {
const { dispatch, getState } = store;
const state = getState();
const post = getCurrentPost( state );
const basePath = wp.api.getPostTypeRoute( getCurrentPostType( state ) );
const data = {
context: 'edit',
};
wp.apiRequest( { path: `/wp/v2/${ basePath }/${ post.id }`, data } ).then(
( newPost ) => {
dispatch( resetPost( newPost ) );
}
);
},
MERGE_BLOCKS( action, store ) {
const { dispatch } = store;
const state = store.getState();
const [ blockAUid, blockBUid ] = action.blocks;
const blockA = getBlock( state, blockAUid );
const blockB = getBlock( state, blockBUid );
const blockType = getBlockType( blockA.name );
// Only focus the previous block if it's not mergeable
if ( ! blockType.merge ) {
dispatch( selectBlock( blockA.uid ) );
return;
}
// We can only merge blocks with similar types
// thus, we transform the block to merge first
const blocksWithTheSameType = blockA.name === blockB.name ?
[ blockB ] :
switchToBlockType( blockB, blockA.name );
// If the block types can not match, do nothing
if ( ! blocksWithTheSameType || ! blocksWithTheSameType.length ) {
return;
}
// Calling the merge to update the attributes and remove the block to be merged
const updatedAttributes = blockType.merge(
blockA.attributes,
blocksWithTheSameType[ 0 ].attributes
);
dispatch( selectBlock( blockA.uid, -1 ) );
dispatch( replaceBlocks(
[ blockA.uid, blockB.uid ],
[
{
...blockA,
attributes: {
...blockA.attributes,
...updatedAttributes,
},
},
...blocksWithTheSameType.slice( 1 ),
]
) );
},
AUTOSAVE( action, store ) {
const { getState, dispatch } = store;
const state = getState();
if ( ! isEditedPostSaveable( state ) ) {
return;
}
if ( ! isEditedPostNew( state ) && ! isEditedPostDirty( state ) ) {
return;
}
if ( isCurrentPostPublished( state ) ) {
// TODO: Publish autosave.
// - Autosaves are created as revisions for published posts, but
// the necessary REST API behavior does not yet exist
// - May need to check for whether the status of the edited post
// has changed from the saved copy (i.e. published -> pending)
return;
}
dispatch( savePost() );
},
SETUP_EDITOR( action ) {
const { post, settings } = action;
// Parse content as blocks
let blocks;
let isValidTemplate = true;
if ( post.content.raw ) {
blocks = parse( post.content.raw );
// Unlocked templates are considered always valid because they act as default values only.
isValidTemplate = (
! settings.template ||
settings.templateLock !== 'all' ||
doBlocksMatchTemplate( blocks, settings.template )
);
} else if ( settings.template ) {
blocks = synchronizeBlocksWithTemplate( [], settings.template );
} else if ( getDefaultBlockForPostFormat( post.format ) ) {
blocks = [ createBlock( getDefaultBlockForPostFormat( post.format ) ) ];
} else {
blocks = [];
}
// Include auto draft title in edits while not flagging post as dirty
const edits = {};
if ( post.status === 'auto-draft' ) {
edits.title = post.title.raw;
edits.status = 'draft';
}
return [
setTemplateValidity( isValidTemplate ),
setupEditorState( post, blocks, edits ),
];
},
SYNCHRONIZE_TEMPLATE( action, { getState } ) {
const state = getState();
const blocks = getBlocks( state );
const template = getTemplate( state );
const updatedBlockList = synchronizeBlocksWithTemplate( blocks, template );
return [
resetBlocks( updatedBlockList ),
setTemplateValidity( true ),
];
},
CHECK_TEMPLATE_VALIDITY( action, { getState } ) {
const state = getState();
const blocks = getBlocks( state );
const template = getTemplate( state );
const templateLock = getTemplateLock( state );
const isValid = (
! template ||
templateLock !== 'all' ||
doBlocksMatchTemplate( blocks, template )
);
return setTemplateValidity( isValid );
},
FETCH_SHARED_BLOCKS( action, store ) {
// TODO: these are potentially undefined, this fix is in place
// until there is a filter to not use shared blocks if undefined
const basePath = wp.api.getPostTypeRoute( 'wp_block' );
if ( ! basePath ) {
return;
}
const { id } = action;
const { dispatch } = store;
let result;
if ( id ) {
result = wp.apiRequest( { path: `/wp/v2/${ basePath }/${ id }` } );
} else {
result = wp.apiRequest( { path: `/wp/v2/${ basePath }` } );
}
result.then(
( sharedBlockOrBlocks ) => {
dispatch( receiveSharedBlocks( map(
castArray( sharedBlockOrBlocks ),
( sharedBlock ) => ( {
sharedBlock,
parsedBlock: parse( sharedBlock.content )[ 0 ],
} )
) ) );
dispatch( {
type: 'FETCH_SHARED_BLOCKS_SUCCESS',
id,
} );
},
( error ) => {
dispatch( {
type: 'FETCH_SHARED_BLOCKS_FAILURE',
id,
error: error.responseJSON || {
code: 'unknown_error',
message: __( 'An unknown error occurred.' ),
},
} );
}
);
},
RECEIVE_SHARED_BLOCKS( action ) {
return receiveBlocks( map( action.results, 'parsedBlock' ) );
},
SAVE_SHARED_BLOCK( action, store ) {
// TODO: these are potentially undefined, this fix is in place
// until there is a filter to not use shared blocks if undefined
const basePath = wp.api.getPostTypeRoute( 'wp_block' );
if ( ! basePath ) {
return;
}
const { id } = action;
const { dispatch } = store;
const state = store.getState();
const { uid, title, isTemporary } = getSharedBlock( state, id );
const { name, attributes, innerBlocks } = getBlock( state, uid );
const content = serialize( createBlock( name, attributes, innerBlocks ) );
const data = isTemporary ? { title, content } : { id, title, content };
const path = isTemporary ? `/wp/v2/${ basePath }` : `/wp/v2/${ basePath }/${ id }`;
const method = isTemporary ? 'POST' : 'PUT';
wp.apiRequest( { path, data, method } ).then(
( updatedSharedBlock ) => {
dispatch( {
type: 'SAVE_SHARED_BLOCK_SUCCESS',
updatedId: updatedSharedBlock.id,
id,
} );
const message = isTemporary ? __( 'Block created.' ) : __( 'Block updated.' );
dispatch( createSuccessNotice( message, { id: SHARED_BLOCK_NOTICE_ID } ) );
},
( error ) => {
dispatch( { type: 'SAVE_SHARED_BLOCK_FAILURE', id } );
const message = __( 'An unknown error occurred.' );
dispatch( createErrorNotice( get( error.responseJSON, 'message', message ), {
id: SHARED_BLOCK_NOTICE_ID,
spokenMessage: message,
} ) );
}
);
},
DELETE_SHARED_BLOCK( action, store ) {
// TODO: these are potentially undefined, this fix is in place
// until there is a filter to not use shared blocks if undefined
const basePath = wp.api.getPostTypeRoute( 'wp_block' );
if ( ! basePath ) {
return;
}
const { id } = action;
const { getState, dispatch } = store;
// Don't allow a shared block with a temporary ID to be deleted
const sharedBlock = getSharedBlock( getState(), id );
if ( ! sharedBlock || sharedBlock.isTemporary ) {
return;
}
// Remove any other blocks that reference this shared block
const allBlocks = getBlocks( getState() );
const associatedBlocks = allBlocks.filter( block => isSharedBlock( block ) && block.attributes.ref === id );
const associatedBlockUids = associatedBlocks.map( block => block.uid );
const transactionId = uniqueId();
dispatch( {
type: 'REMOVE_SHARED_BLOCK',
id,
optimist: { type: BEGIN, id: transactionId },
} );
// Remove the parsed block.
dispatch( removeBlocks( [
...associatedBlockUids,
sharedBlock.uid,
] ) );
wp.apiRequest( { path: `/wp/v2/${ basePath }/${ id }`, method: 'DELETE' } ).then(
() => {
dispatch( {
type: 'DELETE_SHARED_BLOCK_SUCCESS',
id,
optimist: { type: COMMIT, id: transactionId },
} );
const message = __( 'Block deleted.' );
dispatch( createSuccessNotice( message, { id: SHARED_BLOCK_NOTICE_ID } ) );
},
( error ) => {
dispatch( {
type: 'DELETE_SHARED_BLOCK_FAILURE',
id,
optimist: { type: REVERT, id: transactionId },
} );
const message = __( 'An unknown error occurred.' );
dispatch( createErrorNotice( get( error.responseJSON, 'message', message ), {
id: SHARED_BLOCK_NOTICE_ID,
spokenMessage: message,
} ) );
}
);
},
CONVERT_BLOCK_TO_STATIC( action, store ) {
const state = store.getState();
const oldBlock = getBlock( state, action.uid );
const sharedBlock = getSharedBlock( state, oldBlock.attributes.ref );
const referencedBlock = getBlock( state, sharedBlock.uid );
const newBlock = createBlock( referencedBlock.name, referencedBlock.attributes );
store.dispatch( replaceBlock( oldBlock.uid, newBlock ) );
},
CONVERT_BLOCK_TO_SHARED( action, store ) {
const { getState, dispatch } = store;
const parsedBlock = getBlock( getState(), action.uid );
const sharedBlock = {
id: uniqueId( 'shared' ),
uid: parsedBlock.uid,
title: __( 'Untitled block' ),
};
dispatch( receiveSharedBlocks( [ {
sharedBlock,
parsedBlock,
} ] ) );
dispatch( saveSharedBlock( sharedBlock.id ) );
dispatch( replaceBlock(
parsedBlock.uid,
createBlock( 'core/block', {
ref: sharedBlock.id,
layout: parsedBlock.attributes.layout,
} )
) );
// Re-add the original block to the store, since replaceBlock() will have removed it
dispatch( receiveBlocks( [ parsedBlock ] ) );
},
CREATE_NOTICE( { notice: { content, spokenMessage } } ) {
const message = spokenMessage || content;
speak( message, 'assertive' );
},
EDIT_POST( action, { getState } ) {
const format = get( action, 'edits.format' );
if ( ! format ) {
return;
}
const blockName = getDefaultBlockForPostFormat( format );
if ( blockName && getBlockCount( getState() ) === 0 ) {
return insertBlock( createBlock( blockName ) );
}
},
CLEAR_SELECTED_BLOCK: removeProvisionalBlock,
SELECT_BLOCK: removeProvisionalBlock,
MULTI_SELECT: removeProvisionalBlock,
REMOVE_BLOCKS( action, { getState, dispatch } ) {
// if the action says previous block should not be selected don't do anything.
if ( ! action.selectPrevious ) {
return;
}
const firstRemovedBlockUID = action.uids[ 0 ];
const state = getState();
const currentSelectedBlock = getSelectedBlock( state );
// recreate the state before the block was removed.
const previousState = { ...state, editor: { present: last( state.editor.past ) } };
// rootUID of the removed block.
const rootUID = getBlockRootUID( previousState, firstRemovedBlockUID );
// UID of the block that was before the removed block
// or the rootUID if the removed block was the first amongst his siblings.
const blockUIDToSelect = getPreviousBlockUid( previousState, firstRemovedBlockUID ) || rootUID;
// Dispatch select block action if the currently selected block
// is not already the block we want to be selected.
if ( blockUIDToSelect !== currentSelectedBlock ) {
dispatch( selectBlock( blockUIDToSelect ) );
}
},
};