-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
index.js
428 lines (369 loc) · 11 KB
/
index.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
/**
* External dependencies
*/
import classnames from 'classnames';
import { last, isEqual, capitalize, omitBy, forEach, merge } from 'lodash';
import { nodeListToReact } from 'dom-react';
import { Fill } from 'react-slot-fill';
import 'element-closest';
/**
* WordPress dependencies
*/
import Toolbar from 'components/toolbar';
/**
* Internal dependencies
*/
import './style.scss';
import FormatToolbar from './format-toolbar';
import TinyMCE from './tinymce';
const KEYCODE_BACKSPACE = 8;
const alignmentMap = {
alignleft: 'left',
alignright: 'right',
aligncenter: 'center'
};
const ALIGNMENT_CONTROLS = [
{
icon: 'editor-alignleft',
title: wp.i18n.__( 'Align left' ),
align: 'left'
},
{
icon: 'editor-aligncenter',
title: wp.i18n.__( 'Align center' ),
align: 'center'
},
{
icon: 'editor-alignright',
title: wp.i18n.__( 'Align right' ),
align: 'right'
}
];
function createElement( type, props, ...children ) {
if ( props[ 'data-mce-bogus' ] === 'all' ) {
return null;
}
if ( props.hasOwnProperty( 'data-mce-bogus' ) ) {
return children;
}
return wp.element.createElement(
type,
omitBy( props, ( value, key ) => key.indexOf( 'data-mce-' ) === 0 ),
...children
);
}
export default class Editable extends wp.element.Component {
constructor( props ) {
super( ...arguments );
this.onInit = this.onInit.bind( this );
this.onSetup = this.onSetup.bind( this );
this.onChange = this.onChange.bind( this );
this.onNewBlock = this.onNewBlock.bind( this );
this.onFocus = this.onFocus.bind( this );
this.onNodeChange = this.onNodeChange.bind( this );
this.onKeyDown = this.onKeyDown.bind( this );
this.changeFormats = this.changeFormats.bind( this );
this.onSelectionChange = this.onSelectionChange.bind( this );
this.state = {
formats: {},
alignment: null,
bookmark: null,
empty: ! props.value || ! props.value.length
};
}
onSetup( editor ) {
this.editor = editor;
editor.on( 'init', this.onInit );
editor.on( 'focusout', this.onChange );
editor.on( 'NewBlock', this.onNewBlock );
editor.on( 'focusin', this.onFocus );
editor.on( 'nodechange', this.onNodeChange );
editor.on( 'keydown', this.onKeyDown );
editor.on( 'selectionChange', this.onSelectionChange );
}
onInit() {
this.updateFocus();
}
onFocus() {
if ( ! this.props.onFocus ) {
return;
}
// TODO: We need a way to save the focus position ( bookmark maybe )
this.props.onFocus();
}
isActive() {
return document.activeElement === this.editor.getBody();
}
onSelectionChange() {
// We must check this because selectionChange is a global event.
if ( ! this.isActive() ) {
return;
}
const content = this.getContent();
this.setState( {
empty: ! content || ! content.length
} );
}
onChange() {
if ( ! this.editor.isDirty() ) {
return;
}
this.savedContent = this.getContent();
this.editor.save();
this.props.onChange( this.savedContent );
}
getRelativePosition( node ) {
const position = node.getBoundingClientRect();
// Find the parent "relative" positioned container
const container = this.props.inlineToolbar
? this.editor.getBody().closest( '.blocks-editable' )
: this.editor.getBody().closest( '.editor-visual-editor__block' );
const containerPosition = container.getBoundingClientRect();
const blockPadding = 14;
const blockMoverMargin = 18;
// These offsets are necessary because the toolbar where the link modal lives
// is absolute positioned and it's not shown when we compute the position here
// so we compute the position about its parent relative position and adds the offset
const toolbarOffset = this.props.inlineToolbar
? { top: 50, left: 0 }
: { top: 40, left: -( ( blockPadding * 2 ) + blockMoverMargin ) };
const linkModalWidth = 250;
return {
top: position.top - containerPosition.top + ( position.height ) + toolbarOffset.top,
left: position.left - containerPosition.left - ( linkModalWidth / 2 ) + ( position.width / 2 ) + toolbarOffset.left
};
}
isStartOfEditor() {
const range = this.editor.selection.getRng();
if ( range.startOffset !== 0 || ! range.collapsed ) {
return false;
}
const start = range.startContainer;
const body = this.editor.getBody();
let element = start;
while ( element !== body ) {
const child = element;
element = element.parentNode;
if ( element.firstChild !== child ) {
return false;
}
}
return true;
}
onKeyDown( event ) {
if ( this.props.onMerge && event.keyCode === KEYCODE_BACKSPACE && this.isStartOfEditor() ) {
this.onChange();
this.props.onMerge( this.editor.getContent() );
event.preventDefault();
event.stopImmediatePropagation();
}
}
onNewBlock() {
if ( this.props.tagName || ! this.props.onSplit ) {
return;
}
// Getting the content before and after the cursor
const childNodes = Array.from( this.editor.getBody().childNodes );
let selectedChild = this.editor.selection.getStart();
while ( childNodes.indexOf( selectedChild ) === -1 && selectedChild.parentNode ) {
selectedChild = selectedChild.parentNode;
}
const splitIndex = childNodes.indexOf( selectedChild );
if ( splitIndex === -1 ) {
return;
}
const beforeNodes = childNodes.slice( 0, splitIndex );
const lastNodeBeforeCursor = last( beforeNodes );
// Avoid splitting on single enter
if (
! lastNodeBeforeCursor ||
beforeNodes.length < 2 ||
!! lastNodeBeforeCursor.textContent
) {
return;
}
const before = beforeNodes.slice( 0, beforeNodes.length - 1 );
// Removing empty nodes from the beginning of the "after"
// avoids empty paragraphs at the beginning of newly created blocks.
const after = childNodes.slice( splitIndex ).reduce( ( memo, node ) => {
if ( ! memo.length && ! node.textContent ) {
return memo;
}
memo.push( node );
return memo;
}, [] );
// Splitting into two blocks
this.setContent( this.props.value );
this.props.onSplit(
nodeListToReact( before, createElement ),
nodeListToReact( after, createElement )
);
}
onNodeChange( { element, parents } ) {
const formats = {};
const link = parents.find( ( node ) => node.nodeName.toLowerCase() === 'a' );
if ( link ) {
formats.link = { value: link.getAttribute( 'href' ), link };
}
const activeFormats = this.editor.formatter.matchAll( [ 'bold', 'italic', 'strikethrough' ] );
activeFormats.forEach( ( activeFormat ) => formats[ activeFormat ] = true );
const alignments = this.editor.formatter.matchAll( [ 'alignleft', 'aligncenter', 'alignright' ] );
const alignment = alignments.length > 0 ? alignmentMap[ alignments[ 0 ] ] : null;
const focusPosition = this.getRelativePosition( element );
const bookmark = this.editor.selection.getBookmark( 2, true );
this.setState( { alignment, bookmark, formats, focusPosition } );
}
updateContent() {
const bookmark = this.editor.selection.getBookmark( 2, true );
this.savedContent = this.props.value;
this.setContent( this.savedContent );
this.editor.selection.moveToBookmark( bookmark );
// Saving the editor on updates avoid unecessary onChanges calls
// These calls can make the focus jump
this.editor.save();
}
setContent( content ) {
if ( ! content ) {
content = '';
}
content = wp.element.renderToString( content );
this.editor.setContent( content, { format: 'raw' } );
}
getContent() {
return nodeListToReact( this.editor.getBody().childNodes || [], createElement );
}
updateFocus() {
const { focus } = this.props;
if ( focus ) {
this.editor.focus();
// Offset = -1 means we should focus the end of the editable
if ( focus.offset === -1 ) {
this.editor.selection.select( this.editor.getBody(), true );
this.editor.selection.collapse( false );
}
} else {
this.editor.getBody().blur();
}
}
componentWillUnmount() {
this.onChange();
}
componentDidUpdate( prevProps ) {
if ( this.props.focus !== prevProps.focus ) {
this.updateFocus();
}
// The savedContent var allows us to avoid updating the content right after an onChange call
if (
this.props.tagName === prevProps.tagName &&
this.props.value !== prevProps.value &&
this.props.value !== this.savedContent &&
! isEqual( this.props.value, prevProps.value ) &&
! isEqual( this.props.value, this.savedContent )
) {
this.updateContent();
}
}
isFormatActive( format ) {
return !! this.state.formats[ format ];
}
changeFormats( formats ) {
if ( this.state.bookmark ) {
this.editor.selection.moveToBookmark( this.state.bookmark );
}
forEach( formats, ( formatValue, format ) => {
if ( format === 'link' ) {
if ( formatValue !== undefined ) {
const anchor = this.editor.dom.getParent( this.editor.selection.getNode(), 'a' );
if ( ! anchor ) {
this.editor.formatter.remove( 'link' );
}
this.editor.formatter.apply( 'link', { href: formatValue.value }, anchor );
} else {
this.editor.execCommand( 'Unlink' );
}
} else {
const isActive = this.isFormatActive( format );
if ( isActive && ! formatValue ) {
this.editor.formatter.remove( format );
} else if ( ! isActive && formatValue ) {
this.editor.formatter.apply( format );
}
}
} );
this.setState( {
formats: merge( {}, this.state.formats, formats )
} );
this.editor.setDirty( true );
}
isAlignmentActive( align ) {
return this.state.alignment === align;
}
toggleAlignment( align ) {
this.editor.focus();
if ( this.isAlignmentActive( align ) ) {
this.editor.execCommand( 'JustifyNone' );
} else {
this.editor.execCommand( 'Justify' + capitalize( align ) );
}
}
render() {
const {
tagName,
style,
value,
focus,
className,
showAlignments = false,
inlineToolbar = false,
inline,
formattingControls,
placeholder
} = this.props;
// Generating a key that includes `tagName` ensures that if the tag
// changes, we unmount (+ destroy) the previous TinyMCE element, then
// mount (+ initialize) a new child element in its place.
const key = [ 'editor', tagName ].join();
const classes = classnames( className, 'blocks-editable' );
const formatToolbar = (
<FormatToolbar
focusPosition={ this.state.focusPosition }
formats={ this.state.formats }
onChange={ this.changeFormats }
enabledControls={ formattingControls }
/>
);
return (
<div className={ classes }>
{ focus &&
<Fill name="Formatting.Toolbar">
{ showAlignments &&
<Toolbar
controls={ ALIGNMENT_CONTROLS.map( ( control ) => ( {
...control,
onClick: () => this.toggleAlignment( control.align ),
isActive: this.isAlignmentActive( control.align )
} ) ) } />
}
{ ! inlineToolbar && formatToolbar }
</Fill>
}
{ focus && inlineToolbar &&
<div className="block-editable__inline-toolbar">
{ formatToolbar }
</div>
}
<TinyMCE
tagName={ tagName }
onSetup={ this.onSetup }
style={ style }
defaultValue={ value }
settings={ {
forced_root_block: inline ? false : 'p'
} }
isEmpty={ this.state.empty }
placeholder={ placeholder }
key={ key } />
</div>
);
}
}