PluginProbe
OpenStation: Desktop Windows, Dock & Virtual Desktops for WP Admin / 1.1.10
OpenStation: Desktop Windows, Dock & Virtual Desktops for WP Admin v1.1.10
1.1.10 1.1.9 1.1.8 1.1.7 1.1.6 1.1.5 1.1.4 1.1.3 1.1.2 1.1.1 1.1.0 1.0.1 1.0.0 0.9.8 0.9.7 0.9.6 0.9.4 0.9.5 0.9.3 0.9.2 0.9.1 0.9.0 0.8.9 0.8.8 0.8.7 All 34 releases
← All changes | includes/core/payload.php +668 -115 1.1.21.1.10 View file →
@@ -454,10 +454,12 @@
454 454 * URLs) would therefore fill the dock with tiles that can only ever
455 455 * escape to a browser tab, which breaks the shell's navigation model.
456 456 * Those entries are dropped from the payload instead.
457 457 *
458 - * Both `admin_url()` and `home_url()` hosts count as ours: a site can
459 - * run its admin on a different domain than its front end.
458 + * The menu's own admin (`openstation_menu_admin_url()`), `admin_url()`
459 + * and `home_url()` hosts all count as ours: a site can run its admin on
460 + * a different domain than its front end, and the network admin lives on
461 + * the network's own.
460 462 *
461 463 * @param string $url Absolute URL, as returned by `openstation_menu_item_url()`.
462 464 * @return bool True when the URL is off-site.
463 465 */
@@ -466,9 +468,9 @@
466 468 $external = false;
467 469
468 470 if ( $host ) {
469 471 $ours = array();
470 - foreach ( array( admin_url(), home_url() ) as $known ) {
472 + foreach ( array( openstation_menu_admin_url(), admin_url(), home_url() ) as $known ) {
471 473 $known_host = wp_parse_url( $known, PHP_URL_HOST );
472 474 if ( $known_host ) {
473 475 $ours[] = strtolower( $known_host );
474 476 }
@@ -817,8 +819,19 @@
817 819 'link-manager.php', // Link manager (legacy)
818 820 'update-core.php', // Dashboard > Updates
819 821 );
820 822
823 + // The two top-level network menus the site admin has no filename
824 + // for: without them, Sites and Settings sat in the apps zone while
825 + // Dashboard, Users, Themes and Plugins — whose filenames the site
826 + // admin shares — grouped correctly. Gated on the context, since
827 + // `settings.php` is plausible enough as a plugin's own top-level
828 + // slug that claiming it everywhere would misfile it.
829 + if ( is_network_admin() ) {
830 + $core_files[] = 'sites.php';
831 + $core_files[] = 'settings.php';
832 + }
833 +
821 834 return in_array( $base, $core_files, true );
822 835 }
823 836
824 837 /**
@@ -1583,11 +1596,16 @@
1583 1596 }
1584 1597
1585 1598 $dock = array_merge( $core, $plugin );
1586 1599
1600 + // One collector call feeds both halves: the slim entry list and
1601 + // the handle-keyed script data the shell joins them with.
1602 + $native_windows = openstation_collect_native_windows_payload();
1603 +
1587 1604 $payload = array(
1588 - 'dockItems' => $dock,
1589 - 'nativeWindows' => openstation_build_native_windows_payload(),
1605 + 'dockItems' => $dock,
1606 + 'nativeWindows' => $native_windows['windows'],
1607 + 'nativeWindowScriptData' => $native_windows['scriptData'],
1590 1608 );
1591 1609
1592 1610 // Optional per-surface payload builders — each module ships a
1593 1611 // zero-arg `openstation_build_*_payload()`; modules that aren't
@@ -1645,8 +1663,15 @@
1645 1663 'url' => network_admin_url( 'update-core.php' ),
1646 1664 );
1647 1665 }
1648 1666
1667 + // The site switcher's rows: on a network, the instances this shell
1668 + // may switch to (`openstation_multisite_payload()`), null elsewhere.
1669 + // The Network app spends a menu refresh after every action that
1670 + // changes them (add, remove, join, leave, sync), so the row above
1671 + // overview's desktop tiles follows the registry without a reload.
1672 + $payload['multisite'] = openstation_multisite_payload();
1673 +
1649 1674 // A cheap structural fingerprint of the admin menu the shell uses to
1650 1675 // decide whether a live refresh is warranted. Shipped in every full
1651 1676 // payload so the shell can seed / update its last-known signature
1652 1677 // without recomputing it client-side (which would risk drift from
@@ -1729,8 +1754,153 @@
1729 1754 return md5( implode( "\n", $parts ) );
1730 1755 }
1731 1756
1732 1757 /**
1758 + * A handle's dependency closure, in load order.
1759 + *
1760 + * Post-order depth-first: a handle is emitted only after everything it
1761 + * declares, which is the order `WP_Scripts::do_item()` would have
1762 + * printed them in. A handle is marked visited *before* its own
1763 + * dependencies are walked, so a dependency cycle unwinds instead of
1764 + * recursing forever, and an unregistered handle is skipped rather than
1765 + * being fatal — it contributes nothing and stops nothing.
1766 + *
1767 + * **Deliberately not `WP_Dependencies::all_deps()`.** Three reasons,
1768 + * each of which has bitten this codebase:
1769 + *
1770 + * 1. `WP_Scripts::all_deps()` applies `print_scripts_array` to its
1771 + * result whenever `$recursion` is falsy. That filter is where the
1772 + * chromeless palette trim and the asset guard live, so resolving a
1773 + * payload through it would run a print-time trim across a dependency
1774 + * list and let the guard splice this plugin's own bundles into it.
1775 + * Called from inside one of those filters it is an infinite loop.
1776 + *
1777 + * 2. Passing `$recursion = true` silences that filter but changes the
1778 + * contract: the first handle that fails aborts the entire call
1779 + * (`return false`), abandoning every handle after it in the list. The
1780 + * caller is left with a `$to_do` that is a truncated prefix of the real
1781 + * closure and indistinguishable from a complete one — a silent, partial
1782 + * answer conditional on unrelated registrations elsewhere on the page.
1783 + * A lazily-delivered bundle resolved that way loses packages it
1784 + * declared and throws on an undefined global at mount, which is the
1785 + * exact bug this whole mechanism exists to prevent.
1786 + *
1787 + * 3. `all_deps()` reports missing dependencies through
1788 + * `_doing_it_wrong()`. This is read-only analysis; the real print pass
1789 + * raises those anyway, and raising them twice turns someone else's
1790 + * pre-existing warning into our noise.
1791 + *
1792 + * O(V+E) over the graph, allocates one set, and clones nothing.
1793 + *
1794 + * @param WP_Dependencies $dependencies The scripts or styles registry.
1795 + * @param string[] $handles Roots to walk.
1796 + * @return string[] Registered handles, dependencies before dependents.
1797 + */
1798 +function openstation_script_dependency_closure( $dependencies, $handles ) {
1799 + $seen = array();
1800 + $out = array();
1801 + openstation_collect_script_dependency_closure( $dependencies, (array) $handles, $seen, $out );
1802 +
1803 + return $out;
1804 +}
1805 +
1806 +/**
1807 + * Recursive half of {@see openstation_script_dependency_closure()}.
1808 + *
1809 + * @param WP_Dependencies $dependencies The scripts or styles registry.
1810 + * @param string[] $handles Handles to walk.
1811 + * @param array $seen Handle => true, by reference.
1812 + * @param string[] $out Ordered result, by reference.
1813 + */
1814 +function openstation_collect_script_dependency_closure( $dependencies, $handles, &$seen, &$out ) {
1815 + foreach ( (array) $handles as $handle ) {
1816 + if ( isset( $seen[ $handle ] ) ) {
1817 + continue;
1818 + }
1819 + // Marked BEFORE recursing, so a cycle meets itself as visited
1820 + // and unwinds rather than recursing forever.
1821 + $seen[ $handle ] = true;
1822 + if ( ! isset( $dependencies->registered[ $handle ] ) ) {
1823 + continue;
1824 + }
1825 + openstation_collect_script_dependency_closure(
1826 + $dependencies,
1827 + $dependencies->registered[ $handle ]->deps,
1828 + $seen,
1829 + $out
1830 + );
1831 + $out[] = $handle;
1832 + }
1833 +}
1834 +
1835 +/**
1836 + * Resolve a handle's dependency closure, in load order.
1837 + *
1838 + * **Why a lazily-delivered handle needs this at all.** WordPress
1839 + * normally resolves a script's dependencies when it enqueues it — the
1840 + * packages a bundle declares are on the page before its own body runs.
1841 + * A handle that is only ever delivered lazily never goes through that:
1842 + * `loadVendorScript()` injects one URL, and a bundle declaring
1843 + * `wp-api-fetch` found `wp.apiFetch` undefined at mount.
1844 + *
1845 + * That used to work by accident. Core's ⌘K palette was enqueued on
1846 + * every admin page and its closure is the whole Gutenberg runtime, so
1847 + * `wp.apiFetch`, `wp.element` and friends happened to be globals.
1848 + * Deferring the palette took the accident away and left the contract
1849 + * exposed — see `docs/migration-wp-package-globals.md`.
1850 + *
1851 + * The closure comes from {@see openstation_script_dependency_closure()}
1852 + * rather than `WP_Dependencies::all_deps()`; that function's docblock
1853 + * records why, and the short version is that `all_deps()` answers a
1854 + * question like this one with a silently truncated list. The handle
1855 + * itself is excluded — the caller loads it separately, after these.
1856 + *
1857 + * @param string $handle Script handle.
1858 + * @return array<int,array<string,mixed>> Ordered dependency payloads.
1859 + */
1860 +function openstation_resolve_script_dependencies( $handle ) {
1861 + $handle = (string) $handle;
1862 + $wp_scripts = wp_scripts();
1863 + if ( '' === $handle || ! $wp_scripts || ! isset( $wp_scripts->registered[ $handle ] ) ) {
1864 + return array();
1865 + }
1866 + $deps = $wp_scripts->registered[ $handle ]->deps;
1867 + if ( empty( $deps ) ) {
1868 + return array();
1869 + }
1870 +
1871 + $out = array();
1872 + foreach ( openstation_script_dependency_closure( $wp_scripts, $deps ) as $dep_handle ) {
1873 + if ( $dep_handle === $handle ) {
1874 + continue;
1875 + }
1876 + $payload = openstation_resolve_script_payload( $dep_handle );
1877 + // An alias (no `src`) stays in the list when it carries inline
1878 + // data — that data is the whole reason it was declared, and a
1879 + // plugin's config blob commonly rides one. Nothing to fetch
1880 + // AND nothing to run is the only thing dropped.
1881 + if ( '' === $payload['url']
1882 + && empty( $payload['before'] )
1883 + && empty( $payload['after'] )
1884 + && empty( $payload['l10n'] ) ) {
1885 + continue;
1886 + }
1887 + // The handle rides along because the shell needs it to decide
1888 + // whether the page already has this package. A URL is not
1889 + // enough: with Core's script concatenation on — the wp-admin
1890 + // default — every package below `wp-includes/js/` is served
1891 + // from one `load-scripts.php` blob and has no `<script src>`
1892 + // of its own to match against. Re-running `wp-hooks` because
1893 + // we could not see it replaces `window.wp.hooks`, and every
1894 + // subscriber registered at boot goes deaf. See
1895 + // `src/script-presence.ts`.
1896 + $payload['handle'] = (string) $dep_handle;
1897 + $out[] = $payload;
1898 + }
1899 + return $out;
1900 +}
1901 +
1902 +/**
1733 1903 * Resolve a registered WP script handle into the full payload the
1734 1904 * shell needs to lazy-load it without going through `wp_print_scripts()`.
1735 1905 *
1736 1906 * Returns:
@@ -1754,10 +1924,14 @@
1754 1924 * around the lazy `<script src>` in the same order
1755 1925 * `WP_Scripts::do_item()` would have used.
1756 1926 *
1757 1927 * Returns an empty payload (`array( 'url' => '' )`) when the handle
1758 - * is unregistered or has no source — callers treat that as "no
1759 - * script to load."
1928 + * is unregistered. A registered handle with no source — an alias
1929 + * carrying only inline data — also comes back with an empty `url`,
1930 + * but its `before` / `after` / `l10n` are kept: callers that load a
1931 + * bundle treat an empty `url` as "nothing to fetch", and the
1932 + * dependency walk ({@see openstation_resolve_script_dependencies()})
1933 + * still replays what the alias would have printed.
1760 1934 *
1761 1935 * Shared between `openstation_register_window()` and
1762 1936 * `openstation_register_widget()` (and every other registration that
1763 1937 * relies on lazy script loading in the shell) because all of them
@@ -1785,20 +1959,31 @@
1785 1959 return $empty;
1786 1960 }
1787 1961 $registered = $wp_scripts->registered[ $handle ];
1788 1962 $src = is_string( $registered->src ) ? $registered->src : '';
1789 - if ( '' === $src ) {
1790 - return $empty;
1791 - }
1792 1963
1793 - // Normalize relative paths + attach cache-bust ver.
1794 - $resolved = $src;
1795 - if ( 0 === strpos( $resolved, '/' ) && 0 !== strpos( $resolved, '//' ) ) {
1796 - $resolved = site_url( $resolved );
1964 + // A handle with no `src` is an ALIAS — WordPress's supported way
1965 + // to ship inline-only JavaScript (`wp_register_script( $h, false )`
1966 + // plus `wp_add_inline_script()`), and a common home for a plugin's
1967 + // config blob: registering it as a *dependency* of every bundle is
1968 + // what guarantees the config runs first, whatever the enqueue
1969 + // order. `WP_Scripts::do_item()` prints an alias's localized data
1970 + // and its before/after snippets and returns before the `<script
1971 + // src>` it does not have. The payload mirrors that: `url` stays
1972 + // empty (there is nothing to fetch) and the inline data is kept,
1973 + // so a dependency walk can replay it. Translations are not: Core
1974 + // only prints those for a handle it printed a tag for.
1975 + $resolved = '';
1976 + if ( '' !== $src ) {
1977 + // Normalize relative paths + attach cache-bust ver.
1978 + $resolved = $src;
1979 + if ( 0 === strpos( $resolved, '/' ) && 0 !== strpos( $resolved, '//' ) ) {
1980 + $resolved = site_url( $resolved );
1981 + }
1982 + if ( ! empty( $registered->ver ) ) {
1983 + $resolved = add_query_arg( 'ver', $registered->ver, $resolved );
1984 + }
1797 1985 }
1798 - if ( ! empty( $registered->ver ) ) {
1799 - $resolved = add_query_arg( 'ver', $registered->ver, $resolved );
1800 - }
1801 1986
1802 1987 // Harvest `extra` data the lazy-load path would otherwise drop.
1803 1988 $before = array();
1804 1989 $after = array();
@@ -1833,9 +2018,9 @@
1833 2018 // `wp.i18n.setLocaleData( JSON, 'domain' )` snippet that the print
1834 2019 // pipeline emits before the script body. `print_translations(
1835 2020 // $handle, false )` returns the snippet without echoing.
1836 2021 $translations = '';
1837 - if ( method_exists( $wp_scripts, 'print_translations' ) ) {
2022 + if ( '' !== $resolved && method_exists( $wp_scripts, 'print_translations' ) ) {
1838 2023 $captured = $wp_scripts->print_translations( $handle, false );
1839 2024 if ( is_string( $captured ) ) {
1840 2025 $translations = $captured;
1841 2026 }
@@ -1922,8 +2107,192 @@
1922 2107 );
1923 2108 }
1924 2109
1925 2110 /**
2111 + * Build the deferred command-palette asset manifest.
2112 + *
2113 + * `wp_enqueue_command_palette_assets()` (WP 6.9+) enqueues
2114 + * `wp-commands` + `wp-core-commands` and attaches the inline
2115 + * `wp.coreCommands.initializeCommandPalette( … )` call that seeds the
2116 + * `core/commands` store. Its transitive dependency chain is the whole
2117 + * Gutenberg runtime — `wp-block-editor`, `wp-components`, React,
2118 + * `wp-core-data`, some forty bundles, ~800 KB gzipped — which the
2119 + * shell used to pay on EVERY boot so that the ⌘K palette's baseline
2120 + * commands existed if the user ever opened it.
2121 + *
2122 + * This builder lets Core do exactly what it would have done — the
2123 + * menu-command serialization and the inline init included — then
2124 + * UNWINDS the enqueue: it snapshots the script/style queues, calls
2125 + * the Core function, diffs out the roots it added, restores the
2126 + * queues so nothing prints at boot, and resolves the full ordered
2127 + * dependency chain on CLONES (the live `$to_do` is never touched).
2128 + * Each handle in the chain is harvested into the same
2129 + * url/before/after/l10n/translations shape the native-window lazy
2130 + * loader uses, and the shell replays the list — in order — the first
2131 + * time the palette is invoked (`src/commands/palette-assets.ts`).
2132 + *
2133 + * Handles with no `src` (pure aggregators) are kept whenever they
2134 + * carry inline data; dropping them would lose middleware and locale
2135 + * setup the chain depends on. Handles the boot page already printed
2136 + * are skipped client-side, by handle as well as by path so that a
2137 + * package Core concatenated into `load-scripts.php` is recognized
2138 + * (`src/script-presence.ts`) — the manifest deliberately lists them
2139 + * anyway, because which ones those are differs per site and per
2140 + * screen. Each entry therefore carries its `handle`, and that is
2141 + * load-bearing rather than informational.
2142 + *
2143 + * Returns `null` on pre-6.9 sites (no Core palette to defer).
2144 + *
2145 + * @return array{scripts:array<int,array<string,mixed>>,styles:array<int,array<string,mixed>>}|null
2146 + */
2147 +function openstation_build_command_palette_assets_payload() {
2148 + if ( ! function_exists( 'wp_enqueue_command_palette_assets' ) ) {
2149 + return null;
2150 + }
2151 + $scripts = wp_scripts();
2152 + $styles = wp_styles();
2153 + if ( ! $scripts || ! $styles ) {
2154 + return null;
2155 + }
2156 +
2157 + // `wp_enqueue_command_palette_assets()` reads `$submenu` without
2158 + // guarding the global — initialize defensively (test contexts,
2159 + // edge-case admin requests where the menu wasn't built yet).
2160 + global $menu, $submenu;
2161 + // phpcs:disable WordPress.WP.GlobalVariablesOverride.Prohibited -- initializing an unset global to its documented empty shape, not replacing a built menu.
2162 + if ( ! isset( $submenu ) || ! is_array( $submenu ) ) {
2163 + $submenu = array();
2164 + }
2165 + if ( ! isset( $menu ) || ! is_array( $menu ) ) {
2166 + $menu = array();
2167 + }
2168 + // phpcs:enable WordPress.WP.GlobalVariablesOverride.Prohibited
2169 +
2170 + $script_queue_before = $scripts->queue;
2171 + $style_queue_before = $styles->queue;
2172 +
2173 + wp_enqueue_command_palette_assets();
2174 +
2175 + $script_roots = array_values( array_diff( $scripts->queue, $script_queue_before ) );
2176 + $style_roots = array_values( array_diff( $styles->queue, $style_queue_before ) );
2177 +
2178 + // Unwind: the boot page must not print any of it. The inline init
2179 + // stays attached to the `wp-core-commands` HANDLE — that is the
2180 + // point: the harvest below captures it, and if some other screen
2181 + // legitimately enqueues the handle, it prints as Core intended.
2182 + $scripts->queue = $script_queue_before;
2183 + $styles->queue = $style_queue_before;
2184 +
2185 + $out = array(
2186 + 'scripts' => array(),
2187 + 'styles' => array(),
2188 + );
2189 +
2190 + // Ordered dependency chains, resolved on clones so the request's
2191 + // real `$to_do` / `$done` state is untouched.
2192 + $script_probe = clone $scripts;
2193 + $script_probe->to_do = array();
2194 + $script_probe->done = array();
2195 + $script_probe->all_deps( $script_roots );
2196 + foreach ( $script_probe->to_do as $handle ) {
2197 + $payload = openstation_resolve_script_payload( $handle );
2198 + // A src-less aggregator is kept only for its inline data — the
2199 + // resolver harvests that for an alias — and dropped when it
2200 + // carries none.
2201 + if ( '' === $payload['url']
2202 + && empty( $payload['before'] )
2203 + && empty( $payload['after'] )
2204 + && empty( $payload['l10n'] ) ) {
2205 + continue;
2206 + }
2207 + // Core's `initializeCommandPalette( {…} )` inline embeds the
2208 + // serialized admin-menu command list — ~20 KB that the boot
2209 + // page ALREADY carries as `window.__openStationMenuCommands`
2210 + // (the shell harvester's lookup, attached as a `before`
2211 + // inline on the main bundle, and the richer of the two: its
2212 + // URL derivation routes legacy file-path slugs through
2213 + // `menu_page_url()` where Core's regex takes them literally).
2214 + // Ship the list once: strip Core's embedded copy and
2215 + // synthesize the same call against the global, which is
2216 + // guaranteed present long before the manifest replays — it
2217 + // prints at boot, the replay waits for the first ⌘K.
2218 + if ( 'wp-core-commands' === $handle ) {
2219 + foreach ( array( 'before', 'after' ) as $position ) {
2220 + $payload[ $position ] = array_values(
2221 + array_filter(
2222 + $payload[ $position ],
2223 + static function ( $snippet ) {
2224 + return false === strpos( (string) $snippet, 'initializeCommandPalette(' );
2225 + }
2226 + )
2227 + );
2228 + }
2229 + $payload['after'][] = sprintf(
2230 + 'wp.coreCommands.initializeCommandPalette({"is_network_admin":%s,"menu_commands":window.__openStationMenuCommands||[]});',
2231 + is_network_admin() ? 'true' : 'false'
2232 + );
2233 + }
2234 +
2235 + $out['scripts'][] = array(
2236 + 'handle' => (string) $handle,
2237 + 'url' => $payload['url'],
2238 + 'before' => $payload['before'],
2239 + 'after' => $payload['after'],
2240 + 'l10n' => $payload['l10n'],
2241 + 'translations' => $payload['translations'],
2242 + );
2243 + }
2244 +
2245 + $style_probe = clone $styles;
2246 + $style_probe->to_do = array();
2247 + $style_probe->done = array();
2248 + $style_probe->all_deps( $style_roots );
2249 + foreach ( $style_probe->to_do as $handle ) {
2250 + $style_payload = openstation_resolve_style_payload( $handle );
2251 + if ( '' === $style_payload['url'] ) {
2252 + continue;
2253 + }
2254 + $out['styles'][] = array(
2255 + 'handle' => (string) $handle,
2256 + 'url' => $style_payload['url'],
2257 + 'inline' => $style_payload['inline'],
2258 + );
2259 + }
2260 +
2261 + return $out;
2262 +}
2263 +
2264 +/**
2265 + * Resolve a list of style handles into the `deferredStyles` config
2266 + * map: handle → `array( 'url' => …, 'inline' => string[] )`.
2267 + *
2268 + * For shell surfaces that render on demand but are NOT native
2269 + * windows — the Preferences panel, the AI assistant, the bug-report
2270 + * window — so the `styles` companion mechanism can't carry their
2271 + * CSS. The shell reads this map off `openStationConfig.deferredStyles`
2272 + * and injects each sheet the first time its surface opens
2273 + * (`ensureDeferredStyle()` in `src/deferred-styles.ts`).
2274 + *
2275 + * Handles that resolve to nothing (never registered) are dropped, so
2276 + * the client map only ever holds injectable entries.
2277 + *
2278 + * @param string[] $handles Registered style handles.
2279 + * @return array<string, array{url:string, inline:string[]}>
2280 + */
2281 +function openstation_build_deferred_styles( $handles ) {
2282 + $out = array();
2283 + foreach ( (array) $handles as $handle ) {
2284 + $handle = (string) $handle;
2285 + $payload = openstation_resolve_style_payload( $handle );
2286 + if ( '' === $payload['url'] ) {
2287 + continue;
2288 + }
2289 + $out[ $handle ] = $payload;
2290 + }
2291 + return $out;
2292 +}
2293 +
2294 +/**
1926 2295 * Fire a `_doing_it_wrong()` notice exactly once per handle per
1927 2296 * request. Shared by every `openstation_build_desktop_*_scripts_payload()`
1928 2297 * caller — payload builders run on every shell-config rebuild
1929 2298 * (multiple times per page load via REST + admin-bar refresh +
@@ -1952,9 +2321,9 @@
1952 2321 _doing_it_wrong(
1953 2322 esc_html( $function_name ),
1954 2323 sprintf(
1955 2324 /* translators: 1: kind ("Command"/"Settings-tab"/"Title-bar button"), 2: handle. */
1956 - esc_html__( '%1$s script handle "%2$s" is not registered with WordPress (no `wp_register_script` call found). The script will not load.', 'desktop-mode' ),
2325 + esc_html__( '%1$s script handle "%2$s" could not be resolved: no `wp_register_script( \'%2$s\', … )` call had run by the time the shell harvested its payload. Register the handle on `admin_enqueue_scripts` at priority 5 or earlier — the harvest itself runs at priority 10, and a handle registered alongside it may or may not exist yet depending on plugin load order. Until then the script will not load.', 'desktop-mode' ),
1957 2326 esc_html( $kind ),
1958 2327 esc_html( $handle )
1959 2328 ),
1960 2329 '0.8.1'
@@ -1996,28 +2365,153 @@
1996 2365 openstation_warn_unresolvable_script_handle( '', '', '__flush__' );
1997 2366 }
1998 2367
1999 2368 /**
2000 - * Serialize the server-declared native-window registry into the
2001 - * payload shape the shell consumes. For each entry registered via
2002 - * `openstation_register_window()`, we capture: the window's
2003 - * metadata (id/title/icon/placement/dimensions/autofocus), the
2004 - * rendered template HTML (by running the template callback into an
2005 - * output buffer), and the URL of the enqueued script handle (so
2006 - * mid-session activations can load the plugin's JS dynamically
2007 - * without a full shell reload).
2369 + * Collect the native-window payload: slim per-window entries plus a
2370 + * handle-keyed script-data map.
2008 2371 *
2009 - * @return array[]
2372 + * For each entry registered via `openstation_register_window()` the
2373 + * `windows` list captures the window's metadata
2374 + * (id/title/icon/placement/dimensions/autofocus), the rendered
2375 + * template HTML, and the HANDLE NAMES of its script, companions and
2376 + * tab scripts. The resolved data those handles stand for — URL plus
2377 + * harvested `wp_localize_script` / `wp_add_inline_script` /
2378 + * translations, see `openstation_resolve_script_payload()` — lives
2379 + * ONCE per handle in `scriptData`, and the shell joins the two on
2380 + * receipt (`hydrateServerEntries()` in `src/native-windows.ts`).
2381 + * Each loadable handle's entry also names its dependency closure in
2382 + * `deps` (ordered handles, every one of them a key of the same map)
2383 + * so the lazy loader can bring a bundle's declared packages — and
2384 + * a src-less alias carrying its config — into the tab before it.
2385 + *
2386 + * The split exists because script data is a property of the HANDLE,
2387 + * not of the window: every App Framework window rides
2388 + * `openstation-app-runtime`, and inlining each entry's resolved copy
2389 + * serialized the same localize blobs and the same shared config set
2390 + * four times over — `scriptL10n` alone was ~100 KB of the boot
2391 + * payload, most of it repetition. The synthesized
2392 + * `openStationWindowConfig[ id ]` assignments group by handle for
2393 + * the same reason they used to ride every sharing entry: the shell
2394 + * fetches a URL once, and a bundle can serve one window from inside
2395 + * another (the Users window mounts the Profile form, which reads the
2396 + * user-edit config), so whichever entry loads the bundle must
2397 + * deliver the whole handle's config set.
2398 + *
2399 + * Style data stays inline on the entries — it never had a
2400 + * duplication problem worth a second map ( companion styles across
2401 + * the whole registry total ~2 KB ).
2402 + *
2403 + * @return array{windows:array[],scriptData:array<string,array{url:string,before:string[],after:string[],l10n:string[],translations:string,deps:string[]}>}
2010 2404 */
2011 -function openstation_build_native_windows_payload() {
2405 +function openstation_collect_native_windows_payload() {
2406 + $empty = array(
2407 + 'windows' => array(),
2408 + 'scriptData' => array(),
2409 + );
2012 2410 if ( ! function_exists( 'openstation_native_window_registry' ) ) {
2013 - return array();
2411 + return $empty;
2014 2412 }
2413 +
2015 2414 $registry = openstation_native_window_registry();
2016 2415 if ( ! is_array( $registry ) ) {
2017 - return array();
2416 + return $empty;
2018 2417 }
2019 2418
2419 + // A window says which admin offers it (`admin` in its registration:
2420 + // `site`, `network` or `any`). Every native window OpenStation
2421 + // ships is site-scoped, reading the current site's REST API, so in
2422 + // the network admin a `users.php` tile meaning "everyone on the
2423 + // network" would open one site's user list; those stay off the
2424 + // network shell. A window that declares `network` (the Network app)
2425 + // is offered there and nowhere else.
2426 + //
2427 + // Dropping the site windows there is also what disarms the
2428 + // client-side URL remaps: they match on the tail of a pathname
2429 + // (`endsWith( '/users.php' )`) and the network admin serves
2430 + // same-named files one directory down, but with nothing registered
2431 + // `openById()` finds no window and the remap falls through to the
2432 + // iframe.
2433 + $registry = array_filter( $registry, 'openstation_native_window_offered_here' );
2434 +
2435 + $script_data = array();
2436 +
2437 + // Handles resolved as a bundle to LOAD (a window's script, a
2438 + // companion, a tab) and what that visit answered — the handle, or
2439 + // '' for nothing to load — as opposed to reached only as
2440 + // somebody's dependency. A handle can be both — resolved as a
2441 + // dependency first, then named as a window's own script — and
2442 + // only the bundle visit computes its own closure.
2443 + $resolved_as_bundle = array();
2444 +
2445 + // Resolve a handle into the map, once. Returns the handle when it
2446 + // resolved to something loadable, '' when it did not (never
2447 + // registered, no src) — the same silent drop the inline shape
2448 + // applied to companions and tab scripts.
2449 + //
2450 + // The handle's dependency closure rides along as `deps`: an
2451 + // ordered handle list, each of which lands in the same map. A
2452 + // bundle delivered lazily never goes through WordPress's own
2453 + // dependency resolution — the loader injects one URL — so a
2454 + // window declaring `wp-api-fetch` found `wp.apiFetch` undefined,
2455 + // and one whose config rides a src-less alias handle (a common
2456 + // shape: `wp_register_script( $h, false )` plus
2457 + // `wp_add_inline_script()`, declared as the bundle's dependency
2458 + // so it always runs first) booted with no config at all. Anything
2459 + // the document already ran is skipped on the client, so a page
2460 + // that carried the packages anyway pays nothing.
2461 + $collect_handle = static function ( $handle ) use ( &$script_data, &$resolved_as_bundle ) {
2462 + $handle = (string) $handle;
2463 + if ( '' === $handle ) {
2464 + return '';
2465 + }
2466 + if ( isset( $resolved_as_bundle[ $handle ] ) ) {
2467 + return $resolved_as_bundle[ $handle ];
2468 + }
2469 + $payload = isset( $script_data[ $handle ] )
2470 + ? $script_data[ $handle ]
2471 + : openstation_resolve_script_payload( $handle );
2472 + if ( '' === $payload['url'] ) {
2473 + $resolved_as_bundle[ $handle ] = '';
2474 + return '';
2475 + }
2476 + $resolved_as_bundle[ $handle ] = $handle;
2477 + $deps = array();
2478 + foreach ( openstation_resolve_script_dependencies( $handle ) as $dep ) {
2479 + $dep_handle = (string) $dep['handle'];
2480 + unset( $dep['handle'] );
2481 + if ( ! isset( $script_data[ $dep_handle ] ) ) {
2482 + $dep['deps'] = array();
2483 + $script_data[ $dep_handle ] = $dep;
2484 + }
2485 + $deps[] = $dep_handle;
2486 + }
2487 + $payload['deps'] = $deps;
2488 + $script_data[ $handle ] = $payload;
2489 + return $handle;
2490 + };
2491 +
2492 + // Synthesized `openStationWindowConfig[ id ]` assignments, grouped
2493 + // by script handle (see the function docblock). Collected first so
2494 + // they can be appended to each handle's map entry exactly once,
2495 + // after its own harvested data — the same order the print pipeline
2496 + // would have used.
2497 + $config_snippets_by_handle = array();
2498 + foreach ( $registry as $entry ) {
2499 + $handle = isset( $entry['script'] ) ? (string) $entry['script'] : '';
2500 + if ( '' === $handle || ! is_callable( $entry['template'] ) ) {
2501 + continue;
2502 + }
2503 + $window_config = openstation_filter_native_window_config( $entry );
2504 + if ( empty( $window_config ) ) {
2505 + continue;
2506 + }
2507 + $config_snippets_by_handle[ $handle ][ $entry['id'] ] = sprintf(
2508 + 'window.openStationWindowConfig=window.openStationWindowConfig||{};window.openStationWindowConfig[%s]=%s;',
2509 + wp_json_encode( $entry['id'] ),
2510 + wp_json_encode( $window_config )
2511 + );
2512 + }
2513 +
2020 2514 $out = array();
2021 2515 foreach ( $registry as $entry ) {
2022 2516 if ( ! is_callable( $entry['template'] ) ) {
2023 2517 continue;
@@ -2030,40 +2524,34 @@
2030 2524 // `<template>` at mid-session plugin activation without a
2031 2525 // reload.
2032 2526 $template_html = openstation_build_native_window_template_html( $entry );
2033 2527
2034 - // Resolve script handle → full payload (URL + harvested
2035 - // `extra` data) so the shell can inject a `<script>` tag
2036 - // dynamically on mid-session activation WITHOUT dropping
2037 - // `wp_localize_script` / `wp_add_inline_script` data the way
2038 - // the bare `<script src>` lazy-load path would. See
2039 - // `openstation_resolve_script_payload()` for shape.
2040 - $script_handle = isset( $entry['script'] ) ? (string) $entry['script'] : '';
2041 - $script_payload = openstation_resolve_script_payload( $script_handle );
2528 + // `$collect_handle()` answers "is there a bundle to fetch?", and
2529 + // returns '' when the handle resolves to no URL — a src-less
2530 + // alias handle registered only to carry `preload_script` or
2531 + // inline data, for instance. That is the right answer for
2532 + // `scriptHandle`, which names something to load. It is the
2533 + // wrong answer for `ownerHandle`, which names WHO the window
2534 + // belongs to: attribution does not depend on whether the owner
2535 + // happens to ship a file. Shipping '' there broke the
2536 + // documented "always populated" contract and blanked
2537 + // `wp.os.debug.window()`.
2538 + $declared_script = isset( $entry['script'] ) ? (string) $entry['script'] : '';
2539 + $script_handle = $collect_handle( $declared_script );
2540 + $owner_handle = '' !== $script_handle ? $script_handle : $declared_script;
2042 2541
2043 2542 // Companion handles (`scripts` arg) — bundles that extend the
2044 2543 // window from outside it and must be in the tab before its
2045 - // render callback paints. Same resolved shape as the main
2046 - // script, kept as a list so the shell loads them in the
2047 - // declared order ahead of it. Handles that resolve to nothing
2048 - // (never registered) are dropped rather than shipped as an
2049 - // entry the loader would skip anyway.
2544 + // render callback paints. Kept as an ordered handle list; the
2545 + // shell loads them in declared order ahead of the window's
2546 + // own script, resolving each through `scriptData`.
2050 2547 $companion_scripts = array();
2051 2548 if ( ! empty( $entry['scripts'] ) && is_array( $entry['scripts'] ) ) {
2052 2549 foreach ( $entry['scripts'] as $companion_handle ) {
2053 - $companion_handle = (string) $companion_handle;
2054 - $companion_payload = openstation_resolve_script_payload( $companion_handle );
2055 - if ( '' === $companion_payload['url'] ) {
2056 - continue;
2550 + $companion_handle = $collect_handle( $companion_handle );
2551 + if ( '' !== $companion_handle ) {
2552 + $companion_scripts[] = $companion_handle;
2057 2553 }
2058 - $companion_scripts[] = array(
2059 - 'scriptUrl' => $companion_payload['url'],
2060 - 'scriptHandle' => $companion_handle,
2061 - 'scriptBefore' => $companion_payload['before'],
2062 - 'scriptAfter' => $companion_payload['after'],
2063 - 'scriptL10n' => $companion_payload['l10n'],
2064 - 'scriptTranslations' => $companion_payload['translations'],
2065 - );
2066 2554 }
2067 2555 }
2068 2556
2069 2557 // Resolve the optional style handle alongside the script so the
@@ -2073,90 +2561,123 @@
2073 2561 // handle isn't registered — both treated as "no styles to load."
2074 2562 $style_handle = isset( $entry['style'] ) ? (string) $entry['style'] : '';
2075 2563 $style_payload = openstation_resolve_style_payload( $style_handle );
2076 2564
2077 - // `config` arg on `openstation_register_window()` — discoverable
2078 - // alternative to `wp_localize_script`. We synthesize a localize
2079 - // snippet so it lands through the same delivery path as native
2080 - // `wp_localize_script`. The bundle reads
2081 - // `window.openStationWindowConfig[id]` (or via
2082 - // `wp.os.getWindowConfig(id)`).
2083 - $window_config = openstation_filter_native_window_config( $entry );
2084 - if ( ! empty( $window_config ) ) {
2085 - $script_payload['l10n'][] = sprintf(
2086 - 'window.openStationWindowConfig=window.openStationWindowConfig||{};window.openStationWindowConfig[%s]=%s;',
2087 - wp_json_encode( $entry['id'] ),
2088 - wp_json_encode( $window_config )
2089 - );
2565 + // Companion style handles (`styles` arg) — stylesheets the
2566 + // shell injects on the window's FIRST OPEN, after the window's
2567 + // own style, in declared order. The styles-side mirror of
2568 + // `companionScripts`, with different timing on purpose: the
2569 + // window's own `style` lands when the window registers so a
2570 + // mid-session activation paints, but a companion exists to be
2571 + // deferred — it costs nothing until the window is actually
2572 + // shown. Unregistered handles drop, same as script companions.
2573 + $companion_styles = array();
2574 + if ( ! empty( $entry['styles'] ) && is_array( $entry['styles'] ) ) {
2575 + foreach ( $entry['styles'] as $companion_style_handle ) {
2576 + $companion_style_handle = (string) $companion_style_handle;
2577 + $companion_style_payload = openstation_resolve_style_payload( $companion_style_handle );
2578 + if ( '' === $companion_style_payload['url'] ) {
2579 + continue;
2580 + }
2581 + $companion_styles[] = array(
2582 + 'styleUrl' => $companion_style_payload['url'],
2583 + 'styleHandle' => $companion_style_handle,
2584 + 'styleInline' => $companion_style_payload['inline'],
2585 + );
2586 + }
2090 2587 }
2091 2588
2092 - // Tab metadata (label + extra script payloads) ships alongside
2093 - // the template so the shell can render a picker UI or load
2094 - // additional tab scripts when a tab's activation is late.
2589 + // Tab metadata ships alongside the template so the shell can
2590 + // render a picker UI, and each tab's script handle joins the
2591 + // map so a late tab activation can still load its bundle.
2095 2592 $tab_descriptors = array();
2096 2593 if ( function_exists( 'openstation_get_native_window_tabs' ) ) {
2097 2594 foreach ( openstation_get_native_window_tabs( $entry['id'] ) as $tab ) {
2098 - // The resolver returns the empty payload shape itself
2099 - // for an empty handle — no need to hand-write it here.
2100 - $tab_payload = openstation_resolve_script_payload( $tab['script'] );
2101 2595 $tab_descriptors[] = array(
2102 - 'value' => $tab['value'],
2103 - 'label' => $tab['label'],
2104 - 'isMain' => $tab['is_main'],
2105 - 'scriptUrl' => $tab_payload['url'],
2106 - 'scriptHandle' => $tab['script'],
2107 - 'scriptBefore' => $tab_payload['before'],
2108 - 'scriptAfter' => $tab_payload['after'],
2109 - 'scriptL10n' => $tab_payload['l10n'],
2110 - 'scriptTranslations' => $tab_payload['translations'],
2596 + 'value' => $tab['value'],
2597 + 'label' => $tab['label'],
2598 + 'isMain' => $tab['is_main'],
2599 + 'scriptHandle' => $collect_handle( $tab['script'] ),
2111 2600 );
2112 2601 }
2113 2602 }
2114 2603
2115 2604 $out[] = array(
2116 - 'id' => $entry['id'],
2117 - 'title' => $entry['title'],
2118 - 'icon' => $entry['icon'],
2119 - 'placement' => $entry['placement'],
2605 + 'id' => $entry['id'],
2606 + 'title' => $entry['title'],
2607 + 'icon' => $entry['icon'],
2608 + 'placement' => $entry['placement'],
2120 2609 // `'app'` or `'control'` — the navigation kind, which
2121 2610 // decides the launcher's default placement and its dock
2122 2611 // zone. See `src/nav/defaults.ts`.
2123 - 'navKind' => isset( $entry['nav_kind'] ) ? $entry['nav_kind'] : 'app',
2612 + 'navKind' => isset( $entry['nav_kind'] ) ? $entry['nav_kind'] : 'app',
2124 2613 // Sort key among system tiles. Absent / 0 puts a plugin's
2125 2614 // launcher ahead of the shell's own trailing cluster.
2126 - 'dockOrder' => isset( $entry['dock_order'] ) ? (int) $entry['dock_order'] : 0,
2127 - 'placeable' => ! empty( $entry['placeable'] ),
2128 - 'width' => $entry['width'],
2129 - 'height' => $entry['height'],
2130 - 'minWidth' => $entry['min_width'],
2131 - 'minHeight' => $entry['min_height'],
2132 - 'autofocus' => $entry['autofocus'],
2133 - 'templateId' => 'os-native-window-' . $entry['id'],
2134 - 'templateHtml' => $template_html,
2135 - 'scriptUrl' => $script_payload['url'],
2136 - 'scriptHandle' => $script_handle,
2137 - 'ownerHandle' => $script_handle,
2138 - 'scriptBefore' => $script_payload['before'],
2139 - 'scriptAfter' => $script_payload['after'],
2140 - 'scriptL10n' => $script_payload['l10n'],
2141 - 'scriptTranslations' => $script_payload['translations'],
2142 - 'companionScripts' => $companion_scripts,
2615 + 'dockOrder' => isset( $entry['dock_order'] ) ? (int) $entry['dock_order'] : 0,
2616 + 'placeable' => ! empty( $entry['placeable'] ),
2617 + 'width' => $entry['width'],
2618 + 'height' => $entry['height'],
2619 + 'minWidth' => $entry['min_width'],
2620 + 'minHeight' => $entry['min_height'],
2621 + 'autofocus' => $entry['autofocus'],
2622 + 'templateId' => 'os-native-window-' . $entry['id'],
2623 + 'templateHtml' => $template_html,
2624 + 'scriptHandle' => $script_handle,
2625 + 'ownerHandle' => $owner_handle,
2626 + 'companionScripts' => $companion_scripts,
2143 2627 // Whether the shell loads the bundle at boot rather than on
2144 2628 // first open. Off by default: a window's script is dead
2145 2629 // weight on every admin page until the window is actually
2146 2630 // opened.
2147 - 'preloadScript' => ! empty( $entry['preload_script'] ),
2148 - 'styleUrl' => $style_payload['url'],
2149 - 'styleHandle' => $style_handle,
2150 - 'styleInline' => $style_payload['inline'],
2151 - 'tabs' => $tab_descriptors,
2631 + 'preloadScript' => ! empty( $entry['preload_script'] ),
2632 + 'styleUrl' => $style_payload['url'],
2633 + 'styleHandle' => $style_handle,
2634 + 'styleInline' => $style_payload['inline'],
2635 + 'companionStyles' => $companion_styles,
2636 + 'tabs' => $tab_descriptors,
2152 2637 );
2153 2638 }
2154 2639
2155 - return $out;
2640 + // Append each handle's synthesized config set to its map entry —
2641 + // once, after the handle's own harvested data. The snippets land
2642 + // in REGISTRY-ITERATION order for every consumer of the handle;
2643 + // the old per-entry shape put each window's own config first, an
2644 + // ordering nothing could observe (each snippet assigns a distinct
2645 + // `openStationWindowConfig[ id ]` key and none reads another), so
2646 + // it is deliberately not preserved. Configs for handles that
2647 + // resolved to nothing are undeliverable and drop, exactly as they
2648 + // always did.
2649 + foreach ( $config_snippets_by_handle as $handle => $snippets ) {
2650 + if ( ! isset( $script_data[ $handle ] ) ) {
2651 + continue;
2652 + }
2653 + foreach ( $snippets as $snippet ) {
2654 + $script_data[ $handle ]['l10n'][] = $snippet;
2655 + }
2656 + }
2657 +
2658 + return array(
2659 + 'windows' => $out,
2660 + 'scriptData' => $script_data,
2661 + );
2156 2662 }
2157 2663
2158 2664 /**
2665 + * The `windows` half of {@see openstation_collect_native_windows_payload()}.
2666 + *
2667 + * Kept as the historical entry point — tests and older call sites
2668 + * ask for the entry list alone. Anything that also needs the
2669 + * script-data map (everything that actually LOADS a bundle) should
2670 + * call the collector and take both halves from one build.
2671 + *
2672 + * @return array[]
2673 + */
2674 +function openstation_build_native_windows_payload() {
2675 + $bundle = openstation_collect_native_windows_payload();
2676 + return $bundle['windows'];
2677 +}
2678 +
2679 +/**
2159 2680 * Cleans a `$menu` / `$submenu` title for display.
2160 2681 *
2161 2682 * Strips badge spans first (`<span class="update-plugins count-3">`),
2162 2683 * then any remaining markup. An empty result means the entry has no
@@ -2214,13 +2735,45 @@
2214 2735 return file_exists( ABSPATH . 'wp-admin/' . $file );
2215 2736 }
2216 2737
2217 2738 /**
2739 + * The admin URL a menu slug resolves against.
2740 + *
2741 + * Follows the admin the request is in: the network admin's own URL there,
2742 + * because its globals carry network slugs (`sites.php`, `settings.php`)
2743 + * that exist only under `wp-admin/network/`, and the site admin's
2744 + * everywhere else.
2745 + *
2746 + * The same answer `self_admin_url()` gives, without its filter. That
2747 + * filter receives the path, so a host can use it to send one screen
2748 + * somewhere else, and WordPress.com points `plugin-install.php` at its own
2749 + * installer. Resolved through it, the wp-admin original of a menu row the
2750 + * host replaced reads as off-site, and the dock drops it along with the
2751 + * replacement, which is how Plugins > Add Plugin disappears there.
2752 + *
2753 + * @param string $path Optional. Path relative to the admin URL.
2754 + * @return string Absolute admin URL.
2755 + */
2756 +function openstation_menu_admin_url( $path = '' ) {
2757 + if ( is_network_admin() ) {
2758 + return network_admin_url( $path );
2759 + }
2760 + if ( is_user_admin() ) {
2761 + return user_admin_url( $path );
2762 + }
2763 + return admin_url( $path );
2764 +}
2765 +
2766 +/**
2218 2767 * Converts a menu item slug to a full admin URL.
2219 2768 *
2769 + * Resolution goes through {@see openstation_menu_admin_url()}, which
2770 + * follows the admin the request is in without passing through the
2771 + * filterable `self_admin_url()`.
2772 + *
2220 2773 * Handles three slug shapes:
2221 2774 * 1. Direct file references (`edit.php`, `upload.php`) — passed
2222 - * through `admin_url()` as-is.
2775 + * through `openstation_menu_admin_url()` as-is.
2223 2776 * 2. Plain plugin page slugs (`my-plugin`) — routed through
2224 2777 * `admin.php?page=<slug>` with the slug `rawurlencode()`d.
2225 2778 * 3. Plugin page slugs that embed extra query parameters
2226 2779 * (`wc-admin&path=/customers`) — split on the first `&`, the
@@ -2281,9 +2834,9 @@
2281 2834 if (
2282 2835 false !== strpos( $slug, '.php' ) &&
2283 2836 ( ! isset( $_parent_pages[ $slug ] ) || openstation_is_admin_file_slug( $slug ) )
2284 2837 ) {
2285 - return esc_url_raw( admin_url( $slug ) );
2838 + return esc_url_raw( openstation_menu_admin_url( $slug ) );
2286 2839 }
2287 2840
2288 2841 // Plugin page slug with embedded query parameters
2289 2842 // (e.g., 'wc-admin&path=/customers'). Split the page slug from
@@ -2323,9 +2876,9 @@
2323 2876 $host = add_query_arg( 'page', $slug, $parent_slug );
2324 2877 }
2325 2878 }
2326 2879
2327 - $url = admin_url( $host );
2880 + $url = openstation_menu_admin_url( $host );
2328 2881 if ( ! empty( $extra_args ) ) {
2329 2882 $url = add_query_arg( $extra_args, $url );
2330 2883 }
2331 2884 return esc_url_raw( $url );