-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathedit.js
264 lines (241 loc) · 8.42 KB
/
edit.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
/**
* External dependencies
*/
import classnames from 'classnames';
import { dropRight, times } from 'lodash';
/**
* WordPress dependencies
*/
import { __ } from '@wordpress/i18n';
import {
PanelBody,
RangeControl,
SVG,
Path,
} from '@wordpress/components';
import {
InspectorControls,
InnerBlocks,
BlockControls,
BlockVerticalAlignmentToolbar,
} from '@wordpress/block-editor';
import { withDispatch, useSelect } from '@wordpress/data';
import { createBlock } from '@wordpress/blocks';
import { useState, useEffect } from '@wordpress/element';
/**
* Internal dependencies
*/
import {
getColumnsTemplate,
hasExplicitColumnWidths,
getMappedColumnWidths,
getRedistributedColumnWidths,
toWidthPrecision,
} from './utils';
/**
* Allowed blocks constant is passed to InnerBlocks precisely as specified here.
* The contents of the array should never change.
* The array should contain the name of each block that is allowed.
* In columns block, the only block we allow is 'core/column'.
*
* @constant
* @type {string[]}
*/
const ALLOWED_BLOCKS = [ 'core/column' ];
/**
* Template option choices for predefined columns layouts.
*
* @constant
* @type {Array}
*/
const TEMPLATE_OPTIONS = [
{
title: __( 'Two columns; equal split' ),
icon: <SVG width="48" height="48" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg"><Path fillRule="evenodd" clipRule="evenodd" d="M39 12C40.1046 12 41 12.8954 41 14V34C41 35.1046 40.1046 36 39 36H9C7.89543 36 7 35.1046 7 34V14C7 12.8954 7.89543 12 9 12H39ZM39 34V14H25V34H39ZM23 34H9V14H23V34Z" /></SVG>,
template: [
[ 'core/column' ],
[ 'core/column' ],
],
},
{
title: __( 'Two columns; one-third, two-thirds split' ),
icon: <SVG width="48" height="48" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg"><Path fillRule="evenodd" clipRule="evenodd" d="M39 12C40.1046 12 41 12.8954 41 14V34C41 35.1046 40.1046 36 39 36H9C7.89543 36 7 35.1046 7 34V14C7 12.8954 7.89543 12 9 12H39ZM39 34V14H20V34H39ZM18 34H9V14H18V34Z" /></SVG>,
template: [
[ 'core/column', { width: 33.33 } ],
[ 'core/column', { width: 66.66 } ],
],
},
{
title: __( 'Two columns; two-thirds, one-third split' ),
icon: <SVG width="48" height="48" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg"><Path fillRule="evenodd" clipRule="evenodd" d="M39 12C40.1046 12 41 12.8954 41 14V34C41 35.1046 40.1046 36 39 36H9C7.89543 36 7 35.1046 7 34V14C7 12.8954 7.89543 12 9 12H39ZM39 34V14H30V34H39ZM28 34H9V14H28V34Z" /></SVG>,
template: [
[ 'core/column', { width: 66.66 } ],
[ 'core/column', { width: 33.33 } ],
],
},
{
title: __( 'Three columns; equal split' ),
icon: <SVG width="48" height="48" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg"><Path fillRule="evenodd" d="M41 14a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2h30a2 2 0 0 0 2-2V14zM28.5 34h-9V14h9v20zm2 0V14H39v20h-8.5zm-13 0H9V14h8.5v20z" /></SVG>,
template: [
[ 'core/column' ],
[ 'core/column' ],
[ 'core/column' ],
],
},
{
title: __( 'Three columns; wide center column' ),
icon: <SVG width="48" height="48" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg"><Path fillRule="evenodd" d="M41 14a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2h30a2 2 0 0 0 2-2V14zM31 34H17V14h14v20zm2 0V14h6v20h-6zm-18 0H9V14h6v20z" /></SVG>,
template: [
[ 'core/column', { width: 25 } ],
[ 'core/column', { width: 50 } ],
[ 'core/column', { width: 25 } ],
],
},
];
/**
* Number of columns to assume for template in case the user opts to skip
* template option selection.
*
* @type {Number}
*/
const DEFAULT_COLUMNS = 2;
export function ColumnsEdit( {
attributes,
className,
updateAlignment,
updateColumns,
clientId,
} ) {
const { verticalAlignment } = attributes;
const { count } = useSelect( ( select ) => {
return {
count: select( 'core/block-editor' ).getBlockCount( clientId ),
};
} );
const [ template, setTemplate ] = useState( getColumnsTemplate( count ) );
const [ forceUseTemplate, setForceUseTemplate ] = useState( false );
// This is used to force the usage of the template even if the count doesn't match the template
// The count doesn't match the template once you use undo/redo (this is used to reset to the placeholder state).
useEffect( () => {
// Once the template is applied, reset it.
if ( forceUseTemplate ) {
setForceUseTemplate( false );
}
}, [ forceUseTemplate ] );
const classes = classnames( className, {
[ `are-vertically-aligned-${ verticalAlignment }` ]: verticalAlignment,
} );
return (
<>
{ template && (
<>
<InspectorControls>
<PanelBody>
<RangeControl
label={ __( 'Columns' ) }
value={ count }
onChange={ ( value ) => updateColumns( count, value ) }
min={ 2 }
max={ 6 }
/>
</PanelBody>
</InspectorControls>
<BlockControls>
<BlockVerticalAlignmentToolbar
onChange={ updateAlignment }
value={ verticalAlignment }
/>
</BlockControls>
</>
) }
<div className={ classes }>
<InnerBlocks
__experimentalTemplateOptions={ TEMPLATE_OPTIONS }
__experimentalOnSelectTemplateOption={ ( nextTemplate ) => {
if ( nextTemplate === undefined ) {
nextTemplate = getColumnsTemplate( DEFAULT_COLUMNS );
}
setTemplate( nextTemplate );
setForceUseTemplate( true );
} }
__experimentalAllowTemplateOptionSkip
// setting the template to null when the inner blocks
// are empty allows to reset to the placeholder state.
template={ count === 0 && ! forceUseTemplate ? null : template }
templateLock="all"
allowedBlocks={ ALLOWED_BLOCKS } />
</div>
</>
);
}
export default withDispatch( ( dispatch, ownProps, registry ) => ( {
/**
* Update all child Column blocks with a new vertical alignment setting
* based on whatever alignment is passed in. This allows change to parent
* to overide anything set on a individual column basis.
*
* @param {string} verticalAlignment the vertical alignment setting
*/
updateAlignment( verticalAlignment ) {
const { clientId, setAttributes } = ownProps;
const { updateBlockAttributes } = dispatch( 'core/block-editor' );
const { getBlockOrder } = registry.select( 'core/block-editor' );
// Update own alignment.
setAttributes( { verticalAlignment } );
// Update all child Column Blocks to match
const innerBlockClientIds = getBlockOrder( clientId );
innerBlockClientIds.forEach( ( innerBlockClientId ) => {
updateBlockAttributes( innerBlockClientId, {
verticalAlignment,
} );
} );
},
/**
* Updates the column count, including necessary revisions to child Column
* blocks to grant required or redistribute available space.
*
* @param {number} previousColumns Previous column count.
* @param {number} newColumns New column count.
*/
updateColumns( previousColumns, newColumns ) {
const { clientId } = ownProps;
const { replaceInnerBlocks } = dispatch( 'core/block-editor' );
const { getBlocks } = registry.select( 'core/block-editor' );
let innerBlocks = getBlocks( clientId );
const hasExplicitWidths = hasExplicitColumnWidths( innerBlocks );
// Redistribute available width for existing inner blocks.
const isAddingColumn = newColumns > previousColumns;
if ( isAddingColumn && hasExplicitWidths ) {
// If adding a new column, assign width to the new column equal to
// as if it were `1 / columns` of the total available space.
const newColumnWidth = toWidthPrecision( 100 / newColumns );
// Redistribute in consideration of pending block insertion as
// constraining the available working width.
const widths = getRedistributedColumnWidths( innerBlocks, 100 - newColumnWidth );
innerBlocks = [
...getMappedColumnWidths( innerBlocks, widths ),
...times( newColumns - previousColumns, () => {
return createBlock( 'core/column', {
width: newColumnWidth,
} );
} ),
];
} else if ( isAddingColumn ) {
innerBlocks = [
...innerBlocks,
...times( newColumns - previousColumns, () => {
return createBlock( 'core/column' );
} ),
];
} else {
// The removed column will be the last of the inner blocks.
innerBlocks = dropRight( innerBlocks, previousColumns - newColumns );
if ( hasExplicitWidths ) {
// Redistribute as if block is already removed.
const widths = getRedistributedColumnWidths( innerBlocks, 100 );
innerBlocks = getMappedColumnWidths( innerBlocks, widths );
}
}
replaceInnerBlocks( clientId, innerBlocks, false );
},
} ) )( ColumnsEdit );