| @@ -122,13 +122,14 @@ | ||
| 122 | 122 | * |
| 123 | 123 | * window-chrome → window-states → effects → window-links |
| 124 | 124 | * → windows |
| 125 | 125 | * |
| 126 | - * `window-overview` and `os-settings` are deliberately NOT in this | |
| 127 | - * chain — they are registered below, after `os-windows`, | |
| 128 | - * so they can load deferred. Adding a sheet here means splicing it | |
| 129 | - * into the chain, not appending an unrelated dependency: order is | |
| 130 | - * the contract. | |
| 126 | + * `window-overview` is deliberately NOT in this chain — it is | |
| 127 | + * registered below, after `os-windows`, so it can load deferred. | |
| 128 | + * Adding a sheet here means splicing it into the chain, not | |
| 129 | + * appending an unrelated dependency: order is the contract. | |
| 130 | + * (The Preferences window's sheet is not here at all: it rides | |
| 131 | + * the `apps/os-settings/` app as a first-open companion style.) | |
| 131 | 132 | */ |
| 132 | 133 | $window_sheets = array( |
| 133 | 134 | 'os-window-chrome' => 'assets/css/window-chrome.css', |
| 134 | 135 | 'os-window-states' => 'assets/css/window-states.css', |
| @@ -154,14 +155,14 @@ | ||
| 154 | 155 | OPENSTATION_URL . 'assets/css/windows.css', |
| 155 | 156 | $previous, |
| 156 | 157 | $built_version( 'assets/css/windows.css' ) |
| 157 | 158 | ); |
| 158 | - // These two load DEFERRED (see `openstation_defer_non_critical_styles()`): | |
| 159 | - // the UI they style — the OS Settings panel and the window | |
| 160 | - // overview — is lazy-loaded JS that can never be on screen at | |
| 161 | - // first paint, so ~47 KB of CSS has no business blocking render. | |
| 162 | - // They depend on `os-windows` so they print after it, | |
| 163 | - // preserving the cascade position they had as `@import`s. | |
| 159 | + // Loads DEFERRED (see `openstation_defer_non_critical_styles()`): | |
| 160 | + // the UI it styles — the window overview — is lazy-loaded JS that | |
| 161 | + // can never be on screen at first paint, so its CSS has no | |
| 162 | + // business blocking render. It depends on `os-windows` so it | |
| 163 | + // prints after it, preserving the cascade position it had as an | |
| 164 | + // `@import`. | |
| 164 | 165 | wp_register_style( |
| 165 | 166 | 'os-window-overview', |
| 166 | 167 | OPENSTATION_URL . 'assets/css/window-overview.css', |
| 167 | 168 | array( 'os-windows' ), |
| @@ -166,13 +167,16 @@ | ||
| 166 | 167 | OPENSTATION_URL . 'assets/css/window-overview.css', |
| 167 | 168 | array( 'os-windows' ), |
| 168 | 169 | $built_version( 'assets/css/window-overview.css' ) |
| 169 | 170 | ); |
| 171 | + // Solo mode — one window, no desk around it. Loads last so it can | |
| 172 | + // hide surfaces the sheets above declared, and only enqueues on a | |
| 173 | + // solo request, so a normal shell never pays for it. | |
| 170 | 174 | wp_register_style( |
| 171 | - 'os-settings', | |
| 172 | - OPENSTATION_URL . 'assets/css/os-settings.css', | |
| 175 | + 'os-solo', | |
| 176 | + OPENSTATION_URL . 'assets/css/solo.css', | |
| 173 | 177 | array( 'os-windows' ), |
| 174 | - $built_version( 'assets/css/os-settings.css' ) | |
| 178 | + $built_version( 'assets/css/solo.css' ) | |
| 175 | 179 | ); |
| 176 | 180 | wp_register_style( |
| 177 | 181 | 'os-dock', |
| 178 | 182 | OPENSTATION_URL . 'assets/css/dock.css', |
| @@ -184,8 +188,60 @@ | ||
| 184 | 188 | OPENSTATION_URL . 'assets/css/dock-peek.css', |
| 185 | 189 | array( 'os-dock' ), |
| 186 | 190 | $built_version( 'assets/css/dock-peek.css' ) |
| 187 | 191 | ); |
| 192 | + // The phone layer. Every rule is scoped to | |
| 193 | + // `html[data-os-mode="mobile"]`, so the sheet is inert on a | |
| 194 | + // desktop and the first paint on a phone is already right (the | |
| 195 | + // head stamp writes the attribute before any stylesheet applies). | |
| 196 | + // Depends on the dock and window sheets because it overrides them. | |
| 197 | + wp_register_style( | |
| 198 | + 'os-mobile', | |
| 199 | + OPENSTATION_URL . 'assets/css/mobile.css', | |
| 200 | + array( 'os-variables', 'dashicons', 'os-dock', 'os-windows' ), | |
| 201 | + $built_version( 'assets/css/mobile.css' ) | |
| 202 | + ); | |
| 203 | + // The notch — the shell's top-centre voice and the site | |
| 204 | + // assistant's front door. Scoped to `.os-notch`. | |
| 205 | + wp_register_style( | |
| 206 | + 'os-notch', | |
| 207 | + OPENSTATION_URL . 'assets/css/notch.css', | |
| 208 | + array( 'os-variables' ), | |
| 209 | + $built_version( 'assets/css/notch.css' ) | |
| 210 | + ); | |
| 211 | + // The workspace wizard. Scoped to `.os-workspace-wizard`, so it is | |
| 212 | + // inert until the user opens it from the overview bar's `+` or a | |
| 213 | + // tile's Edit. Those controls are styled with the rest of the bar | |
| 214 | + // in `window-overview.css`. | |
| 215 | + wp_register_style( | |
| 216 | + 'os-workspaces', | |
| 217 | + OPENSTATION_URL . 'assets/css/workspaces.css', | |
| 218 | + array( 'os-variables', 'dashicons' ), | |
| 219 | + $built_version( 'assets/css/workspaces.css' ) | |
| 220 | + ); | |
| 221 | + // Keyboard-shortcuts window. Scoped to `.os-shortcuts`, so it is | |
| 222 | + // inert until the System menu opens the window, and unconditional | |
| 223 | + // for the same reason the layout sheet is: the window can be | |
| 224 | + // opened at any moment and a deferred sheet would paint it raw. | |
| 225 | + wp_register_style( | |
| 226 | + 'os-shortcuts', | |
| 227 | + OPENSTATION_URL . 'assets/css/shortcuts.css', | |
| 228 | + array( 'os-variables' ), | |
| 229 | + $built_version( 'assets/css/shortcuts.css' ) | |
| 230 | + ); | |
| 231 | + // The OpenStation desktop layout — the core/plugin seam on the rail | |
| 232 | + // plus the constellation hover-submenu flyout. Both surfaces are | |
| 233 | + // scoped (`[data-os-layout="openstation"]` / `.os-constellation`), | |
| 234 | + // so the sheet is inert in every other layout and is loaded | |
| 235 | + // unconditionally rather than gated on the user's current pick: | |
| 236 | + // the layout is switchable live from OpenStation Preferences, and a | |
| 237 | + // conditional enqueue would leave the first switch unstyled. | |
| 238 | + wp_register_style( | |
| 239 | + 'os-openstation-layout', | |
| 240 | + OPENSTATION_URL . 'assets/css/openstation-layout.css', | |
| 241 | + array( 'os-dock' ), | |
| 242 | + $built_version( 'assets/css/openstation-layout.css' ) | |
| 243 | + ); | |
| 188 | 244 | // `filemtime`-stamped — the chromeless overrides iterate faster |
| 189 | 245 | // than the plugin-wide version bumps (per-page compat shims and |
| 190 | 246 | // page-title-action exceptions land in patches), and a stale |
| 191 | 247 | // cached copy means the user sees yesterday's rules. Without the |
| @@ -227,40 +283,10 @@ | ||
| 227 | 283 | array( 'os-variables', 'dashicons' ), |
| 228 | 284 | file_exists( $recycle_bin_css ) ? (string) filemtime( $recycle_bin_css ) : $version |
| 229 | 285 | ); |
| 230 | 286 | |
| 231 | - // `filemtime` for the native Posts window CSS — same rationale as | |
| 232 | - // the recycle-bin CSS: bundle iterates faster than the plugin | |
| 233 | - // version and stale caches are worse than the cost of a 304. | |
| 234 | - $posts_window_css = OPENSTATION_DIR . 'assets/css/posts-window.css'; | |
| 235 | - wp_register_style( | |
| 236 | - 'os-posts-window', | |
| 237 | - OPENSTATION_URL . 'assets/css/posts-window.css', | |
| 238 | - array( 'os-variables', 'dashicons' ), | |
| 239 | - file_exists( $posts_window_css ) ? (string) filemtime( $posts_window_css ) : $version | |
| 240 | - ); | |
| 241 | - | |
| 242 | - // Native Plugins window CSS — same `filemtime`-cache-bust posture | |
| 243 | - // as the Posts/Recycle Bin styles. | |
| 244 | - $plugins_window_css = OPENSTATION_DIR . 'assets/css/plugins-window.css'; | |
| 245 | - wp_register_style( | |
| 246 | - 'os-plugins-window', | |
| 247 | - OPENSTATION_URL . 'assets/css/plugins-window.css', | |
| 248 | - array( 'os-variables', 'dashicons' ), | |
| 249 | - file_exists( $plugins_window_css ) ? (string) filemtime( $plugins_window_css ) : $version | |
| 250 | - ); | |
| 251 | - | |
| 252 | - // Native Comments window CSS — same `filemtime` posture. | |
| 253 | - $comments_window_css = OPENSTATION_DIR . 'assets/css/comments-window.css'; | |
| 254 | - wp_register_style( | |
| 255 | - 'os-comments-window', | |
| 256 | - OPENSTATION_URL . 'assets/css/comments-window.css', | |
| 257 | - array( 'os-variables', 'dashicons' ), | |
| 258 | - file_exists( $comments_window_css ) ? (string) filemtime( $comments_window_css ) : $version | |
| 259 | - ); | |
| 260 | - | |
| 261 | 287 | // Files-on-the-Desktop tile + layer styles. `filemtime` for the |
| 262 | - // same reason as the recycle-bin / posts-window CSS: this file | |
| 288 | + // same reason as the recycle-bin CSS: this file | |
| 263 | 289 | // iterates faster than the plugin version, and a stale cache |
| 264 | 290 | // would mask a real fix. |
| 265 | 291 | $desktop_files_css = OPENSTATION_DIR . 'assets/css/desktop-files.css'; |
| 266 | 292 | wp_register_style( |
| @@ -296,14 +322,17 @@ | ||
| 296 | 322 | ); |
| 297 | 323 | |
| 298 | 324 | // Pinned-notes layer styles (paper, pushpin, pastel tokens, pin |
| 299 | 325 | // animations). Same `filemtime` cache-bust posture as the other |
| 300 | - // fast-iterating feature stylesheets above. | |
| 326 | + // fast-iterating feature stylesheets above. Depends on `os-files` | |
| 327 | + // because a pinned note dresses the canonical `.os-file-tile` | |
| 328 | + // chrome — anything that restyles a tile has to print after the | |
| 329 | + // file that declares one. | |
| 301 | 330 | $notes_css = OPENSTATION_DIR . 'assets/css/notes.css'; |
| 302 | 331 | wp_register_style( |
| 303 | 332 | 'os-notes', |
| 304 | 333 | OPENSTATION_URL . 'assets/css/notes.css', |
| 305 | - array( 'os-variables', 'dashicons' ), | |
| 334 | + array( 'os-variables', 'dashicons', 'os-files' ), | |
| 306 | 335 | file_exists( $notes_css ) ? (string) filemtime( $notes_css ) : $version |
| 307 | 336 | ); |
| 308 | 337 | |
| 309 | 338 | // Announcement-dialog styles (scrim, hero card, buttons). Registered |
| @@ -367,8 +396,49 @@ | ||
| 367 | 396 | $built_version( 'assets/js/iframe-bridge' . $suffix . '.js' ), |
| 368 | 397 | true |
| 369 | 398 | ); |
| 370 | 399 | |
| 400 | + // `os-deactivation-feedback` — the dialog that asks one optional | |
| 401 | + // question when an admin deactivates OpenStation. Enqueued on | |
| 402 | + // `plugins.php` (classic, chromeless and network admin) by | |
| 403 | + // `includes/feedback/deactivation.php`, and lazy-loaded by the | |
| 404 | + // native Plugins app from its config block. Plain DOM on purpose: | |
| 405 | + // the classic screen has no `<os-*>` kit. | |
| 406 | + wp_register_script( | |
| 407 | + 'os-deactivation-feedback', | |
| 408 | + OPENSTATION_URL . 'assets/js/deactivation-feedback' . $suffix . '.js', | |
| 409 | + array( 'wp-i18n' ), | |
| 410 | + $built_version( 'assets/js/deactivation-feedback' . $suffix . '.js' ), | |
| 411 | + true | |
| 412 | + ); | |
| 413 | + wp_set_script_translations( | |
| 414 | + 'os-deactivation-feedback', | |
| 415 | + 'desktop-mode', | |
| 416 | + OPENSTATION_DIR . 'languages' | |
| 417 | + ); | |
| 418 | + $feedback_css = OPENSTATION_DIR . 'assets/css/deactivation-feedback.css'; | |
| 419 | + wp_register_style( | |
| 420 | + 'os-deactivation-feedback', | |
| 421 | + OPENSTATION_URL . 'assets/css/deactivation-feedback.css', | |
| 422 | + array(), | |
| 423 | + file_exists( $feedback_css ) ? (string) filemtime( $feedback_css ) : $version | |
| 424 | + ); | |
| 425 | + | |
| 426 | + // `os-chromeless-bridge` — the iframe side of every window, | |
| 427 | + // enqueued on `admin_footer` by | |
| 428 | + // `openstation_chromeless_bridge_script()` with its per-request | |
| 429 | + // data attached as a `before` inline block. Registered here (not | |
| 430 | + // there) so the handle exists before the enqueue and so the asset | |
| 431 | + // guard's OPENSTATION_URL snapshot protects it like every other | |
| 432 | + // bundle of ours. | |
| 433 | + wp_register_script( | |
| 434 | + 'os-chromeless-bridge', | |
| 435 | + OPENSTATION_URL . 'assets/js/chromeless-bridge' . $suffix . '.js', | |
| 436 | + array(), | |
| 437 | + $built_version( 'assets/js/chromeless-bridge' . $suffix . '.js' ), | |
| 438 | + true | |
| 439 | + ); | |
| 440 | + | |
| 371 | 441 | // `os-gutenberg-drop-receiver` — iframe-side bundle |
| 372 | 442 | // enqueued only on the Block Editor screens (`post.php` / |
| 373 | 443 | // `post-new.php`) for openstation users. Listens for |
| 374 | 444 | // `os-drop` postMessages from the parent shell (see |
| @@ -384,30 +454,13 @@ | ||
| 384 | 454 | $built_version( 'assets/js/gutenberg-drop-receiver' . $suffix . '.js' ), |
| 385 | 455 | true |
| 386 | 456 | ); |
| 387 | 457 | |
| 388 | - // `desktop-mode-recycle-bin` — small bundle for the Recycle Bin | |
| 389 | - // native window. Lazy-loaded by the native-window sync the first | |
| 390 | - // time the bin opens; registers a render callback on | |
| 391 | - // `window.openStationNativeWindows['desktop-mode-recycle-bin']`. | |
| 392 | - $recycle_bin_js = OPENSTATION_DIR . 'assets/js/recycle-bin' . $suffix . '.js'; | |
| 393 | - wp_register_script( | |
| 394 | - 'desktop-mode-recycle-bin', | |
| 395 | - OPENSTATION_URL . 'assets/js/recycle-bin' . $suffix . '.js', | |
| 396 | - // `heartbeat` + `jquery` — the bin opts in to the WordPress | |
| 397 | - // Heartbeat API while its window is open as the catch-all | |
| 398 | - // real-time channel for deletes that don't render an admin | |
| 399 | - // footer (REST/AJAX/other tabs/WP-CLI). See | |
| 400 | - // `src/recycle-bin/realtime.ts` for the subscriber. | |
| 401 | - array( 'wp-i18n', 'heartbeat', 'jquery' ), | |
| 402 | - file_exists( $recycle_bin_js ) ? (string) filemtime( $recycle_bin_js ) : $version, | |
| 403 | - true | |
| 404 | - ); | |
| 405 | - wp_set_script_translations( | |
| 406 | - 'desktop-mode-recycle-bin', | |
| 407 | - 'desktop-mode', | |
| 408 | - OPENSTATION_DIR . 'languages' | |
| 409 | - ); | |
| 458 | + // The Recycle Bin window is an App Framework app (`apps/trash/`); | |
| 459 | + // its client view rides the app-bundle pipeline, so no dedicated | |
| 460 | + // script handle. The `desktop-mode-recycle-bin` STYLE handle above | |
| 461 | + // stays — the drag-to-trash drop-target highlight must be present | |
| 462 | + // at boot (dropping on the closed bin's dock tile), not window-open. | |
| 410 | 463 | |
| 411 | 464 | // `desktop-mode-games` — bundle for the Games hub native window |
| 412 | 465 | // (launcher grid, scoreboard, challenges client). Lazy-loaded by |
| 413 | 466 | // the native-window sync the first time the hub opens; registers a |
| @@ -459,65 +512,8 @@ | ||
| 459 | 512 | true |
| 460 | 513 | ); |
| 461 | 514 | wp_set_script_translations( |
| 462 | 515 | 'os-game-alphabet-soup', |
| 463 | - 'desktop-mode', | |
| 464 | - OPENSTATION_DIR . 'languages' | |
| 465 | - ); | |
| 466 | - | |
| 467 | - // `os-posts-window` — small bundle for the native Posts | |
| 468 | - // window. Lazy-loaded by the native-window sync the first time the | |
| 469 | - // window opens (via the dock-click swap when the user opts in); | |
| 470 | - // registers a render callback on | |
| 471 | - // `window.openStationNativeWindows['desktop-mode-posts']`. | |
| 472 | - $posts_window_js = OPENSTATION_DIR . 'assets/js/posts-window' . $suffix . '.js'; | |
| 473 | - wp_register_script( | |
| 474 | - 'os-posts-window', | |
| 475 | - OPENSTATION_URL . 'assets/js/posts-window' . $suffix . '.js', | |
| 476 | - array( 'wp-i18n' ), | |
| 477 | - file_exists( $posts_window_js ) ? (string) filemtime( $posts_window_js ) : $version, | |
| 478 | - true | |
| 479 | - ); | |
| 480 | - wp_set_script_translations( | |
| 481 | - 'os-posts-window', | |
| 482 | - 'desktop-mode', | |
| 483 | - OPENSTATION_DIR . 'languages' | |
| 484 | - ); | |
| 485 | - | |
| 486 | - // `os-plugins-window` — small bundle for the native | |
| 487 | - // Plugins window. Lazy-loaded by the native-window sync the first | |
| 488 | - // time the window opens (via the dock-click swap when the user | |
| 489 | - // opts in); registers a render callback on | |
| 490 | - // `window.openStationNativeWindows['desktop-mode-plugins']`. | |
| 491 | - $plugins_window_js = OPENSTATION_DIR . 'assets/js/plugins-window' . $suffix . '.js'; | |
| 492 | - wp_register_script( | |
| 493 | - 'os-plugins-window', | |
| 494 | - OPENSTATION_URL . 'assets/js/plugins-window' . $suffix . '.js', | |
| 495 | - array( 'wp-i18n' ), | |
| 496 | - file_exists( $plugins_window_js ) ? (string) filemtime( $plugins_window_js ) : $version, | |
| 497 | - true | |
| 498 | - ); | |
| 499 | - wp_set_script_translations( | |
| 500 | - 'os-plugins-window', | |
| 501 | - 'desktop-mode', | |
| 502 | - OPENSTATION_DIR . 'languages' | |
| 503 | - ); | |
| 504 | - | |
| 505 | - // `os-comments-window` — small bundle for the native | |
| 506 | - // Comments window. Lazy-loaded by the native-window sync the first | |
| 507 | - // time the window opens (via the dock-click swap when the user | |
| 508 | - // opts in); registers a render callback on | |
| 509 | - // `window.openStationNativeWindows['desktop-mode-comments']`. | |
| 510 | - $comments_window_js = OPENSTATION_DIR . 'assets/js/comments-window' . $suffix . '.js'; | |
| 511 | - wp_register_script( | |
| 512 | - 'os-comments-window', | |
| 513 | - OPENSTATION_URL . 'assets/js/comments-window' . $suffix . '.js', | |
| 514 | - array( 'wp-i18n' ), | |
| 515 | - file_exists( $comments_window_js ) ? (string) filemtime( $comments_window_js ) : $version, | |
| 516 | - true | |
| 517 | - ); | |
| 518 | - wp_set_script_translations( | |
| 519 | - 'os-comments-window', | |
| 520 | 516 | 'desktop-mode', |
| 521 | 517 | OPENSTATION_DIR . 'languages' |
| 522 | 518 | ); |
| 523 | 519 | |