-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathreusable-blocks.js
289 lines (256 loc) · 8.29 KB
/
reusable-blocks.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
/**
* External dependencies
*/
import { compact, map, uniqueId } from 'lodash';
import { BEGIN, COMMIT, REVERT } from 'redux-optimist';
/**
* WordPress dependencies
*/
import apiFetch from '@wordpress/api-fetch';
import {
parse,
serialize,
createBlock,
isReusableBlock,
cloneBlock,
} from '@wordpress/blocks';
import { __ } from '@wordpress/i18n';
// TODO: Ideally this would be the only dispatch in scope. This requires either
// refactoring editor actions to yielded controls, or replacing direct dispatch
// on the editor store with action creators (e.g. `REMOVE_REUSABLE_BLOCK`).
import { dispatch as dataDispatch, select } from '@wordpress/data';
/**
* Internal dependencies
*/
import {
__experimentalReceiveReusableBlocks as receiveReusableBlocksAction,
__experimentalSaveReusableBlock as saveReusableBlock,
} from '../actions';
import {
__experimentalGetReusableBlock as getReusableBlock,
} from '../selectors';
import { getPostRawValue } from '../reducer';
/**
* Module Constants
*/
const REUSABLE_BLOCK_NOTICE_ID = 'REUSABLE_BLOCK_NOTICE_ID';
/**
* Fetch Reusable Blocks Effect Handler.
*
* @param {Object} action action object.
* @param {Object} store Redux Store.
*/
export const fetchReusableBlocks = async ( action, store ) => {
const { id } = action;
const { dispatch } = store;
// TODO: these are potentially undefined, this fix is in place
// until there is a filter to not use reusable blocks if undefined
const postType = await apiFetch( { path: '/wp/v2/types/wp_block' } );
if ( ! postType ) {
return;
}
try {
let posts;
if ( id ) {
posts = [ await apiFetch( { path: `/wp/v2/${ postType.rest_base }/${ id }` } ) ];
} else {
posts = await apiFetch( { path: `/wp/v2/${ postType.rest_base }?per_page=-1` } );
}
const results = compact( map( posts, ( post ) => {
if ( post.status !== 'publish' || post.content.protected ) {
return null;
}
const parsedBlocks = parse( post.content.raw );
return {
reusableBlock: {
id: post.id,
title: getPostRawValue( post.title ),
},
parsedBlock: parsedBlocks.length === 1 ?
parsedBlocks[ 0 ] :
createBlock( 'core/template', {}, parsedBlocks ),
};
} ) );
if ( results.length ) {
dispatch( receiveReusableBlocksAction( results ) );
}
dispatch( {
type: 'FETCH_REUSABLE_BLOCKS_SUCCESS',
id,
} );
} catch ( error ) {
dispatch( {
type: 'FETCH_REUSABLE_BLOCKS_FAILURE',
id,
error,
} );
}
};
/**
* Save Reusable Blocks Effect Handler.
*
* @param {Object} action action object.
* @param {Object} store Redux Store.
*/
export const saveReusableBlocks = async ( action, store ) => {
// TODO: these are potentially undefined, this fix is in place
// until there is a filter to not use reusable blocks if undefined
const postType = await apiFetch( { path: '/wp/v2/types/wp_block' } );
if ( ! postType ) {
return;
}
const { id } = action;
const { dispatch } = store;
const state = store.getState();
const { clientId, title, isTemporary } = getReusableBlock( state, id );
const reusableBlock = select( 'core/block-editor' ).getBlock( clientId );
const content = serialize( reusableBlock.name === 'core/template' ? reusableBlock.innerBlocks : reusableBlock );
const data = isTemporary ? { title, content, status: 'publish' } : { id, title, content, status: 'publish' };
const path = isTemporary ? `/wp/v2/${ postType.rest_base }` : `/wp/v2/${ postType.rest_base }/${ id }`;
const method = isTemporary ? 'POST' : 'PUT';
try {
const updatedReusableBlock = await apiFetch( { path, data, method } );
dispatch( {
type: 'SAVE_REUSABLE_BLOCK_SUCCESS',
updatedId: updatedReusableBlock.id,
id,
} );
const message = isTemporary ? __( 'Block created.' ) : __( 'Block updated.' );
dataDispatch( 'core/notices' ).createSuccessNotice( message, {
id: REUSABLE_BLOCK_NOTICE_ID,
} );
dataDispatch( 'core/block-editor' ).__unstableSaveReusableBlock( id, updatedReusableBlock.id );
} catch ( error ) {
dispatch( { type: 'SAVE_REUSABLE_BLOCK_FAILURE', id } );
dataDispatch( 'core/notices' ).createErrorNotice( error.message, {
id: REUSABLE_BLOCK_NOTICE_ID,
} );
}
};
/**
* Delete Reusable Blocks Effect Handler.
*
* @param {Object} action action object.
* @param {Object} store Redux Store.
*/
export const deleteReusableBlocks = async ( action, store ) => {
// TODO: these are potentially undefined, this fix is in place
// until there is a filter to not use reusable blocks if undefined
const postType = await apiFetch( { path: '/wp/v2/types/wp_block' } );
if ( ! postType ) {
return;
}
const { id } = action;
const { getState, dispatch } = store;
// Don't allow a reusable block with a temporary ID to be deleted
const reusableBlock = getReusableBlock( getState(), id );
if ( ! reusableBlock || reusableBlock.isTemporary ) {
return;
}
// Remove any other blocks that reference this reusable block
const allBlocks = select( 'core/block-editor' ).getBlocks();
const associatedBlocks = allBlocks.filter( ( block ) => isReusableBlock( block ) && block.attributes.ref === id );
const associatedBlockClientIds = associatedBlocks.map( ( block ) => block.clientId );
const transactionId = uniqueId();
dispatch( {
type: 'REMOVE_REUSABLE_BLOCK',
id,
optimist: { type: BEGIN, id: transactionId },
} );
// Remove the parsed block.
dataDispatch( 'core/block-editor' ).removeBlocks( [
...associatedBlockClientIds,
reusableBlock.clientId,
] );
try {
await apiFetch( {
path: `/wp/v2/${ postType.rest_base }/${ id }`,
method: 'DELETE',
} );
dispatch( {
type: 'DELETE_REUSABLE_BLOCK_SUCCESS',
id,
optimist: { type: COMMIT, id: transactionId },
} );
const message = __( 'Block deleted.' );
dataDispatch( 'core/notices' ).createSuccessNotice( message, {
id: REUSABLE_BLOCK_NOTICE_ID,
} );
} catch ( error ) {
dispatch( {
type: 'DELETE_REUSABLE_BLOCK_FAILURE',
id,
optimist: { type: REVERT, id: transactionId },
} );
dataDispatch( 'core/notices' ).createErrorNotice( error.message, {
id: REUSABLE_BLOCK_NOTICE_ID,
} );
}
};
/**
* Receive Reusable Blocks Effect Handler.
*
* @param {Object} action action object.
*/
export const receiveReusableBlocks = ( action ) => {
dataDispatch( 'core/block-editor' ).receiveBlocks( map( action.results, 'parsedBlock' ) );
};
/**
* Convert a reusable block to a static block effect handler
*
* @param {Object} action action object.
* @param {Object} store Redux Store.
*/
export const convertBlockToStatic = ( action, store ) => {
const state = store.getState();
const oldBlock = select( 'core/block-editor' ).getBlock( action.clientId );
const reusableBlock = getReusableBlock( state, oldBlock.attributes.ref );
const referencedBlock = select( 'core/block-editor' ).getBlock( reusableBlock.clientId );
let newBlocks;
if ( referencedBlock.name === 'core/template' ) {
newBlocks = referencedBlock.innerBlocks.map( ( innerBlock ) => cloneBlock( innerBlock ) );
} else {
newBlocks = [ cloneBlock( referencedBlock ) ];
}
dataDispatch( 'core/block-editor' ).replaceBlocks( oldBlock.clientId, newBlocks );
};
/**
* Convert a static block to a reusable block effect handler
*
* @param {Object} action action object.
* @param {Object} store Redux Store.
*/
export const convertBlockToReusable = ( action, store ) => {
const { dispatch } = store;
let parsedBlock;
if ( action.clientIds.length === 1 ) {
parsedBlock = select( 'core/block-editor' ).getBlock( action.clientIds[ 0 ] );
} else {
parsedBlock = createBlock(
'core/template',
{},
select( 'core/block-editor' ).getBlocksByClientId( action.clientIds )
);
// This shouldn't be necessary but at the moment
// we expect the content of the shared blocks to live in the blocks state.
dataDispatch( 'core/block-editor' ).receiveBlocks( [ parsedBlock ] );
}
const reusableBlock = {
id: uniqueId( 'reusable' ),
clientId: parsedBlock.clientId,
title: __( 'Untitled Reusable Block' ),
};
dispatch( receiveReusableBlocksAction( [ {
reusableBlock,
parsedBlock,
} ] ) );
dispatch( saveReusableBlock( reusableBlock.id ) );
dataDispatch( 'core/block-editor' ).replaceBlocks(
action.clientIds,
createBlock( 'core/block', {
ref: reusableBlock.id,
} )
);
// Re-add the original block to the store, since replaceBlock() will have removed it
dataDispatch( 'core/block-editor' ).receiveBlocks( [ parsedBlock ] );
};