-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathindex.js
247 lines (225 loc) · 6.5 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
/**
* External dependencies
*/
import { get } from 'lodash';
/**
* WordPress dependencies
*/
import { __, sprintf } from '@wordpress/i18n';
import { Modal, Button } from '@wordpress/components';
import { withSelect, withDispatch } from '@wordpress/data';
import { addQueryArgs } from '@wordpress/url';
import { Component } from '@wordpress/element';
import { addAction, removeAction } from '@wordpress/hooks';
import { compose, withGlobalEvents, withInstanceId } from '@wordpress/compose';
/**
* Internal dependencies
*/
import { getWPAdminURL } from '../../utils/url';
import PostPreviewButton from '../post-preview-button';
class PostLockedModal extends Component {
constructor() {
super( ...arguments );
this.sendPostLock = this.sendPostLock.bind( this );
this.receivePostLock = this.receivePostLock.bind( this );
this.releasePostLock = this.releasePostLock.bind( this );
}
componentDidMount() {
const hookName = this.getHookName();
// Details on these events on the Heartbeat API docs
// https://developer.wordpress.org/plugins/javascript/heartbeat-api/
addAction( 'heartbeat.send', hookName, this.sendPostLock );
addAction( 'heartbeat.tick', hookName, this.receivePostLock );
}
componentWillUnmount() {
const hookName = this.getHookName();
removeAction( 'heartbeat.send', hookName );
removeAction( 'heartbeat.tick', hookName );
}
/**
* Returns a `@wordpress/hooks` hook name specific to the instance of the
* component.
*
* @return {string} Hook name prefix.
*/
getHookName() {
const { instanceId } = this.props;
return 'core/editor/post-locked-modal-' + instanceId;
}
/**
* Keep the lock refreshed.
*
* When the user does not send a heartbeat in a heartbeat-tick
* the user is no longer editing and another user can start editing.
*
* @param {Object} data Data to send in the heartbeat request.
*/
sendPostLock( data ) {
const { isLocked, activePostLock, postId } = this.props;
if ( isLocked ) {
return;
}
data[ 'wp-refresh-post-lock' ] = {
lock: activePostLock,
post_id: postId,
};
}
/**
* Refresh post locks: update the lock string or show the dialog if somebody has taken over editing.
*
* @param {Object} data Data received in the heartbeat request
*/
receivePostLock( data ) {
if ( ! data[ 'wp-refresh-post-lock' ] ) {
return;
}
const { autosave, updatePostLock } = this.props;
const received = data[ 'wp-refresh-post-lock' ];
if ( received.lock_error ) {
// Auto save and display the takeover modal.
autosave();
updatePostLock( {
isLocked: true,
isTakeover: true,
user: {
avatar: received.lock_error.avatar_src,
},
} );
} else if ( received.new_lock ) {
updatePostLock( {
isLocked: false,
activePostLock: received.new_lock,
} );
}
}
/**
* Unlock the post before the window is exited.
*/
releasePostLock() {
const { isLocked, activePostLock, postLockUtils, postId } = this.props;
if ( isLocked || ! activePostLock ) {
return;
}
const data = new window.FormData();
data.append( 'action', 'wp-remove-post-lock' );
data.append( '_wpnonce', postLockUtils.unlockNonce );
data.append( 'post_ID', postId );
data.append( 'active_post_lock', activePostLock );
const xhr = new window.XMLHttpRequest();
xhr.open( 'POST', postLockUtils.ajaxUrl, false );
xhr.send( data );
}
render() {
const { user, postId, isLocked, isTakeover, postLockUtils, postType } = this.props;
if ( ! isLocked ) {
return null;
}
const userDisplayName = user.name;
const userAvatar = user.avatar;
const unlockUrl = addQueryArgs( 'post.php', {
'get-post-lock': '1',
lockKey: true,
post: postId,
action: 'edit',
_wpnonce: postLockUtils.nonce,
} );
const allPostsUrl = getWPAdminURL( 'edit.php', {
post_type: get( postType, [ 'slug' ] ),
} );
const allPostsLabel = __( 'Exit the Editor' );
return (
<Modal
title={ isTakeover ? __( 'Someone else has taken over this post.' ) : __( 'This post is already being edited.' ) }
focusOnMount={ true }
shouldCloseOnClickOutside={ false }
shouldCloseOnEsc={ false }
isDismissable={ false }
className="editor-post-locked-modal"
>
{ !! userAvatar && (
<img
src={ userAvatar }
alt={ __( 'Avatar' ) }
className="editor-post-locked-modal__avatar"
/>
) }
{ !! isTakeover && (
<div>
<div>
{ userDisplayName ?
sprintf(
/* translators: %s: user's display name */
__( '%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.' ),
userDisplayName
) :
__( 'Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.' )
}
</div>
<div className="editor-post-locked-modal__buttons">
<Button isPrimary isLarge href={ allPostsUrl }>
{ allPostsLabel }
</Button>
</div>
</div>
) }
{ ! isTakeover && (
<div>
<div>
{ userDisplayName ?
sprintf(
/* translators: %s: user's display name */
__( '%s is currently working on this post, which means you cannot make changes, unless you take over.' ),
userDisplayName
) :
__( 'Another user is currently working on this post, which means you cannot make changes, unless you take over.' )
}
</div>
<div className="editor-post-locked-modal__buttons">
<Button isDefault isLarge href={ allPostsUrl }>
{ allPostsLabel }
</Button>
<PostPreviewButton />
<Button isPrimary isLarge href={ unlockUrl }>
{ __( 'Take Over' ) }
</Button>
</div>
</div>
) }
</Modal>
);
}
}
export default compose(
withSelect( ( select ) => {
const {
isPostLocked,
isPostLockTakeover,
getPostLockUser,
getCurrentPostId,
getActivePostLock,
getEditedPostAttribute,
getEditorSettings,
} = select( 'core/editor' );
const { getPostType } = select( 'core' );
return {
isLocked: isPostLocked(),
isTakeover: isPostLockTakeover(),
user: getPostLockUser(),
postId: getCurrentPostId(),
postLockUtils: getEditorSettings().postLockUtils,
activePostLock: getActivePostLock(),
postType: getPostType( getEditedPostAttribute( 'type' ) ),
};
} ),
withDispatch( ( dispatch ) => {
const { autosave, updatePostLock } = dispatch( 'core/editor' );
return {
autosave,
updatePostLock,
};
} ),
withInstanceId,
withGlobalEvents( {
beforeunload: 'releasePostLock',
} )
)( PostLockedModal );