-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
command-menu.js
312 lines (290 loc) · 7.24 KB
/
command-menu.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
/**
* External dependencies
*/
import { Command, useCommandState } from 'cmdk';
import classnames from 'classnames';
/**
* WordPress dependencies
*/
import { useSelect, useDispatch } from '@wordpress/data';
import {
useState,
useEffect,
useRef,
useCallback,
useMemo,
} from '@wordpress/element';
import { __ } from '@wordpress/i18n';
import {
Modal,
TextHighlight,
__experimentalHStack as HStack,
} from '@wordpress/components';
import {
store as keyboardShortcutsStore,
useShortcut,
} from '@wordpress/keyboard-shortcuts';
import { Icon, search as inputIcon } from '@wordpress/icons';
/**
* Internal dependencies
*/
import { store as commandsStore } from '../store';
const inputLabel = __( 'Search for commands' );
function CommandMenuLoader( { name, search, hook, setLoader, close } ) {
const { isLoading, commands = [] } = hook( { search } ) ?? {};
useEffect( () => {
setLoader( name, isLoading );
}, [ setLoader, name, isLoading ] );
if ( ! commands.length ) {
return null;
}
return (
<>
{ commands.map( ( command ) => (
<Command.Item
key={ command.name }
value={ command.searchLabel ?? command.label }
onSelect={ () => command.callback( { close } ) }
id={ command.name }
>
<HStack
alignment="left"
className={ classnames( 'commands-command-menu__item', {
'has-icon': command.icon,
} ) }
>
{ command.icon && <Icon icon={ command.icon } /> }
<span>
<TextHighlight
text={ command.label }
highlight={ search }
/>
</span>
</HStack>
</Command.Item>
) ) }
</>
);
}
export function CommandMenuLoaderWrapper( { hook, search, setLoader, close } ) {
// The "hook" prop is actually a custom React hook
// so to avoid breaking the rules of hooks
// the CommandMenuLoaderWrapper component need to be
// remounted on each hook prop change
// We use the key state to make sure we do that properly.
const currentLoader = useRef( hook );
const [ key, setKey ] = useState( 0 );
useEffect( () => {
if ( currentLoader.current !== hook ) {
currentLoader.current = hook;
setKey( ( prevKey ) => prevKey + 1 );
}
}, [ hook ] );
return (
<CommandMenuLoader
key={ key }
hook={ currentLoader.current }
search={ search }
setLoader={ setLoader }
close={ close }
/>
);
}
export function CommandMenuGroup( { isContextual, search, setLoader, close } ) {
const { commands, loaders } = useSelect(
( select ) => {
const { getCommands, getCommandLoaders } = select( commandsStore );
return {
commands: getCommands( isContextual ),
loaders: getCommandLoaders( isContextual ),
};
},
[ isContextual ]
);
if ( ! commands.length && ! loaders.length ) {
return null;
}
return (
<Command.Group>
{ commands.map( ( command ) => (
<Command.Item
key={ command.name }
value={ command.searchLabel ?? command.label }
onSelect={ () => command.callback( { close } ) }
id={ command.name }
>
<HStack
alignment="left"
className={ classnames( 'commands-command-menu__item', {
'has-icon': command.icon,
} ) }
>
{ command.icon && <Icon icon={ command.icon } /> }
<span>
<TextHighlight
text={ command.label }
highlight={ search }
/>
</span>
</HStack>
</Command.Item>
) ) }
{ loaders.map( ( loader ) => (
<CommandMenuLoaderWrapper
key={ loader.name }
hook={ loader.hook }
search={ search }
setLoader={ setLoader }
close={ close }
/>
) ) }
</Command.Group>
);
}
function CommandInput( { isOpen, search, setSearch } ) {
const commandMenuInput = useRef();
const _value = useCommandState( ( state ) => state.value );
const selectedItemId = useMemo( () => {
const item = document.querySelector(
`[cmdk-item=""][data-value="${ _value }"]`
);
return item?.getAttribute( 'id' );
}, [ _value ] );
useEffect( () => {
// Focus the command palette input when mounting the modal.
if ( isOpen ) {
commandMenuInput.current.focus();
}
}, [ isOpen ] );
return (
<Command.Input
ref={ commandMenuInput }
value={ search }
onValueChange={ setSearch }
placeholder={ inputLabel }
aria-activedescendant={ selectedItemId }
icon={ search }
/>
);
}
/**
* @ignore
*/
export function CommandMenu() {
const { registerShortcut } = useDispatch( keyboardShortcutsStore );
const [ search, setSearch ] = useState( '' );
const isOpen = useSelect(
( select ) => select( commandsStore ).isOpen(),
[]
);
const { open, close } = useDispatch( commandsStore );
const [ loaders, setLoaders ] = useState( {} );
const commandListRef = useRef();
useEffect( () => {
registerShortcut( {
name: 'core/commands',
category: 'global',
description: __( 'Open the command palette.' ),
keyCombination: {
modifier: 'primary',
character: 'k',
},
} );
}, [ registerShortcut ] );
// Temporary fix for the suggestions Listbox labeling.
// See https://github.com/pacocoursey/cmdk/issues/196
useEffect( () => {
commandListRef.current?.removeAttribute( 'aria-labelledby' );
commandListRef.current?.setAttribute(
'aria-label',
__( 'Command suggestions' )
);
}, [ commandListRef.current ] );
useShortcut(
'core/commands',
/** @type {import('react').KeyboardEventHandler} */
( event ) => {
// Bails to avoid obscuring the effect of the preceding handler(s).
if ( event.defaultPrevented ) return;
event.preventDefault();
if ( isOpen ) {
close();
} else {
open();
}
},
{
bindGlobal: true,
}
);
const setLoader = useCallback(
( name, value ) =>
setLoaders( ( current ) => ( {
...current,
[ name ]: value,
} ) ),
[]
);
const closeAndReset = () => {
setSearch( '' );
close();
};
if ( ! isOpen ) {
return false;
}
const onKeyDown = ( event ) => {
if (
// Ignore keydowns from IMEs
event.nativeEvent.isComposing ||
// Workaround for Mac Safari where the final Enter/Backspace of an IME composition
// is `isComposing=false`, even though it's technically still part of the composition.
// These can only be detected by keyCode.
event.keyCode === 229
) {
event.preventDefault();
}
};
const isLoading = Object.values( loaders ).some( Boolean );
return (
<Modal
className="commands-command-menu"
overlayClassName="commands-command-menu__overlay"
onRequestClose={ closeAndReset }
__experimentalHideHeader
contentLabel={ __( 'Command palette' ) }
>
<div className="commands-command-menu__container">
<Command label={ inputLabel } onKeyDown={ onKeyDown }>
<div className="commands-command-menu__header">
<Icon icon={ inputIcon } />
<CommandInput
search={ search }
setSearch={ setSearch }
isOpen={ isOpen }
/>
</div>
<Command.List ref={ commandListRef }>
{ search && ! isLoading && (
<Command.Empty>
{ __( 'No results found.' ) }
</Command.Empty>
) }
<CommandMenuGroup
search={ search }
setLoader={ setLoader }
close={ closeAndReset }
isContextual
/>
{ search && (
<CommandMenuGroup
search={ search }
setLoader={ setLoader }
close={ closeAndReset }
/>
) }
</Command.List>
</Command>
</div>
</Modal>
);
}