File size: 1,518 Bytes
1e92f2d |
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 |
import CommandPalette from '@automattic/command-palette';
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
import domReady from '@wordpress/dom-ready';
import { createRoot } from 'react-dom/client';
import setLocale from './set-locale';
import { useCommandsWpAdmin } from './use-commands';
import { useSites } from './use-sites';
function CommandPaletteApp() {
if ( ! window.commandPaletteConfig ) {
// Can't load the command palette without a config.
return null;
}
const {
siteId,
isAtomic = false,
isSimple = false,
capabilities,
} = window?.commandPaletteConfig || {};
if ( ! isSimple && ! isAtomic ) {
return;
}
const currentRoute = window.location.pathname + window.location.search;
const navigate = ( url, openInNewTab ) => window.open( url, openInNewTab ? '_blank' : '_self' );
setLocale();
const userCapabilities = { [ siteId ]: capabilities };
return (
<QueryClientProvider client={ new QueryClient() }>
<CommandPalette
navigate={ navigate }
currentRoute={ currentRoute }
useCommands={ useCommandsWpAdmin }
currentSiteId={ siteId }
useSites={ useSites }
userCapabilities={ userCapabilities }
/>
</QueryClientProvider>
);
}
function wpcomInitCommandPalette() {
const commandPaletteContainer = document.createElement( 'div' );
document.body.appendChild( commandPaletteContainer );
const root = createRoot( commandPaletteContainer );
root.render( <CommandPaletteApp /> );
}
domReady( wpcomInitCommandPalette );
|