PluginProbe
Code Snippets / 4.0.0-beta.2
Code Snippets v4.0.0-beta.2
4.0.0-beta.2 3.10.2 3.10.1 3.10.0 3.10.0-beta.2 3.10.0-beta.1 4.0.0-beta.1 3.9.6 trunk 2.10.0 2.10.1 2.12.0 2.12.1 2.13.0 2.13.1 2.13.2 2.13.3 2.14.0 2.14.1 2.14.2 2.14.3 2.14.4 2.14.5 2.14.6 3.0.0 All 65 releases
code-snippets / js / components / common / ScreenMetaSlot.tsx

ScreenMetaSlot.tsx in Code Snippets 4.0.0-beta.2, at js/components/common/ScreenMetaSlot.tsx

40 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import React, { useEffect } from 'react'
2
3 const SLOT_ID = 'snippets-screen-meta-slot'
4
5 export interface ScreenMetaSlotProps {
6 hidden?: boolean
7 }
8
9 /**
10 * Relocates the WordPress Screen Options and Help tabs (and their panels)
11 * from above the page content into this slot, so they appear directly below
12 * the page's subnavigation bar. The slot div is rendered empty by React and
13 * never reconciled with children, so adopting the foreign nodes is safe.
14 * The nodes are returned to the top of the page when the slot unmounts.
15 *
16 * Stays mounted (with `hidden`) rather than being conditionally rendered by
17 * the caller: unmounting hands the adopted nodes back to their native,
18 * visible position at the top of the page instead of hiding them.
19 */
20 export const ScreenMetaSlot: React.FC<ScreenMetaSlotProps> = ({ hidden = false }) => {
21 useEffect(() => {
22 const slot = document.getElementById(SLOT_ID)
23 const meta = document.getElementById('screen-meta')
24 const links = document.getElementById('screen-meta-links')
25
26 if (!slot || !meta || !links) {
27 return undefined
28 }
29
30 const parent = meta.parentElement
31 slot.append(meta, links)
32
33 return () => {
34 parent?.prepend(meta, links)
35 }
36 }, [])
37
38 return <div id={SLOT_ID} className="snippets-screen-meta-slot" hidden={hidden} />
39 }
40