-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathedit.js
590 lines (543 loc) · 12.7 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
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
/**
* External dependencies
*/
import classnames from 'classnames';
/**
* WordPress dependencies
*/
import { useEffect, useRef, useState } from '@wordpress/element';
import {
InspectorControls,
BlockControls,
RichText,
BlockIcon,
AlignmentControl,
useBlockProps,
__experimentalUseColorProps as useColorProps,
__experimentalUseBorderProps as useBorderProps,
__experimentalGetElementClassName,
} from '@wordpress/block-editor';
import { __ } from '@wordpress/i18n';
import {
Button,
PanelBody,
Placeholder,
TextControl,
ToggleControl,
ToolbarDropdownMenu,
__experimentalHasSplitBorders as hasSplitBorders,
} from '@wordpress/components';
import {
alignLeft,
alignRight,
alignCenter,
blockTable as icon,
tableColumnAfter,
tableColumnBefore,
tableColumnDelete,
tableRowAfter,
tableRowBefore,
tableRowDelete,
table,
} from '@wordpress/icons';
import { createBlock, getDefaultBlockName } from '@wordpress/blocks';
/**
* Internal dependencies
*/
import {
createTable,
updateSelectedCell,
getCellAttribute,
insertRow,
deleteRow,
insertColumn,
deleteColumn,
toggleSection,
isEmptyTableSection,
} from './state';
const ALIGNMENT_CONTROLS = [
{
icon: alignLeft,
title: __( 'Align column left' ),
align: 'left',
},
{
icon: alignCenter,
title: __( 'Align column center' ),
align: 'center',
},
{
icon: alignRight,
title: __( 'Align column right' ),
align: 'right',
},
];
const cellAriaLabel = {
head: __( 'Header cell text' ),
body: __( 'Body cell text' ),
foot: __( 'Footer cell text' ),
};
const placeholder = {
head: __( 'Header label' ),
foot: __( 'Footer label' ),
};
function TSection( { name, ...props } ) {
const TagName = `t${ name }`;
return <TagName { ...props } />;
}
function TableEdit( {
attributes,
setAttributes,
insertBlocksAfter,
isSelected,
} ) {
const { hasFixedLayout, caption, head, foot } = attributes;
const [ initialRowCount, setInitialRowCount ] = useState( 2 );
const [ initialColumnCount, setInitialColumnCount ] = useState( 2 );
const [ selectedCell, setSelectedCell ] = useState();
const colorProps = useColorProps( attributes );
const borderProps = useBorderProps( attributes );
const tableRef = useRef();
const [ hasTableCreated, setHasTableCreated ] = useState( false );
/**
* Updates the initial column count used for table creation.
*
* @param {number} count New initial column count.
*/
function onChangeInitialColumnCount( count ) {
setInitialColumnCount( count );
}
/**
* Updates the initial row count used for table creation.
*
* @param {number} count New initial row count.
*/
function onChangeInitialRowCount( count ) {
setInitialRowCount( count );
}
/**
* Creates a table based on dimensions in local state.
*
* @param {Object} event Form submit event.
*/
function onCreateTable( event ) {
event.preventDefault();
setAttributes(
createTable( {
rowCount: parseInt( initialRowCount, 10 ) || 2,
columnCount: parseInt( initialColumnCount, 10 ) || 2,
} )
);
setHasTableCreated( true );
}
/**
* Toggles whether the table has a fixed layout or not.
*/
function onChangeFixedLayout() {
setAttributes( { hasFixedLayout: ! hasFixedLayout } );
}
/**
* Changes the content of the currently selected cell.
*
* @param {Array} content A RichText content value.
*/
function onChange( content ) {
if ( ! selectedCell ) {
return;
}
setAttributes(
updateSelectedCell(
attributes,
selectedCell,
( cellAttributes ) => ( {
...cellAttributes,
content,
} )
)
);
}
/**
* Align text within the a column.
*
* @param {string} align The new alignment to apply to the column.
*/
function onChangeColumnAlignment( align ) {
if ( ! selectedCell ) {
return;
}
// Convert the cell selection to a column selection so that alignment
// is applied to the entire column.
const columnSelection = {
type: 'column',
columnIndex: selectedCell.columnIndex,
};
const newAttributes = updateSelectedCell(
attributes,
columnSelection,
( cellAttributes ) => ( {
...cellAttributes,
align,
} )
);
setAttributes( newAttributes );
}
/**
* Get the alignment of the currently selected cell.
*
* @return {string | undefined} The new alignment to apply to the column.
*/
function getCellAlignment() {
if ( ! selectedCell ) {
return;
}
return getCellAttribute( attributes, selectedCell, 'align' );
}
/**
* Add or remove a `head` table section.
*/
function onToggleHeaderSection() {
setAttributes( toggleSection( attributes, 'head' ) );
}
/**
* Add or remove a `foot` table section.
*/
function onToggleFooterSection() {
setAttributes( toggleSection( attributes, 'foot' ) );
}
/**
* Inserts a row at the currently selected row index, plus `delta`.
*
* @param {number} delta Offset for selected row index at which to insert.
*/
function onInsertRow( delta ) {
if ( ! selectedCell ) {
return;
}
const { sectionName, rowIndex } = selectedCell;
const newRowIndex = rowIndex + delta;
setAttributes(
insertRow( attributes, {
sectionName,
rowIndex: newRowIndex,
} )
);
// Select the first cell of the new row.
setSelectedCell( {
sectionName,
rowIndex: newRowIndex,
columnIndex: 0,
type: 'cell',
} );
}
/**
* Inserts a row before the currently selected row.
*/
function onInsertRowBefore() {
onInsertRow( 0 );
}
/**
* Inserts a row after the currently selected row.
*/
function onInsertRowAfter() {
onInsertRow( 1 );
}
/**
* Deletes the currently selected row.
*/
function onDeleteRow() {
if ( ! selectedCell ) {
return;
}
const { sectionName, rowIndex } = selectedCell;
setSelectedCell();
setAttributes( deleteRow( attributes, { sectionName, rowIndex } ) );
}
/**
* Inserts a column at the currently selected column index, plus `delta`.
*
* @param {number} delta Offset for selected column index at which to insert.
*/
function onInsertColumn( delta = 0 ) {
if ( ! selectedCell ) {
return;
}
const { columnIndex } = selectedCell;
const newColumnIndex = columnIndex + delta;
setAttributes(
insertColumn( attributes, {
columnIndex: newColumnIndex,
} )
);
// Select the first cell of the new column.
setSelectedCell( {
rowIndex: 0,
columnIndex: newColumnIndex,
type: 'cell',
} );
}
/**
* Inserts a column before the currently selected column.
*/
function onInsertColumnBefore() {
onInsertColumn( 0 );
}
/**
* Inserts a column after the currently selected column.
*/
function onInsertColumnAfter() {
onInsertColumn( 1 );
}
/**
* Deletes the currently selected column.
*/
function onDeleteColumn() {
if ( ! selectedCell ) {
return;
}
const { sectionName, columnIndex } = selectedCell;
setSelectedCell();
setAttributes(
deleteColumn( attributes, { sectionName, columnIndex } )
);
}
useEffect( () => {
if ( ! isSelected ) {
setSelectedCell();
}
}, [ isSelected ] );
useEffect( () => {
if ( hasTableCreated ) {
tableRef?.current
?.querySelector( 'td div[contentEditable="true"]' )
?.focus();
setHasTableCreated( false );
}
}, [ hasTableCreated ] );
const sections = [ 'head', 'body', 'foot' ].filter(
( name ) => ! isEmptyTableSection( attributes[ name ] )
);
const tableControls = [
{
icon: tableRowBefore,
title: __( 'Insert row before' ),
isDisabled: ! selectedCell,
onClick: onInsertRowBefore,
},
{
icon: tableRowAfter,
title: __( 'Insert row after' ),
isDisabled: ! selectedCell,
onClick: onInsertRowAfter,
},
{
icon: tableRowDelete,
title: __( 'Delete row' ),
isDisabled: ! selectedCell,
onClick: onDeleteRow,
},
{
icon: tableColumnBefore,
title: __( 'Insert column before' ),
isDisabled: ! selectedCell,
onClick: onInsertColumnBefore,
},
{
icon: tableColumnAfter,
title: __( 'Insert column after' ),
isDisabled: ! selectedCell,
onClick: onInsertColumnAfter,
},
{
icon: tableColumnDelete,
title: __( 'Delete column' ),
isDisabled: ! selectedCell,
onClick: onDeleteColumn,
},
];
const renderedSections = sections.map( ( name ) => (
<TSection name={ name } key={ name }>
{ attributes[ name ].map( ( { cells }, rowIndex ) => (
<tr key={ rowIndex }>
{ cells.map(
(
{
content,
tag: CellTag,
scope,
align,
colspan,
rowspan,
},
columnIndex
) => (
<CellTag
key={ columnIndex }
scope={ CellTag === 'th' ? scope : undefined }
colSpan={ colspan }
rowSpan={ rowspan }
className={ classnames(
{
[ `has-text-align-${ align }` ]: align,
},
'wp-block-table__cell-content'
) }
>
<RichText
value={ content }
onChange={ onChange }
onFocus={ () => {
setSelectedCell( {
sectionName: name,
rowIndex,
columnIndex,
type: 'cell',
} );
} }
aria-label={ cellAriaLabel[ name ] }
placeholder={ placeholder[ name ] }
/>
</CellTag>
)
) }
</tr>
) ) }
</TSection>
) );
const isEmpty = ! sections.length;
return (
<figure { ...useBlockProps( { ref: tableRef } ) }>
{ ! isEmpty && (
<>
<BlockControls group="block">
<AlignmentControl
label={ __( 'Change column alignment' ) }
alignmentControls={ ALIGNMENT_CONTROLS }
value={ getCellAlignment() }
onChange={ ( nextAlign ) =>
onChangeColumnAlignment( nextAlign )
}
/>
</BlockControls>
<BlockControls group="other">
<ToolbarDropdownMenu
hasArrowIndicator
icon={ table }
label={ __( 'Edit table' ) }
controls={ tableControls }
/>
</BlockControls>
</>
) }
<InspectorControls>
<PanelBody
title={ __( 'Settings' ) }
className="blocks-table-settings"
>
<ToggleControl
__nextHasNoMarginBottom
label={ __( 'Fixed width table cells' ) }
checked={ !! hasFixedLayout }
onChange={ onChangeFixedLayout }
/>
{ ! isEmpty && (
<>
<ToggleControl
__nextHasNoMarginBottom
label={ __( 'Header section' ) }
checked={ !! ( head && head.length ) }
onChange={ onToggleHeaderSection }
/>
<ToggleControl
__nextHasNoMarginBottom
label={ __( 'Footer section' ) }
checked={ !! ( foot && foot.length ) }
onChange={ onToggleFooterSection }
/>
</>
) }
</PanelBody>
</InspectorControls>
{ ! isEmpty && (
<table
className={ classnames(
colorProps.className,
borderProps.className,
{
'has-fixed-layout': hasFixedLayout,
// This is required in the editor only to overcome
// the fact the editor rewrites individual border
// widths into a shorthand format.
'has-individual-borders': hasSplitBorders(
attributes?.style?.border
),
}
) }
style={ { ...colorProps.style, ...borderProps.style } }
>
{ renderedSections }
</table>
) }
{ ! isEmpty && (
<RichText
identifier="caption"
tagName="figcaption"
className={ __experimentalGetElementClassName( 'caption' ) }
aria-label={ __( 'Table caption text' ) }
placeholder={ __( 'Add caption' ) }
value={ caption }
onChange={ ( value ) =>
setAttributes( { caption: value } )
}
// Deselect the selected table cell when the caption is focused.
onFocus={ () => setSelectedCell() }
__unstableOnSplitAtEnd={ () =>
insertBlocksAfter(
createBlock( getDefaultBlockName() )
)
}
/>
) }
{ isEmpty && (
<Placeholder
label={ __( 'Table' ) }
icon={ <BlockIcon icon={ icon } showColors /> }
instructions={ __( 'Insert a table for sharing data.' ) }
>
<form
className="blocks-table__placeholder-form"
onSubmit={ onCreateTable }
>
<TextControl
__nextHasNoMarginBottom
__next40pxDefaultSize
type="number"
label={ __( 'Column count' ) }
value={ initialColumnCount }
onChange={ onChangeInitialColumnCount }
min="1"
className="blocks-table__placeholder-input"
/>
<TextControl
__nextHasNoMarginBottom
__next40pxDefaultSize
type="number"
label={ __( 'Row count' ) }
value={ initialRowCount }
onChange={ onChangeInitialRowCount }
min="1"
className="blocks-table__placeholder-input"
/>
<Button
__next40pxDefaultSize
variant="primary"
type="submit"
>
{ __( 'Create Table' ) }
</Button>
</form>
</Placeholder>
) }
</figure>
);
}
export default TableEdit;