-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathtransforms.js
298 lines (286 loc) · 7.16 KB
/
transforms.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
/**
* WordPress dependencies
*/
import { createBlock } from '@wordpress/blocks';
/**
* Internal dependencies
*/
import { IMAGE_BACKGROUND_TYPE, VIDEO_BACKGROUND_TYPE } from './shared';
import cleanEmptyObject from '../utils/clean-empty-object';
const transforms = {
from: [
{
type: 'block',
blocks: [ 'core/image' ],
transform: ( { caption, url, alt, align, id, anchor, style } ) =>
createBlock(
'core/cover',
{
dimRatio: 50,
url,
alt,
align,
id,
anchor,
style: {
color: {
duotone: style?.color?.duotone,
},
},
},
[
createBlock( 'core/paragraph', {
content: caption,
fontSize: 'large',
align: 'center',
} ),
]
),
},
{
type: 'block',
blocks: [ 'core/video' ],
transform: ( { caption, src, align, id, anchor } ) =>
createBlock(
'core/cover',
{
dimRatio: 50,
url: src,
align,
id,
backgroundType: VIDEO_BACKGROUND_TYPE,
anchor,
},
[
createBlock( 'core/paragraph', {
content: caption,
fontSize: 'large',
align: 'center',
} ),
]
),
},
{
type: 'block',
blocks: [ 'core/group' ],
transform: ( attributes, innerBlocks ) => {
const { align, anchor, backgroundColor, gradient, style } =
attributes;
// If the Group block being transformed has a Cover block as its
// only child return that Cover block.
if (
innerBlocks?.length === 1 &&
innerBlocks[ 0 ]?.name === 'core/cover'
) {
return createBlock(
'core/cover',
innerBlocks[ 0 ].attributes,
innerBlocks[ 0 ].innerBlocks
);
}
// If no background or gradient color is provided, default to 50% opacity.
// This matches the styling of a Cover block with a background image,
// in the state where a background image has been removed.
const dimRatio =
backgroundColor ||
gradient ||
style?.color?.background ||
style?.color?.gradient
? undefined
: 50;
// Move the background or gradient color to the parent Cover block.
const parentAttributes = {
align,
anchor,
dimRatio,
overlayColor: backgroundColor,
customOverlayColor: style?.color?.background,
gradient,
customGradient: style?.color?.gradient,
};
const attributesWithoutBackgroundColors = {
...attributes,
backgroundColor: undefined,
gradient: undefined,
style: cleanEmptyObject( {
...attributes?.style,
color: style?.color
? {
...style?.color,
background: undefined,
gradient: undefined,
}
: undefined,
} ),
};
// Preserve the block by nesting it within the Cover block,
// instead of converting the Group block directly to the Cover block.
return createBlock( 'core/cover', parentAttributes, [
createBlock(
'core/group',
attributesWithoutBackgroundColors,
innerBlocks
),
] );
},
},
],
to: [
{
type: 'block',
blocks: [ 'core/image' ],
isMatch: ( {
backgroundType,
url,
overlayColor,
customOverlayColor,
gradient,
customGradient,
} ) => {
if ( url ) {
// If a url exists the transform could happen if that URL represents an image background.
return backgroundType === IMAGE_BACKGROUND_TYPE;
}
// If a url is not set the transform could happen if the cover has no background color or gradient;
return (
! overlayColor &&
! customOverlayColor &&
! gradient &&
! customGradient
);
},
transform: ( { title, url, alt, align, id, anchor, style } ) =>
createBlock( 'core/image', {
caption: title,
url,
alt,
align,
id,
anchor,
style: {
color: {
duotone: style?.color?.duotone,
},
},
} ),
},
{
type: 'block',
blocks: [ 'core/video' ],
isMatch: ( {
backgroundType,
url,
overlayColor,
customOverlayColor,
gradient,
customGradient,
} ) => {
if ( url ) {
// If a url exists the transform could happen if that URL represents a video background.
return backgroundType === VIDEO_BACKGROUND_TYPE;
}
// If a url is not set the transform could happen if the cover has no background color or gradient;
return (
! overlayColor &&
! customOverlayColor &&
! gradient &&
! customGradient
);
},
transform: ( { title, url, align, id, anchor } ) =>
createBlock( 'core/video', {
caption: title,
src: url,
id,
align,
anchor,
} ),
},
{
type: 'block',
blocks: [ 'core/group' ],
isMatch: ( { url, useFeaturedImage } ) => {
// If the Cover block uses background media, skip this transform,
// and instead use the Group block's default transform.
if ( url || useFeaturedImage ) {
return false;
}
return true;
},
transform: ( attributes, innerBlocks ) => {
// Convert Cover overlay colors to comparable Group background colors.
const transformedColorAttributes = {
backgroundColor: attributes?.overlayColor,
gradient: attributes?.gradient,
style: cleanEmptyObject( {
...attributes?.style,
color:
attributes?.customOverlayColor ||
attributes?.customGradient ||
attributes?.style?.color
? {
background:
attributes?.customOverlayColor,
gradient: attributes?.customGradient,
...attributes?.style?.color,
}
: undefined,
} ),
};
// If the Cover block contains only a single Group block as a direct child,
// then attempt to merge the Cover's background colors with the child Group block,
// and remove the Cover block as the wrapper.
if (
innerBlocks?.length === 1 &&
innerBlocks[ 0 ]?.name === 'core/group'
) {
const groupAttributes = cleanEmptyObject(
innerBlocks[ 0 ].attributes || {}
);
// If the Group block contains any kind of background color or gradient,
// skip merging Cover background colors, and preserve the Group block's colors.
if (
groupAttributes?.backgroundColor ||
groupAttributes?.gradient ||
groupAttributes?.style?.color?.background ||
groupAttributes?.style?.color?.gradient
) {
return createBlock(
'core/group',
groupAttributes,
innerBlocks[ 0 ]?.innerBlocks
);
}
return createBlock(
'core/group',
{
...transformedColorAttributes,
...groupAttributes,
style: cleanEmptyObject( {
...groupAttributes?.style,
color:
transformedColorAttributes?.style?.color ||
groupAttributes?.style?.color
? {
...transformedColorAttributes
?.style?.color,
...groupAttributes?.style
?.color,
}
: undefined,
} ),
},
innerBlocks[ 0 ]?.innerBlocks
);
}
// In all other cases, transform the Cover block directly to a Group block.
return createBlock(
'core/group',
{ ...attributes, ...transformedColorAttributes },
innerBlocks
);
},
},
],
};
export default transforms;