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/assets.php +85 -129 1.1.01.1.10 View file →
@@ -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,14 +167,8 @@
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 );
170 - wp_register_style(
171 - 'os-settings',
172 - OPENSTATION_URL . 'assets/css/os-settings.css',
173 - array( 'os-windows' ),
174 - $built_version( 'assets/css/os-settings.css' )
175 - );
176 171 // Solo mode — one window, no desk around it. Loads last so it can
177 172 // hide surfaces the sheets above declared, and only enqueues on a
178 173 // solo request, so a normal shell never pays for it.
179 174 wp_register_style(
@@ -193,8 +188,19 @@
193 188 OPENSTATION_URL . 'assets/css/dock-peek.css',
194 189 array( 'os-dock' ),
195 190 $built_version( 'assets/css/dock-peek.css' )
196 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 + );
197 203 // The notch — the shell's top-centre voice and the site
198 204 // assistant's front door. Scoped to `.os-notch`.
199 205 wp_register_style(
200 206 'os-notch',
@@ -201,8 +207,18 @@
201 207 OPENSTATION_URL . 'assets/css/notch.css',
202 208 array( 'os-variables' ),
203 209 $built_version( 'assets/css/notch.css' )
204 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 + );
205 221 // Keyboard-shortcuts window. Scoped to `.os-shortcuts`, so it is
206 222 // inert until the System menu opens the window, and unconditional
207 223 // for the same reason the layout sheet is: the window can be
208 224 // opened at any moment and a deferred sheet would paint it raw.
@@ -267,40 +283,10 @@
267 283 array( 'os-variables', 'dashicons' ),
268 284 file_exists( $recycle_bin_css ) ? (string) filemtime( $recycle_bin_css ) : $version
269 285 );
270 286
271 - // `filemtime` for the native Posts window CSS — same rationale as
272 - // the recycle-bin CSS: bundle iterates faster than the plugin
273 - // version and stale caches are worse than the cost of a 304.
274 - $posts_window_css = OPENSTATION_DIR . 'assets/css/posts-window.css';
275 - wp_register_style(
276 - 'os-posts-window',
277 - OPENSTATION_URL . 'assets/css/posts-window.css',
278 - array( 'os-variables', 'dashicons' ),
279 - file_exists( $posts_window_css ) ? (string) filemtime( $posts_window_css ) : $version
280 - );
281 -
282 - // Native Plugins window CSS — same `filemtime`-cache-bust posture
283 - // as the Posts/Recycle Bin styles.
284 - $plugins_window_css = OPENSTATION_DIR . 'assets/css/plugins-window.css';
285 - wp_register_style(
286 - 'os-plugins-window',
287 - OPENSTATION_URL . 'assets/css/plugins-window.css',
288 - array( 'os-variables', 'dashicons' ),
289 - file_exists( $plugins_window_css ) ? (string) filemtime( $plugins_window_css ) : $version
290 - );
291 -
292 - // Native Comments window CSS — same `filemtime` posture.
293 - $comments_window_css = OPENSTATION_DIR . 'assets/css/comments-window.css';
294 - wp_register_style(
295 - 'os-comments-window',
296 - OPENSTATION_URL . 'assets/css/comments-window.css',
297 - array( 'os-variables', 'dashicons' ),
298 - file_exists( $comments_window_css ) ? (string) filemtime( $comments_window_css ) : $version
299 - );
300 -
301 287 // Files-on-the-Desktop tile + layer styles. `filemtime` for the
302 - // same reason as the recycle-bin / posts-window CSS: this file
288 + // same reason as the recycle-bin CSS: this file
303 289 // iterates faster than the plugin version, and a stale cache
304 290 // would mask a real fix.
305 291 $desktop_files_css = OPENSTATION_DIR . 'assets/css/desktop-files.css';
306 292 wp_register_style(
@@ -336,14 +322,17 @@
336 322 );
337 323
338 324 // Pinned-notes layer styles (paper, pushpin, pastel tokens, pin
339 325 // animations). Same `filemtime` cache-bust posture as the other
340 - // 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.
341 330 $notes_css = OPENSTATION_DIR . 'assets/css/notes.css';
342 331 wp_register_style(
343 332 'os-notes',
344 333 OPENSTATION_URL . 'assets/css/notes.css',
345 - array( 'os-variables', 'dashicons' ),
334 + array( 'os-variables', 'dashicons', 'os-files' ),
346 335 file_exists( $notes_css ) ? (string) filemtime( $notes_css ) : $version
347 336 );
348 337
349 338 // Announcement-dialog styles (scrim, hero card, buttons). Registered
@@ -407,8 +396,49 @@
407 396 $built_version( 'assets/js/iframe-bridge' . $suffix . '.js' ),
408 397 true
409 398 );
410 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 +
411 441 // `os-gutenberg-drop-receiver` — iframe-side bundle
412 442 // enqueued only on the Block Editor screens (`post.php` /
413 443 // `post-new.php`) for openstation users. Listens for
414 444 // `os-drop` postMessages from the parent shell (see
@@ -424,30 +454,13 @@
424 454 $built_version( 'assets/js/gutenberg-drop-receiver' . $suffix . '.js' ),
425 455 true
426 456 );
427 457
428 - // `desktop-mode-recycle-bin` — small bundle for the Recycle Bin
429 - // native window. Lazy-loaded by the native-window sync the first
430 - // time the bin opens; registers a render callback on
431 - // `window.openStationNativeWindows['desktop-mode-recycle-bin']`.
432 - $recycle_bin_js = OPENSTATION_DIR . 'assets/js/recycle-bin' . $suffix . '.js';
433 - wp_register_script(
434 - 'desktop-mode-recycle-bin',
435 - OPENSTATION_URL . 'assets/js/recycle-bin' . $suffix . '.js',
436 - // `heartbeat` + `jquery` — the bin opts in to the WordPress
437 - // Heartbeat API while its window is open as the catch-all
438 - // real-time channel for deletes that don't render an admin
439 - // footer (REST/AJAX/other tabs/WP-CLI). See
440 - // `src/recycle-bin/realtime.ts` for the subscriber.
441 - array( 'wp-i18n', 'heartbeat', 'jquery' ),
442 - file_exists( $recycle_bin_js ) ? (string) filemtime( $recycle_bin_js ) : $version,
443 - true
444 - );
445 - wp_set_script_translations(
446 - 'desktop-mode-recycle-bin',
447 - 'desktop-mode',
448 - OPENSTATION_DIR . 'languages'
449 - );
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.
450 463
451 464 // `desktop-mode-games` — bundle for the Games hub native window
452 465 // (launcher grid, scoreboard, challenges client). Lazy-loaded by
453 466 // the native-window sync the first time the hub opens; registers a
@@ -499,65 +512,8 @@
499 512 true
500 513 );
501 514 wp_set_script_translations(
502 515 'os-game-alphabet-soup',
503 - 'desktop-mode',
504 - OPENSTATION_DIR . 'languages'
505 - );
506 -
507 - // `os-posts-window` — small bundle for the native Posts
508 - // window. Lazy-loaded by the native-window sync the first time the
509 - // window opens (via the dock-click swap when the user opts in);
510 - // registers a render callback on
511 - // `window.openStationNativeWindows['desktop-mode-posts']`.
512 - $posts_window_js = OPENSTATION_DIR . 'assets/js/posts-window' . $suffix . '.js';
513 - wp_register_script(
514 - 'os-posts-window',
515 - OPENSTATION_URL . 'assets/js/posts-window' . $suffix . '.js',
516 - array( 'wp-i18n' ),
517 - file_exists( $posts_window_js ) ? (string) filemtime( $posts_window_js ) : $version,
518 - true
519 - );
520 - wp_set_script_translations(
521 - 'os-posts-window',
522 - 'desktop-mode',
523 - OPENSTATION_DIR . 'languages'
524 - );
525 -
526 - // `os-plugins-window` — small bundle for the native
527 - // Plugins window. Lazy-loaded by the native-window sync the first
528 - // time the window opens (via the dock-click swap when the user
529 - // opts in); registers a render callback on
530 - // `window.openStationNativeWindows['desktop-mode-plugins']`.
531 - $plugins_window_js = OPENSTATION_DIR . 'assets/js/plugins-window' . $suffix . '.js';
532 - wp_register_script(
533 - 'os-plugins-window',
534 - OPENSTATION_URL . 'assets/js/plugins-window' . $suffix . '.js',
535 - array( 'wp-i18n' ),
536 - file_exists( $plugins_window_js ) ? (string) filemtime( $plugins_window_js ) : $version,
537 - true
538 - );
539 - wp_set_script_translations(
540 - 'os-plugins-window',
541 - 'desktop-mode',
542 - OPENSTATION_DIR . 'languages'
543 - );
544 -
545 - // `os-comments-window` — small bundle for the native
546 - // Comments window. Lazy-loaded by the native-window sync the first
547 - // time the window opens (via the dock-click swap when the user
548 - // opts in); registers a render callback on
549 - // `window.openStationNativeWindows['desktop-mode-comments']`.
550 - $comments_window_js = OPENSTATION_DIR . 'assets/js/comments-window' . $suffix . '.js';
551 - wp_register_script(
552 - 'os-comments-window',
553 - OPENSTATION_URL . 'assets/js/comments-window' . $suffix . '.js',
554 - array( 'wp-i18n' ),
555 - file_exists( $comments_window_js ) ? (string) filemtime( $comments_window_js ) : $version,
556 - true
557 - );
558 - wp_set_script_translations(
559 - 'os-comments-window',
560 516 'desktop-mode',
561 517 OPENSTATION_DIR . 'languages'
562 518 );
563 519