-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
editor.native.js
221 lines (197 loc) · 5.49 KB
/
editor.native.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
/**
* External dependencies
*/
import memize from 'memize';
import { I18nManager } from 'react-native';
import { GestureHandlerRootView } from 'react-native-gesture-handler';
/**
* WordPress dependencies
*/
import { Component } from '@wordpress/element';
import { EditorProvider } from '@wordpress/editor';
import { parse, serialize, store as blocksStore } from '@wordpress/blocks';
import { withDispatch, withSelect } from '@wordpress/data';
import { compose } from '@wordpress/compose';
import {
subscribeSetFocusOnTitle,
subscribeFeaturedImageIdNativeUpdated,
} from '@wordpress/react-native-bridge';
import { SlotFillProvider } from '@wordpress/components';
import { store as coreStore } from '@wordpress/core-data';
/**
* Internal dependencies
*/
import Layout from './components/layout';
import { store as editPostStore } from './store';
class Editor extends Component {
constructor( props ) {
super( ...arguments );
// need to set this globally to avoid race with deprecations
// defaulting to true to avoid issues with a not-yet-cached value
const { galleryWithImageBlocks = true } = props;
window.wp.galleryBlockV2Enabled = galleryWithImageBlocks;
if ( props.initialHtmlModeEnabled && props.mode === 'visual' ) {
// Enable html mode if the initial mode the parent wants it but we're not already in it.
this.props.switchEditorMode( 'text' );
}
this.getEditorSettings = memize( this.getEditorSettings, {
maxSize: 1,
} );
this.setTitleRef = this.setTitleRef.bind( this );
}
getEditorSettings(
settings,
hasFixedToolbar,
focusMode,
hiddenBlockTypes,
blockTypes
) {
settings = {
...settings,
isRTL: I18nManager.isRTL,
hasFixedToolbar,
focusMode,
};
// Omit hidden block types if exists and non-empty.
if ( hiddenBlockTypes.length > 0 ) {
if ( settings.allowedBlockTypes === undefined ) {
// If no specific flags for allowedBlockTypes are set, assume `true`
// meaning allow all block types.
settings.allowedBlockTypes = true;
}
// Defer to passed setting for `allowedBlockTypes` if provided as
// anything other than `true` (where `true` is equivalent to allow
// all block types).
const defaultAllowedBlockTypes =
true === settings.allowedBlockTypes
? blockTypes.map( ( { name } ) => name )
: settings.allowedBlockTypes || [];
settings.allowedBlockTypes = defaultAllowedBlockTypes.filter(
( type ) => ! hiddenBlockTypes.includes( type )
);
}
return settings;
}
componentDidMount() {
const { editEntityRecord, postType, postId } = this.props;
this.subscriptionParentSetFocusOnTitle = subscribeSetFocusOnTitle(
() => {
if ( this.postTitleRef ) {
this.postTitleRef.focus();
} else {
// If the post title ref is not available, we postpone setting focus to when it's available.
this.focusTitleWhenAvailable = true;
}
}
);
this.subscriptionParentFeaturedImageIdNativeUpdated =
subscribeFeaturedImageIdNativeUpdated( ( payload ) => {
editEntityRecord(
'postType',
postType,
postId,
{ featured_media: payload.featuredImageId },
{
undoIgnore: true,
}
);
} );
}
componentWillUnmount() {
if ( this.subscriptionParentSetFocusOnTitle ) {
this.subscriptionParentSetFocusOnTitle.remove();
}
if ( this.subscribeFeaturedImageIdNativeUpdated ) {
this.subscribeFeaturedImageIdNativeUpdated.remove();
}
}
setTitleRef( titleRef ) {
if ( this.focusTitleWhenAvailable && ! this.postTitleRef ) {
this.focusTitleWhenAvailable = false;
titleRef.focus();
}
this.postTitleRef = titleRef;
}
render() {
const {
settings,
hasFixedToolbar,
focusMode,
initialEdits,
hiddenBlockTypes,
blockTypes,
post,
postId,
postType,
featuredImageId,
initialHtml,
...props
} = this.props;
const editorSettings = this.getEditorSettings(
settings,
hasFixedToolbar,
focusMode,
hiddenBlockTypes,
blockTypes
);
const normalizedPost = post || {
id: postId,
title: {
raw: props.initialTitle || '',
},
featured_media: featuredImageId,
content: {
// Make sure the post content is in sync with gutenberg store
// to avoid marking the post as modified when simply loaded
// For now, let's assume: serialize( parse( html ) ) !== html.
raw: serialize( parse( initialHtml || '' ) ),
},
type: postType,
status: 'draft',
meta: [],
};
return (
<GestureHandlerRootView style={ { flex: 1 } }>
<SlotFillProvider>
<EditorProvider
settings={ editorSettings }
post={ normalizedPost }
initialEdits={ initialEdits }
useSubRegistry={ false }
{ ...props }
>
<Layout setTitleRef={ this.setTitleRef } />
</EditorProvider>
</SlotFillProvider>
</GestureHandlerRootView>
);
}
}
export default compose( [
withSelect( ( select ) => {
const {
isFeatureActive,
getEditorMode,
__experimentalGetPreviewDeviceType,
getHiddenBlockTypes,
} = select( editPostStore );
const { getBlockTypes } = select( blocksStore );
return {
hasFixedToolbar:
isFeatureActive( 'fixedToolbar' ) ||
__experimentalGetPreviewDeviceType() !== 'Desktop',
focusMode: isFeatureActive( 'focusMode' ),
mode: getEditorMode(),
hiddenBlockTypes: getHiddenBlockTypes(),
blockTypes: getBlockTypes(),
};
} ),
withDispatch( ( dispatch ) => {
const { switchEditorMode } = dispatch( editPostStore );
const { editEntityRecord } = dispatch( coreStore );
return {
switchEditorMode,
editEntityRecord,
};
} ),
] )( Editor );