-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy patheditor.native.js
171 lines (150 loc) · 3.91 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
/**
* 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,
ErrorBoundary,
store as editorStore,
} from '@wordpress/editor';
import { parse, serialize } 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';
class Editor extends Component {
constructor( props ) {
super( ...arguments );
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 ) {
settings = {
...settings,
isRTL: I18nManager.isRTL,
};
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,
initialEdits,
post,
postId,
postType,
featuredImageId,
initialHtml,
...props
} = this.props;
const editorSettings = this.getEditorSettings( settings );
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 }
>
<ErrorBoundary>
<Layout setTitleRef={ this.setTitleRef } />
</ErrorBoundary>
</EditorProvider>
</SlotFillProvider>
</GestureHandlerRootView>
);
}
}
export default compose( [
withSelect( ( select ) => {
const { getEditorMode } = select( editorStore );
return {
mode: getEditorMode(),
};
} ),
withDispatch( ( dispatch ) => {
const { switchEditorMode } = dispatch( editorStore );
const { editEntityRecord } = dispatch( coreStore );
return {
switchEditorMode,
editEntityRecord,
};
} ),
] )( Editor );