-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathutils.js
623 lines (597 loc) · 14.8 KB
/
utils.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
/**
* WordPress dependencies
*/
import { getBlockSupport } from '@wordpress/blocks';
import { memo, useMemo, useEffect, useId, useState } from '@wordpress/element';
import { useDispatch } from '@wordpress/data';
import { createHigherOrderComponent } from '@wordpress/compose';
import { addFilter } from '@wordpress/hooks';
/**
* Internal dependencies
*/
import {
useBlockEditContext,
mayDisplayControlsKey,
mayDisplayParentControlsKey,
} from '../components/block-edit/context';
import { useSettings } from '../components';
import { useSettingsForBlockElement } from '../components/global-styles/hooks';
import { getValueFromObjectPath, setImmutably } from '../utils/object';
import { store as blockEditorStore } from '../store';
import { unlock } from '../lock-unlock';
/**
* External dependencies
*/
import classnames from 'classnames';
/**
* Removed falsy values from nested object.
*
* @param {*} object
* @return {*} Object cleaned from falsy values
*/
export const cleanEmptyObject = ( object ) => {
if (
object === null ||
typeof object !== 'object' ||
Array.isArray( object )
) {
return object;
}
const cleanedNestedObjects = Object.entries( object )
.map( ( [ key, value ] ) => [ key, cleanEmptyObject( value ) ] )
.filter( ( [ , value ] ) => value !== undefined );
return ! cleanedNestedObjects.length
? undefined
: Object.fromEntries( cleanedNestedObjects );
};
export function transformStyles(
activeSupports,
migrationPaths,
result,
source,
index,
results
) {
// If there are no active supports return early.
if (
Object.values( activeSupports ?? {} ).every(
( isActive ) => ! isActive
)
) {
return result;
}
// If the condition verifies we are probably in the presence of a wrapping transform
// e.g: nesting paragraphs in a group or columns and in that case the styles should not be transformed.
if ( results.length === 1 && result.innerBlocks.length === source.length ) {
return result;
}
// For cases where we have a transform from one block to multiple blocks
// or multiple blocks to one block we apply the styles of the first source block
// to the result(s).
let referenceBlockAttributes = source[ 0 ]?.attributes;
// If we are in presence of transform between more than one block in the source
// that has more than one block in the result
// we apply the styles on source N to the result N,
// if source N does not exists we do nothing.
if ( results.length > 1 && source.length > 1 ) {
if ( source[ index ] ) {
referenceBlockAttributes = source[ index ]?.attributes;
} else {
return result;
}
}
let returnBlock = result;
Object.entries( activeSupports ).forEach( ( [ support, isActive ] ) => {
if ( isActive ) {
migrationPaths[ support ].forEach( ( path ) => {
const styleValue = getValueFromObjectPath(
referenceBlockAttributes,
path
);
if ( styleValue ) {
returnBlock = {
...returnBlock,
attributes: setImmutably(
returnBlock.attributes,
path,
styleValue
),
};
}
} );
}
} );
return returnBlock;
}
/**
* Check whether serialization of specific block support feature or set should
* be skipped.
*
* @param {string|Object} blockNameOrType Block name or block type object.
* @param {string} featureSet Name of block support feature set.
* @param {string} feature Name of the individual feature to check.
*
* @return {boolean} Whether serialization should occur.
*/
export function shouldSkipSerialization(
blockNameOrType,
featureSet,
feature
) {
const support = getBlockSupport( blockNameOrType, featureSet );
const skipSerialization = support?.__experimentalSkipSerialization;
if ( Array.isArray( skipSerialization ) ) {
return skipSerialization.includes( feature );
}
return skipSerialization;
}
export function useStyleOverride( { id, css, assets, __unstableType } = {} ) {
const { setStyleOverride, deleteStyleOverride } = unlock(
useDispatch( blockEditorStore )
);
const fallbackId = useId();
useEffect( () => {
// Unmount if there is CSS and assets are empty.
if ( ! css && ! assets ) return;
const _id = id || fallbackId;
setStyleOverride( _id, {
id,
css,
assets,
__unstableType,
} );
return () => {
deleteStyleOverride( _id );
};
}, [
id,
css,
assets,
__unstableType,
fallbackId,
setStyleOverride,
deleteStyleOverride,
] );
}
/**
* Based on the block and its context, returns an object of all the block settings.
* This object can be passed as a prop to all the Styles UI components
* (TypographyPanel, DimensionsPanel...).
*
* @param {string} name Block name.
* @param {*} parentLayout Parent layout.
*
* @return {Object} Settings object.
*/
export function useBlockSettings( name, parentLayout ) {
const [
backgroundImage,
backgroundSize,
fontFamilies,
userFontSizes,
themeFontSizes,
defaultFontSizes,
defaultFontSizesEnabled,
customFontSize,
fontStyle,
fontWeight,
lineHeight,
textColumns,
textDecoration,
writingMode,
textTransform,
letterSpacing,
padding,
margin,
blockGap,
spacingSizes,
units,
aspectRatio,
minHeight,
layout,
borderColor,
borderRadius,
borderStyle,
borderWidth,
customColorsEnabled,
customColors,
customDuotone,
themeColors,
defaultColors,
defaultPalette,
defaultDuotone,
userDuotonePalette,
themeDuotonePalette,
defaultDuotonePalette,
userGradientPalette,
themeGradientPalette,
defaultGradientPalette,
defaultGradients,
areCustomGradientsEnabled,
isBackgroundEnabled,
isLinkEnabled,
isTextEnabled,
isHeadingEnabled,
isButtonEnabled,
shadow,
] = useSettings(
'background.backgroundImage',
'background.backgroundSize',
'typography.fontFamilies',
'typography.fontSizes.custom',
'typography.fontSizes.theme',
'typography.fontSizes.default',
'typography.defaultFontSizes',
'typography.customFontSize',
'typography.fontStyle',
'typography.fontWeight',
'typography.lineHeight',
'typography.textColumns',
'typography.textDecoration',
'typography.writingMode',
'typography.textTransform',
'typography.letterSpacing',
'spacing.padding',
'spacing.margin',
'spacing.blockGap',
'spacing.spacingSizes',
'spacing.units',
'dimensions.aspectRatio',
'dimensions.minHeight',
'layout',
'border.color',
'border.radius',
'border.style',
'border.width',
'color.custom',
'color.palette.custom',
'color.customDuotone',
'color.palette.theme',
'color.palette.default',
'color.defaultPalette',
'color.defaultDuotone',
'color.duotone.custom',
'color.duotone.theme',
'color.duotone.default',
'color.gradients.custom',
'color.gradients.theme',
'color.gradients.default',
'color.defaultGradients',
'color.customGradient',
'color.background',
'color.link',
'color.text',
'color.heading',
'color.button',
'shadow'
);
const rawSettings = useMemo( () => {
return {
background: {
backgroundImage,
backgroundSize,
},
color: {
palette: {
custom: customColors,
theme: themeColors,
default: defaultColors,
},
gradients: {
custom: userGradientPalette,
theme: themeGradientPalette,
default: defaultGradientPalette,
},
duotone: {
custom: userDuotonePalette,
theme: themeDuotonePalette,
default: defaultDuotonePalette,
},
defaultGradients,
defaultPalette,
defaultDuotone,
custom: customColorsEnabled,
customGradient: areCustomGradientsEnabled,
customDuotone,
background: isBackgroundEnabled,
link: isLinkEnabled,
heading: isHeadingEnabled,
button: isButtonEnabled,
text: isTextEnabled,
},
typography: {
fontFamilies: {
custom: fontFamilies,
},
fontSizes: {
custom: userFontSizes,
theme: themeFontSizes,
default: defaultFontSizes,
},
customFontSize,
defaultFontSizes: defaultFontSizesEnabled,
fontStyle,
fontWeight,
lineHeight,
textColumns,
textDecoration,
textTransform,
letterSpacing,
writingMode,
},
spacing: {
spacingSizes: {
custom: spacingSizes,
},
padding,
margin,
blockGap,
units,
},
border: {
color: borderColor,
radius: borderRadius,
style: borderStyle,
width: borderWidth,
},
dimensions: {
aspectRatio,
minHeight,
},
layout,
parentLayout,
shadow,
};
}, [
backgroundImage,
backgroundSize,
fontFamilies,
userFontSizes,
themeFontSizes,
defaultFontSizes,
defaultFontSizesEnabled,
customFontSize,
fontStyle,
fontWeight,
lineHeight,
textColumns,
textDecoration,
textTransform,
letterSpacing,
writingMode,
padding,
margin,
blockGap,
spacingSizes,
units,
aspectRatio,
minHeight,
layout,
parentLayout,
borderColor,
borderRadius,
borderStyle,
borderWidth,
customColorsEnabled,
customColors,
customDuotone,
themeColors,
defaultColors,
defaultPalette,
defaultDuotone,
userDuotonePalette,
themeDuotonePalette,
defaultDuotonePalette,
userGradientPalette,
themeGradientPalette,
defaultGradientPalette,
defaultGradients,
areCustomGradientsEnabled,
isBackgroundEnabled,
isLinkEnabled,
isTextEnabled,
isHeadingEnabled,
isButtonEnabled,
shadow,
] );
return useSettingsForBlockElement( rawSettings, name );
}
export function createBlockEditFilter( features ) {
// We don't want block controls to re-render when typing inside a block.
// `memo` will prevent re-renders unless props change, so only pass the
// needed props and not the whole attributes object.
features = features.map( ( settings ) => {
return { ...settings, Edit: memo( settings.edit ) };
} );
const withBlockEditHooks = createHigherOrderComponent(
( OriginalBlockEdit ) => ( props ) => {
const context = useBlockEditContext();
// CAUTION: code added before this line will be executed for all
// blocks, not just those that support the feature! Code added
// above this line should be carefully evaluated for its impact on
// performance.
return [
...features.map( ( feature, i ) => {
const {
Edit,
hasSupport,
attributeKeys = [],
shareWithChildBlocks,
} = feature;
const shouldDisplayControls =
context[ mayDisplayControlsKey ] ||
( context[ mayDisplayParentControlsKey ] &&
shareWithChildBlocks );
if (
! shouldDisplayControls ||
! hasSupport( props.name )
) {
return null;
}
const neededProps = {};
for ( const key of attributeKeys ) {
if ( props.attributes[ key ] ) {
neededProps[ key ] = props.attributes[ key ];
}
}
return (
<Edit
// We can use the index because the array length
// is fixed per page load right now.
key={ i }
name={ props.name }
isSelected={ props.isSelected }
clientId={ props.clientId }
setAttributes={ props.setAttributes }
__unstableParentLayout={
props.__unstableParentLayout
}
// This component is pure, so only pass needed
// props!!!
{ ...neededProps }
/>
);
} ),
<OriginalBlockEdit key="edit" { ...props } />,
];
},
'withBlockEditHooks'
);
addFilter( 'editor.BlockEdit', 'core/editor/hooks', withBlockEditHooks );
}
function BlockProps( { index, useBlockProps, setAllWrapperProps, ...props } ) {
const wrapperProps = useBlockProps( props );
const setWrapperProps = ( next ) =>
setAllWrapperProps( ( prev ) => {
const nextAll = [ ...prev ];
nextAll[ index ] = next;
return nextAll;
} );
// Setting state after every render is fine because this component is
// pure and will only re-render when needed props change.
useEffect( () => {
// We could shallow compare the props, but since this component only
// changes when needed attributes change, the benefit is probably small.
setWrapperProps( wrapperProps );
return () => {
setWrapperProps( undefined );
};
} );
return null;
}
const BlockPropsPure = memo( BlockProps );
export function createBlockListBlockFilter( features ) {
const withBlockListBlockHooks = createHigherOrderComponent(
( BlockListBlock ) => ( props ) => {
const [ allWrapperProps, setAllWrapperProps ] = useState(
Array( features.length ).fill( undefined )
);
return [
...features.map( ( feature, i ) => {
const {
hasSupport,
attributeKeys = [],
useBlockProps,
} = feature;
const neededProps = {};
for ( const key of attributeKeys ) {
if ( props.attributes[ key ] ) {
neededProps[ key ] = props.attributes[ key ];
}
}
if (
// Skip rendering if none of the needed attributes are
// set.
! Object.keys( neededProps ).length ||
! hasSupport( props.name )
) {
return null;
}
return (
<BlockPropsPure
// We can use the index because the array length
// is fixed per page load right now.
key={ i }
index={ i }
useBlockProps={ useBlockProps }
// This component is pure, so we must pass a stable
// function reference.
setAllWrapperProps={ setAllWrapperProps }
name={ props.name }
// This component is pure, so only pass needed
// props!!!
{ ...neededProps }
/>
);
} ),
<BlockListBlock
key="edit"
{ ...props }
wrapperProps={ allWrapperProps
.filter( Boolean )
.reduce( ( acc, wrapperProps ) => {
return {
...acc,
...wrapperProps,
className: classnames(
acc.className,
wrapperProps.className
),
style: {
...acc.style,
...wrapperProps.style,
},
};
}, props.wrapperProps || {} ) }
/>,
];
},
'withBlockListBlockHooks'
);
addFilter(
'editor.BlockListBlock',
'core/editor/hooks',
withBlockListBlockHooks
);
}
export function createBlockSaveFilter( features ) {
function extraPropsFromHooks( props, name, attributes ) {
return features.reduce( ( accu, feature ) => {
const { hasSupport, attributeKeys = [], addSaveProps } = feature;
const neededAttributes = {};
for ( const key of attributeKeys ) {
if ( attributes[ key ] ) {
neededAttributes[ key ] = attributes[ key ];
}
}
if (
// Skip rendering if none of the needed attributes are
// set.
! Object.keys( neededAttributes ).length ||
! hasSupport( name )
) {
return accu;
}
return addSaveProps( accu, name, neededAttributes );
}, props );
}
addFilter(
'blocks.getSaveContent.extraProps',
'core/editor/hooks',
extraPropsFromHooks,
0
);
addFilter(
'blocks.getSaveContent.extraProps',
'core/editor/hooks',
( props ) => {
// Previously we had a filter deleting the className if it was an empty
// string. That filter is no longer running, so now we need to delete it
// here.
if ( props.hasOwnProperty( 'className' ) && ! props.className ) {
delete props.className;
}
return props;
}
);
}