-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathblock.js
319 lines (286 loc) · 7.93 KB
/
block.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
/**
* External dependencies
*/
import { connect } from 'react-redux';
import classnames from 'classnames';
import { Slot } from 'react-slot-fill';
import { partial } from 'lodash';
import CSSTransitionGroup from 'react-transition-group/CSSTransitionGroup';
/**
* WordPress dependencies
*/
import { Children } from 'element';
import Toolbar from 'components/toolbar';
/**
* Internal dependencies
*/
import BlockMover from '../../block-mover';
import BlockSwitcher from '../../block-switcher';
import {
deselectBlock,
focusBlock,
mergeBlocks,
insertBlock,
} from '../../actions';
import {
getPreviousBlock,
getNextBlock,
getBlock,
getBlockFocus,
getBlockOrder,
isBlockHovered,
isBlockSelected,
isTypingInBlock,
} from '../../selectors';
function FirstChild( { children } ) {
const childrenArray = Children.toArray( children );
return childrenArray[ 0 ] || null;
}
class VisualEditorBlock extends wp.element.Component {
constructor() {
super( ...arguments );
this.bindBlockNode = this.bindBlockNode.bind( this );
this.setAttributes = this.setAttributes.bind( this );
this.maybeHover = this.maybeHover.bind( this );
this.maybeStartTyping = this.maybeStartTyping.bind( this );
this.removeOrDeselect = this.removeOrDeselect.bind( this );
this.mergeBlocks = this.mergeBlocks.bind( this );
this.selectAndStopPropagation = this.selectAndStopPropagation.bind( this );
this.previousOffset = null;
}
bindBlockNode( node ) {
this.node = node;
}
componentWillReceiveProps( newProps ) {
if (
this.props.order !== newProps.order &&
this.props.isSelected &&
newProps.isSelected
) {
this.previousOffset = this.node.getBoundingClientRect().top;
}
}
setAttributes( attributes ) {
const { block, onChange } = this.props;
onChange( block.uid, {
attributes: {
...block.attributes,
...attributes,
},
} );
}
maybeHover() {
const { isTyping, isHovered, onHover } = this.props;
if ( isTyping && ! isHovered ) {
onHover();
}
}
maybeStartTyping() {
// We do not want to dispatch start typing if...
// - State value already reflects that we're typing (dispatch noise)
// - The current block is not selected (e.g. after a split occurs,
// we'll still receive the keyDown event, but the focus has since
// shifted to the newly created block)
const { isTyping, isSelected, onStartTyping } = this.props;
if ( ! isTyping && isSelected ) {
onStartTyping();
}
}
removeOrDeselect( event ) {
const { keyCode, target } = event;
// Remove block on backspace
if ( 8 /* Backspace */ === keyCode && target === this.node ) {
this.props.onRemove( this.props.uid );
if ( this.props.previousBlock ) {
this.props.onFocus( this.props.previousBlock.uid, { offset: -1 } );
}
}
// Deselect on escape
if ( 27 /* Escape */ === event.keyCode ) {
this.props.onDeselect();
}
}
mergeBlocks( forward = false ) {
const { block, previousBlock, nextBlock, onMerge } = this.props;
// Do nothing when it's the first block
if (
( ! forward && ! previousBlock ) ||
( forward && ! nextBlock )
) {
return;
}
if ( forward ) {
onMerge( block, nextBlock );
} else {
onMerge( previousBlock, block );
}
}
selectAndStopPropagation( event ) {
this.props.onSelect();
// Visual editor infers click as intent to clear the selected block, so
// prevent bubbling when occurring on block where selection is intended
event.stopPropagation();
}
componentDidUpdate( prevProps ) {
if ( this.previousOffset ) {
window.scrollTo(
window.scrollX,
window.scrollY + this.node.getBoundingClientRect().top - this.previousOffset
);
this.previousOffset = null;
}
// Focus node when focus state is programmatically transferred
if ( this.props.focus && ! prevProps.focus ) {
this.node.focus();
}
}
componentDidMount() {
if ( this.props.focus ) {
this.node.focus();
}
}
render() {
const { block } = this.props;
const settings = wp.blocks.getBlockSettings( block.blockType );
let BlockEdit;
if ( settings ) {
BlockEdit = settings.edit || settings.save;
}
if ( ! BlockEdit ) {
return null;
}
const { isHovered, isSelected, isTyping, focus } = this.props;
const showUI = isSelected && ( ! isTyping || ! focus.collapsed );
const className = classnames( 'editor-visual-editor__block', {
'is-selected': showUI,
'is-hovered': isHovered,
} );
const { onSelect, onHover, onMouseLeave, onFocus, onInsertAfter } = this.props;
// Determine whether the block has props to apply to the wrapper
let wrapperProps;
if ( settings.getEditWrapperProps ) {
wrapperProps = settings.getEditWrapperProps( block.attributes );
}
// Disable reason: Each block can be selected by clicking on it
/* eslint-disable jsx-a11y/no-static-element-interactions, jsx-a11y/onclick-has-role, jsx-a11y/click-events-have-key-events */
return (
<div
ref={ this.bindBlockNode }
onClick={ this.selectAndStopPropagation }
onFocus={ onSelect }
onKeyDown={ this.removeOrDeselect }
onMouseEnter={ onHover }
onMouseMove={ this.maybeHover }
onMouseLeave={ onMouseLeave }
className={ className }
data-type={ block.blockType }
tabIndex="0"
{ ...wrapperProps }
>
{ ( showUI || isHovered ) && <BlockMover uid={ block.uid } /> }
{ showUI &&
<CSSTransitionGroup
transitionName={ { appear: 'is-appearing', appearActive: 'is-appearing-active' } }
transitionAppear={ true }
transitionAppearTimeout={ 100 }
transitionEnter={ false }
transitionLeave={ false }
component={ FirstChild }
>
<div className="editor-visual-editor__block-controls">
<BlockSwitcher uid={ block.uid } />
{ !! settings.controls && (
<Toolbar
controls={ settings.controls.map( ( control ) => ( {
...control,
onClick: () => control.onClick( block.attributes, this.setAttributes ),
isActive: control.isActive ? control.isActive( block.attributes ) : false,
} ) ) } />
) }
<Slot name="Formatting.Toolbar" />
</div>
</CSSTransitionGroup>
}
<div onKeyPress={ this.maybeStartTyping }>
<BlockEdit
focus={ focus }
attributes={ block.attributes }
setAttributes={ this.setAttributes }
insertBlockAfter={ onInsertAfter }
setFocus={ partial( onFocus, block.uid ) }
mergeBlocks={ this.mergeBlocks }
/>
</div>
</div>
);
/* eslint-enable jsx-a11y/no-static-element-interactions, jsx-a11y/onclick-has-role, jsx-a11y/click-events-have-key-events */
}
}
export default connect(
( state, ownProps ) => {
return {
previousBlock: getPreviousBlock( state, ownProps.uid ),
nextBlock: getNextBlock( state, ownProps.uid ),
block: getBlock( state, ownProps.uid ),
isSelected: isBlockSelected( state, ownProps.uid ),
isHovered: isBlockHovered( state, ownProps.uid ),
focus: getBlockFocus( state, ownProps.uid ),
isTyping: isTypingInBlock( state, ownProps.uid ),
order: getBlockOrder( state, ownProps.uid ),
};
},
( dispatch, ownProps ) => ( {
onChange( uid, updates ) {
dispatch( {
type: 'UPDATE_BLOCK',
uid,
updates,
} );
},
onSelect() {
dispatch( {
type: 'TOGGLE_BLOCK_SELECTED',
selected: true,
uid: ownProps.uid,
} );
},
onDeselect() {
dispatch( deselectBlock( ownProps.uid ) );
},
onStartTyping() {
dispatch( {
type: 'START_TYPING',
uid: ownProps.uid,
} );
},
onHover() {
dispatch( {
type: 'TOGGLE_BLOCK_HOVERED',
hovered: true,
uid: ownProps.uid,
} );
},
onMouseLeave() {
dispatch( {
type: 'TOGGLE_BLOCK_HOVERED',
hovered: false,
uid: ownProps.uid,
} );
},
onInsertAfter( block ) {
dispatch( insertBlock( block, ownProps.uid ) );
},
onFocus( ...args ) {
dispatch( focusBlock( ...args ) );
},
onRemove( uid ) {
dispatch( {
type: 'REMOVE_BLOCK',
uid,
} );
},
onMerge( ...args ) {
mergeBlocks( dispatch, ...args );
},
} )
)( VisualEditorBlock );