-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathedit.js
More file actions
435 lines (416 loc) · 14.7 KB
/
edit.js
File metadata and controls
435 lines (416 loc) · 14.7 KB
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
/**
* External dependencies
*/
import { i18n } from 'stackable'
import {
AdvancedToolbarControl,
AlignButtonsControl,
ControlSeparator,
InspectorLayoutControls,
AdvancedRangeControl,
} from '~stackable/components'
import {
useBlockAttributesContext,
useBlockSetAttributesContext,
useDeviceType,
} from '~stackable/hooks'
/**
* WordPress dependencies
*/
import {
AlignmentToolbar,
BlockControls,
} from '@wordpress/block-editor'
import { memo } from '@wordpress/element'
import { sprintf, __ } from '@wordpress/i18n'
import { addFilter } from '@wordpress/hooks'
import { useSelect } from '@wordpress/data'
const ALIGN_OPTIONS = [
{
align: 'left',
title: __( 'Align Left', i18n ),
icon: 'editor-alignleft',
},
{
align: 'center',
title: __( 'Align Center', i18n ),
icon: 'editor-aligncenter',
},
{
align: 'right',
title: __( 'Align Right', i18n ),
icon: 'editor-alignright',
},
{
align: 'justify',
title: __( 'Justified', i18n ),
icon: 'editor-justify',
},
]
const ALIGN_OPTIONS_NO_JUSTIFY = ALIGN_OPTIONS.filter( option => option.align !== 'justify' )
export const Edit = memo( props => {
const {
contentAlign,
contentAlignTablet,
contentAlignMobile,
columnJustify,
innerBlockOrientation,
innerBlockOrientationTablet,
innerBlockOrientationMobile,
innerBlockWrap,
containerWidth,
containerWidthTablet,
containerWidthMobile,
alignLastBlockToBottom,
innerBlockRowGap,
innerBlockColumnGap,
} = useBlockAttributesContext( attributes => {
return {
contentAlign: attributes.contentAlign,
contentAlignTablet: attributes.contentAlignTablet,
contentAlignMobile: attributes.contentAlignMobile,
columnJustify: attributes.columnJustify,
innerBlockOrientation: attributes.innerBlockOrientation,
innerBlockOrientationTablet: attributes.innerBlockOrientationTablet,
innerBlockOrientationMobile: attributes.innerBlockOrientationMobile,
innerBlockWrap: attributes.innerBlockWrap,
containerWidth: attributes.containerWidth,
containerWidthTablet: attributes.containerWidthTablet,
containerWidthMobile: attributes.containerWidthMobile,
alignLastBlockToBottom: attributes.alignLastBlockToBottom,
innerBlockRowGap: attributes.innerBlockRowGap,
innerBlockColumnGap: attributes.innerBlockColumnGap,
}
} )
const setAttributes = useBlockSetAttributesContext()
const deviceType = useDeviceType()
const _contentAlignTablet = contentAlignTablet || contentAlign
const _contentAlignMobile = contentAlignMobile || _contentAlignTablet
const _innerBlockOrientationTablet = innerBlockOrientationTablet || innerBlockOrientation
const _innerBlockOrientationMobile = innerBlockOrientationMobile || _innerBlockOrientationTablet
const _innerBlockOrientation = deviceType === 'Desktop' ? innerBlockOrientation : ( deviceType === 'Tablet' ? _innerBlockOrientationTablet : _innerBlockOrientationMobile )
const {
labelContentAlign = sprintf( __( '%s Alignment', i18n ), __( 'Content', i18n ) ),
enableContentAlign = true,
} = props
const containerSize = props.hasContainerSize && <>
<ControlSeparator />
{ props.hasContainerHeight &&
<AdvancedRangeControl
label={ __( 'Content Min. Height', i18n ) }
attribute="containerHeight"
responsive="all"
units={ [ 'px', 'vh' ] }
min={ [ 0, 0 ] }
sliderMax={ [ 1000, 100 ] }
step={ [ 1, 1 ] }
allowReset={ true }
placeholder="0"
visualGuide={ { selector: '.stk-%s-container', highlight: 'outline' } }
/>
}
<AdvancedRangeControl
label={ __( 'Content Max Width', i18n ) }
attribute="containerWidth"
responsive="all"
units={ [ 'px', '%', 'vw' ] }
min={ [ 0, 0 ] }
sliderMax={ [ 1500, 100 ] }
step={ [ 1, 1 ] }
allowReset={ true }
placeholder=""
initialPosition="1500"
visualGuide={ { selector: '.stk-%s-container', highlight: 'outline' } }
/>
{ (
( containerWidth !== '' && deviceType === 'Desktop' ) ||
( ( containerWidth !== '' || containerWidthTablet !== '' ) && deviceType === 'Tablet' ) ||
( ( containerWidth !== '' || containerWidthTablet !== '' || containerWidthMobile !== '' ) && deviceType === 'Mobile' )
) &&
<AdvancedToolbarControl
label={ __( 'Content Horizontal Align', i18n ) }
attribute="containerHorizontalAlign"
responsive="all"
controls="horizontal"
helpTooltip={ {
video: 'content-horizontal-align',
description: __( 'Sets the placement of the column container to left, center or right. Not available when block width is set to full width.', i18n ),
} }
visualGuide={ { selector: '.stk-%s-container', highlight: 'outline' } }
/>
}
</>
return (
<>
<BlockControls>
<AlignmentToolbar
value={ deviceType === 'Desktop' ? contentAlign : ( deviceType === 'Tablet' ? _contentAlignTablet : _contentAlignMobile ) }
onChange={ contentAlign => {
if ( deviceType === 'Desktop' ) {
setAttributes( { contentAlign } )
} else if ( deviceType === 'Tablet' ) {
setAttributes( { contentAlignTablet: contentAlign } )
} else {
setAttributes( { contentAlignMobile: contentAlign } )
}
} }
alignmentControls={ props.hasContentJustify ? ALIGN_OPTIONS : ALIGN_OPTIONS_NO_JUSTIFY }
/>
</BlockControls>
<InspectorLayoutControls>
{ props.containerSizePriority < 5 && containerSize }
{ enableContentAlign && <AlignButtonsControl
label={ labelContentAlign }
attribute="contentAlign"
responsive="all"
justified={ props.hasContentJustify }
helpTooltip={ {
video: 'alignment-all',
description: __( 'Adjusts the placement of all content in the block to align left, center or right', i18n ),
} }
/> }
{ props.hasColumnJustify &&
<AdvancedToolbarControl
label={ sprintf( __( '%s Justify', i18n ), __( 'Column', i18n ) ) }
attribute="columnJustify"
responsive="all"
controls="flex-horizontal"
disableTablet={ ! columnJustify }
disableMobile={ ! columnJustify }
helpTooltip={ {
video: 'content-horizontal-align',
description: __( 'Sets the horizontal position and spacing of the inner columns.', i18n ),
} }
visualGuide={ {
selector: '.stk-%s-column > * > * > [data-type]',
highlight: 'outline',
} }
help={ __( 'Column contents need to be narrow for effect to show.', i18n ) }
/>
}
{ props.hasColumnAlignment &&
<AdvancedToolbarControl
label={ sprintf( __( '%s Alignment', i18n ), __( 'Column', i18n ) ) }
attribute="columnAlign"
responsive="all"
controls="flex-vertical"
helpTooltip={ {
video: 'column-vertical-align',
description: __( 'Sets the vertical position of the inner columns relative to the columns block.', i18n ),
} }
visualGuide={ {
// The 2nd selector (after the comma) is to select
// the parent Columns block where this Inner Column
// block belongs to.
selector: ', .stk-block-columns:has( > .stk-inner-blocks > * > * > [data-type="stackable/column"] > * > .stk-%s)',
highlight: 'outline-second-offset',
} }
/>
}
{ props.hasRowAlignment &&
<AdvancedToolbarControl
label={ sprintf( __( '%s Alignment', i18n ), __( 'Column', i18n ) ) }
attribute="rowAlign"
responsive="all"
controls="flex-vertical"
helpTooltip={ {
video: 'column-vertical-align',
description: __( 'Sets the vertical position of the inner columns relative to the columns block.', i18n ),
} }
visualGuide={ { selector: '.stk-%s-column > * > * > [data-type]', highlight: 'outline' } }
/>
}
{ props.containerSizePriority === 5 && containerSize }
{ ( props.hasColumnAlignment || props.hasBlockAlignment ) && <ControlSeparator /> }
{ ( props.hasColumnAlignment || props.hasBlockAlignment ) &&
<AdvancedToolbarControl
label={ sprintf( __( '%s Direction', i18n ), __( 'Inner Block', i18n ) ) }
controls={ [
{
value: 'horizontal',
title: __( 'Horizontal', i18n ),
},
{
value: 'vertical',
title: __( 'Vertical', i18n ),
},
] }
attribute="innerBlockOrientation"
responsive="all"
value={ _innerBlockOrientation }
default="vertical"
onChange={ value => {
const newAttributes = {}
if ( deviceType === 'Desktop' ) {
// If the new desktop value is the same as the tablet value, set the tablet value to ''
// since tablet value will just inherit the desktop value
// otherwise, set the tablet value to the old desktop value because tablet was inheriting the old value
if ( innerBlockOrientationTablet === value ) {
newAttributes.innerBlockOrientationTablet = ''
} else {
newAttributes.innerBlockOrientationTablet = innerBlockOrientation
}
newAttributes.innerBlockOrientation = value
newAttributes.innerBlockJustify = ''
newAttributes.innerBlockAlign = ''
} else if ( deviceType === 'Tablet' ) {
if ( innerBlockOrientationMobile === value ) {
newAttributes.innerBlockOrientationMobile = ''
} else {
newAttributes.innerBlockOrientationMobile = _innerBlockOrientationTablet
}
// if the new tablet value is the same as the desktop value, set the tablet value to ''
newAttributes.innerBlockOrientationTablet = innerBlockOrientation === value ? '' : value
newAttributes.innerBlockJustifyTablet = ''
newAttributes.innerBlockAlignTablet = ''
} else {
newAttributes.innerBlockOrientationMobile = _innerBlockOrientationTablet === value ? '' : value
newAttributes.innerBlockJustifyMobile = ''
newAttributes.innerBlockAlignMobile = ''
}
setAttributes( newAttributes )
} }
/>
}
{ ( props.hasColumnAlignment || props.hasBlockAlignment ) &&
<AdvancedToolbarControl
label={ sprintf( __( '%s Justify', i18n ), __( 'Inner Block', i18n ) ) }
attribute="innerBlockJustify"
responsive="all"
controls={ _innerBlockOrientation === 'horizontal' ? 'flex-horizontal' : 'horizontal' }
visualGuide={ {
selector: '.stk-%s-container, .stk-%s-container > * > .block-editor-block-list__layout > [data-type]',
highlight: 'outline-first-offset',
} }
helpTooltip={ {
// TODO: Add a working video
description: __( 'Sets the horizontal/vertical position and spacing of the inner blocks.', i18n ),
} }
/>
}
{ ( props.hasColumnAlignment || props.hasBlockAlignment ) &&
<AdvancedToolbarControl
label={ sprintf( __( '%s Alignment', i18n ), __( 'Inner Block', i18n ) ) }
attribute="innerBlockAlign"
responsive="all"
controls={ _innerBlockOrientation === 'horizontal' ? 'vertical' : 'flex-justify-vertical' }
disabled={ alignLastBlockToBottom ? 'all' : undefined }
visualGuide={ {
selector: '.stk-%s-container, .stk-%s-container > * > .block-editor-block-list__layout > [data-type]',
highlight: 'outline-first-offset',
} }
helpTooltip={ {
// TODO: Add a working video
description: __( 'Aligns the horizontal/vertical position of the inner blocks.', i18n ),
} }
help={ __( 'Set Content Min. Height for alignment to display properly', i18n ) }
/>
}
{ _innerBlockOrientation &&
<AdvancedToolbarControl
label={ __( 'Inner Block Wrapping', i18n ) }
controls={ [
{
value: '',
title: __( 'No Wrap', i18n ),
},
{
value: 'wrap',
title: __( 'Wrap', i18n ),
},
] }
attribute="innerBlockWrap"
/>
}
{ _innerBlockOrientation && // This is "column gap" when the blocks are horizontal.
<AdvancedRangeControl
label={ innerBlockWrap === 'wrap'
? sprintf( __( '%s %s', i18n ), __( 'Inner Block', i18n ), __( 'Column Gap', i18n ) )
: sprintf( __( '%s %s', i18n ), __( 'Inner Block', i18n ), __( 'Gap', i18n ) )
}
responsive="all"
min={ 0 }
sliderMax={ 100 }
placeholder="24"
attribute="innerBlockColumnGap"
helpTooltip={ {
// TODO: Add a working video
description: __( 'Sets the gap between the columns of inner blocks.', i18n ),
} }
visualGuide={
innerBlockWrap !== 'wrap'
? {
selector: '.stk-%s-container > * > .block-editor-block-list__layout',
highlight: 'column-gap',
value: innerBlockColumnGap,
}
: null
}
/>
}
{ ( props.hasColumnAlignment || props.hasBlockAlignment ) && _innerBlockOrientation !== 'horizontal' && // This is "row gap" when the blocks are vertical.
<AdvancedRangeControl
label={ sprintf( __( '%s %s', i18n ), __( 'Inner Block', i18n ), __( 'Gap', i18n ) ) }
responsive="all"
min={ 0 }
sliderMax={ 100 }
placeholder="0"
attribute="innerBlockRowGap"
helpTooltip={ {
// TODO: Add a working video
description: __( 'Sets the gap between inner blocks.', i18n ),
} }
visualGuide={ {
selector: '.stk-%s-container > * > .block-editor-block-list__layout',
highlight: 'row-gap',
value: innerBlockRowGap,
} }
/>
}
{ ( _innerBlockOrientation === 'horizontal' && innerBlockWrap === 'wrap' ) &&
<AdvancedRangeControl
label={ sprintf( __( '%s %s', i18n ), __( 'Inner Block', i18n ), __( 'Row Gap', i18n ) ) }
responsive="all"
min={ 0 }
sliderMax={ 100 }
placeholder="0"
attribute="innerBlockRowGap"
helpTooltip={ {
// TODO: Add a working video
description: __( 'Sets the gap between the rows of inner blocks.', i18n ),
} }
/>
}
</InspectorLayoutControls>
</>
)
} )
// Add additional classes when browser is Firefox to fix alignment
const userAgent = navigator?.userAgent
if ( userAgent && userAgent.indexOf( 'Firefox' ) !== -1 ) {
addFilter( 'stackable.block-components.block-div.classnames', 'alignment-editor-has-polyfill', ( classes, props ) => {
// Use WP's block edit context since our useBlockContext might still be updating when a block is removed
const innerBlocks = useSelect( select => {
return select( 'core/block-editor' ).getBlock( props.clientId )?.innerBlocks || []
}, [ props.clientId ] )
if ( innerBlocks.length > 0 ) {
for ( let i = 0; i < innerBlocks.length; i++ ) {
const { blockMargin } = innerBlocks[ i ].attributes
if ( blockMargin && ( blockMargin.top === 'auto' || blockMargin.bottom === 'auto' ) ) {
classes.push( 'stk--alignment-polyfill' )
}
}
}
return classes
} )
}
Edit.defaultProps = {
hasColumnJustify: false,
hasRowAlignment: false,
hasColumnAlignment: false,
hasBlockAlignment: false,
hasContentJustify: false,
hasContainerSize: false,
hasContainerHeight: true,
containerSizePriority: 5,
}