-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathedit.js
More file actions
515 lines (467 loc) · 12.4 KB
/
edit.js
File metadata and controls
515 lines (467 loc) · 12.4 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
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
/**
* Internal dependencies
*/
import blockStyles from './style'
/***
* External dependencies
*/
import classnames from 'classnames'
import { i18n, version as VERSION } from 'stackable'
import {
InspectorTabs,
InspectorStyleControls,
PanelAdvancedSettings,
AdvancedRangeControl,
AdvancedToggleControl,
IconControl,
ColorPaletteControl,
AdvancedToolbarControl,
AdvancedSelectControl,
AlignButtonsControl,
useBlockCssGenerator,
} from '~stackable/components'
import {
withBlockAttributeContext, withBlockStyleContext,
withBlockWrapperIsHovered, withQueryLoopContext,
} from '~stackable/higher-order'
import {
Typography,
BlockDiv,
Advanced,
CustomCSS,
Responsive,
CustomAttributes,
EffectsAnimations,
getTypographyClasses,
ConditionalDisplay,
MarginBottom,
Alignment,
getAlignmentClasses,
Transform,
} from '~stackable/block-components'
/**
* WordPress dependencies
*/
import { sprintf, __ } from '@wordpress/i18n'
import { DEFAULT_SVG, IconSvgDef } from './util'
import { compose } from '@wordpress/compose'
import { useInnerBlocksProps } from '@wordpress/block-editor'
import { dispatch, useSelect } from '@wordpress/data'
import { addFilter } from '@wordpress/hooks'
import { memo } from '@wordpress/element'
import { useBlockLayoutDefaults } from '~stackable/hooks'
import { ToggleControl } from '@wordpress/components'
const ALLOWED_INNER_BLOCKS = [ 'stackable/icon-list-item' ]
const TEMPLATE = [
[ 'stackable/icon-list-item', { text: '' } ],
]
const listTypeOptions = [
{
label: __( 'Unordered List', i18n ),
value: 'unordered',
},
{
label: __( 'Ordered List', i18n ),
value: 'ordered',
},
]
const listDisplayOptions = [
{
label: __( 'List', i18n ), // uses display: block & column-count
value: '',
},
{
label: __( 'Grid', i18n ), // uses display: grid & grid template columns
value: 'grid',
},
]
const listStyleTypeOptions = [
{
label: __( 'Number', i18n ),
value: 'decimal',
},
{
label: __( 'Padded Number', i18n ),
value: 'decimal-leading-zero',
},
{
label: __( 'Lowercase Roman', i18n ),
value: 'lower-roman',
},
{
label: __( 'Uppercase Roman', i18n ),
value: 'upper-roman',
},
{
label: __( 'Lowercase Letters', i18n ),
value: 'lower-alpha',
},
{
label: __( 'Uppercase Letters', i18n ),
value: 'upper-alpha',
},
]
const BORDER_CONTROLS = [
{
value: '',
title: __( 'None', i18n ),
},
{
value: 'solid',
title: __( 'Solid', i18n ),
},
{
value: 'dashed',
title: __( 'Dashed', i18n ),
},
{
value: 'dotted',
title: __( 'Dotted', i18n ),
},
]
const ICON_VERTICAL_ALIGN_OMIT = [ 'stretch' ]
const Edit = props => {
const {
attributes,
setAttributes,
className,
} = props
const {
ordered,
icon,
listItemBorderStyle,
listItemBorderColor,
listDisplayStyle,
listFullWidth,
useCustomIconColor,
} = attributes
const wrapList = ! listFullWidth && listDisplayStyle !== 'grid'
const TagName = ordered ? 'ol' : 'ul'
const ParentTagName = wrapList ? 'div' : TagName
const textClasses = getTypographyClasses( attributes )
const blockAlignmentClass = getAlignmentClasses( attributes )
const { innerBlocks } = useSelect( select => {
const { getBlock } = select( 'core/block-editor' )
return {
innerBlocks: getBlock( props.clientId ).innerBlocks,
}
}, [ props.clientId ] )
const blockClassNames = classnames( [
className,
'stk-block-icon-list',
blockAlignmentClass,
textClasses,
], {
'stk__use-custom-icon-color': useCustomIconColor,
} )
const tagNameClassNames = classnames( [
ordered ? 'stk-block-icon-list__ol' : 'stk-block-icon-list__ul',
listDisplayStyle && listDisplayStyle === 'grid' ? 'stk-block-icon-list--grid' : 'stk-block-icon-list--column',
] )
const resetCustomIcons = () => {
innerBlocks.forEach( block => {
dispatch( 'core/block-editor' ).updateBlockAttributes( block.clientId, { icon: '' } )
} )
}
const innerBlocksProps = useInnerBlocksProps( {
className: tagNameClassNames,
}, {
allowedBlocks: ALLOWED_INNER_BLOCKS,
template: TEMPLATE,
templateInsertUpdatesSelection: true,
renderAppender: false,
__experimentalCaptureToolbars: true,
} )
// Generate the CSS styles for the block.
const blockCss = useBlockCssGenerator( {
attributes: props.attributes,
blockStyles,
clientId: props.clientId,
context: props.context,
setAttributes: props.setAttributes,
blockState: props.blockState,
version: VERSION,
} )
return (
<>
<InspectorControls
blockState={ props.blockState }
setAttributes={ setAttributes }
columns={ attributes.columns }
ordered={ ordered }
icon={ icon }
listFullWidth={ listFullWidth }
listItemBorderStyle={ listItemBorderStyle }
listItemBorderColor={ listItemBorderColor }
resetCustomIcons={ resetCustomIcons }
useCustomIconColor={ useCustomIconColor }
/>
{ blockCss && <style key="block-css">{ blockCss }</style> }
<CustomCSS mainBlockClass="stk-block-icon-list" />
<BlockDiv
blockHoverClass={ props.blockHoverClass }
clientId={ props.clientId }
attributes={ props.attributes }
className={ blockClassNames }
>
{ ! ordered && <IconSvgDef icon={ icon } uniqueId={ attributes.uniqueId } /> }
<ParentTagName className={ tagNameClassNames } >
{ wrapList &&
<TagName className="stk-block-icon-list__group">
{ innerBlocksProps.children }
</TagName>
}
{ ! wrapList && innerBlocksProps.children }
</ParentTagName>
</BlockDiv>
{ props.isHovered && <MarginBottom /> }
</>
)
}
const InspectorControls = memo( props => {
const { getPlaceholder } = useBlockLayoutDefaults()
return (
<>
<InspectorTabs hasLayoutPanel={ false } />
<InspectorStyleControls>
<PanelAdvancedSettings
title={ __( 'General', i18n ) }
initialOpen={ true }
id="general"
>
<AlignButtonsControl
label={ sprintf( __( '%s Alignment', i18n ), __( 'List Item', i18n ) ) }
attribute="listAlignment"
responsive="all"
/>
<AdvancedToggleControl
label={ __( 'Full Width', i18n ) }
attribute="listFullWidth"
defaultValue={ true }
help={ __( 'More noticeable when using wide layouts or list item borders', i18n ) }
/>
{ ! props.listFullWidth && (
<AlignButtonsControl
label={ sprintf( __( '%s Alignment', i18n ), __( 'List', i18n ) ) }
attribute="contentAlign"
responsive="all"
justified={ false }
/>
) }
<AdvancedRangeControl
label={ __( 'Columns', i18n ) }
attribute="columns"
min="1"
sliderMax="4"
step="1"
placeholder="1"
responsive="all"
/>
{ props.columns > 1 && (
<AdvancedSelectControl
label={ __( 'List Display Style', i18n ) }
options={ listDisplayOptions }
attribute="listDisplayStyle"
/>
) }
{ props.columns > 1 && (
<AdvancedRangeControl
label={ __( 'Column Gap', i18n ) }
attribute="columnGap"
min="0"
sliderMax="50"
responsive="all"
placeholder="16"
/>
) }
<AdvancedRangeControl
label={ __( 'Row Gap', i18n ) }
attribute="rowGap"
min="0"
sliderMax="50"
responsive="all"
placeholder={ getPlaceholder( 'icon-list-row-gap' ) }
/>
<AdvancedRangeControl
label={ __( 'Icon Gap', i18n ) }
attribute="iconGap"
min="0"
sliderMax="20"
responsive="all"
placeholder={ getPlaceholder( 'icon-list-icon-gap' ) }
/>
<AdvancedRangeControl
label={ __( 'Indentation', i18n ) }
attribute="indentation"
min="0"
sliderMax="50"
responsive="all"
placeholder={ getPlaceholder( 'icon-list-indentation' ) }
/>
</PanelAdvancedSettings>
</InspectorStyleControls>
<InspectorStyleControls>
<PanelAdvancedSettings
title={ __( 'Icons & Numbers', i18n ) }
initialOpen={ false }
id="icon-and-markers"
>
<AdvancedSelectControl
label={ __( 'List Type', i18n ) }
options={ listTypeOptions }
value={ props.ordered ? 'ordered' : 'unordered' }
onChange={ v => props.setAttributes( { ordered: v === 'ordered' } ) }
default="unordered"
/>
{ ! props.ordered && <>
<IconControl
label={ __( 'Icon', i18n ) }
value={ props.icon }
onChange={ icon => {
props.setAttributes( { icon } )
// Reset custom individual icons.
props.resetCustomIcons()
} }
defaultValue={ DEFAULT_SVG }
/>
<ToggleControl
label={ __( 'Use Custom Icon Color', i18n ) }
checked={ props.useCustomIconColor }
onChange={ useCustomIconColor => props.setAttributes( { useCustomIconColor } ) }
/>
</> }
{ props.ordered && (
<AdvancedSelectControl
label={ __( 'List Type', i18n ) }
attribute="listType"
options={ listStyleTypeOptions }
/>
) }
{ props.ordered && (
<AdvancedToggleControl
label={ __( 'With Period', i18n ) }
attribute="hasPeriod"
defaultValue={ true }
/>
) }
<ColorPaletteControl
label={ __( 'Color', i18n ) }
attribute="markerColor"
hover="all"
/>
<AdvancedRangeControl
label={ sprintf( __( '%s Size', i18n ), ! props.ordered ? __( 'Icon', i18n ) : __( 'Number', i18n ) ) }
attribute="iconSize"
min={ 0 }
max={ 50 }
step={ 1 }
allowReset={ true }
responsive="all"
placeholder={ getPlaceholder( 'icon-list-icon-size' ) }
/>
<AdvancedRangeControl
label={ __( 'Icon Opacity', i18n ) }
attribute="iconOpacity"
min={ 0 }
max={ 1 }
step={ 0.1 }
allowReset={ true }
placeholder="1.0"
hover="all"
/>
<AdvancedRangeControl
label={ __( 'Icon Rotation', i18n ) }
attribute="iconRotation"
min={ 0 }
max={ 360 }
allowReset={ true }
placeholder="0"
/>
<AdvancedToolbarControl
label={ __( 'Icon Vertical Alignment', i18n ) }
controls="flex-vertical"
omit={ ICON_VERTICAL_ALIGN_OMIT }
attribute="iconVerticalAlignment"
fullwidth={ true }
responsive="all"
help={ __( 'This is more visible if you have long text in your list.', i18n ) }
placeholder="center"
/>
<AdvancedRangeControl
label={ __( 'Icon Vertical Offset', i18n ) }
attribute="iconVerticalOffset"
min={ -1000 }
sliderMin={ -50 }
sliderMax={ 50 }
step={ 1 }
allowReset={ true }
responsive="all"
placeholder="0"
/>
</PanelAdvancedSettings>
<PanelAdvancedSettings
title={ __( 'Icon List Item Borders', i18n ) }
initialOpen={ false }
id="icon-list-item-borders"
>
<AdvancedToolbarControl
label={ __( 'Borders', i18n ) }
controls={ BORDER_CONTROLS }
className="ugb-border-controls__border-type-toolbar"
attribute="listItemBorderStyle"
fullwidth={ true }
isSmall={ true }
/>
{ props.listItemBorderStyle &&
<AdvancedRangeControl
label={ __( 'Border Width', i18n ) }
attribute="listItemBorderWidth"
responsive="all"
min={ 0 }
max={ 99 }
step={ 1 }
sliderMax={ 5 }
defaultLocked={ true }
placeholder="1"
/>
}
{ props.listItemBorderStyle &&
<ColorPaletteControl
label={ __( 'Border Color', i18n ) }
attribute="listItemBorderColor"
value={ props.listItemBorderColor ? props.listItemBorderColor : '#00000066' }
default="#00000066"
/>
}
</PanelAdvancedSettings>
</InspectorStyleControls>
<Typography.InspectorControls
{ ...props }
isMultiline={ true }
initialOpen={ false }
hasTextTag={ false }
hasTextContent={ false }
/>
<Alignment.InspectorControls
enableContentAlign={ false }
/>
<BlockDiv.InspectorControls />
<Advanced.InspectorControls />
<Transform.InspectorControls />
<EffectsAnimations.InspectorControls />
<CustomAttributes.InspectorControls />
<CustomCSS.InspectorControls mainBlockClass="stk-block-icon-list" />
<Responsive.InspectorControls />
<ConditionalDisplay.InspectorControls />
</>
)
} )
export default compose(
withBlockWrapperIsHovered,
withQueryLoopContext,
withBlockAttributeContext,
withBlockStyleContext( blockStyles ),
)( Edit )
addFilter( 'stackable.edit.margin-bottom.enable-handlers', 'stackable/icon-list', ( enabled, parentBlock ) => {
return parentBlock?.name === 'stackable/icon-list-item' ? false : enabled
} )