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/welcome-dialog.php +544 -434 0.8.71.1.10 View file →
@@ -1,35 +1,35 @@
1 1 <?php
2 2 /**
3 - * Desktop Mode — First-run welcome dialog.
3 + * OpenStation — First-run welcome dialog.
4 4 *
5 - * Renders a one-time, self-contained modal inside the *classic* WordPress
6 - * admin (never inside the desktop shell or a chromeless iframe) telling
7 - * the user where the "Switch to Desktop Mode" button lives in the admin
8 - * bar. Dismissal is persisted via the existing seen-intros registry
5 + * Renders a one-time, self-contained modal inside the *classic*
6 + * WordPress admin (never inside the desktop shell or a chromeless
7 + * iframe) that introduces OpenStation and offers to switch it on.
8 + * Dismissal is persisted via the existing seen-intros registry
9 9 * (`desktop_mode_seen_intros` user meta, slug `activation-welcome`),
10 - * which means the "Reset what's-new dialogs" button in OS Settings →
11 - * Features brings it back exactly like every other intro dialog.
10 + * which means the "Reset what's-new dialogs" button in OpenStation
11 + * Preferences → Features brings it back exactly like every other intro
12 + * dialog.
12 13 *
13 14 * The dialog is intentionally self-contained — all HTML, CSS and JS are
14 15 * inlined into `admin_footer`. We deliberately do NOT use any of the
15 - * `<wpd-*>` shell components here because they only ship inside the
16 + * `<os-*>` shell components here because they only ship inside the
16 17 * desktop bundle, which is precisely *not* loaded on the classic admin
17 18 * screens where this dialog is allowed to appear.
18 19 *
19 - * @package Desktop_Mode
20 - * @since 0.18.5
20 + * @package OpenStation
21 21 */
22 22
23 23 defined( 'ABSPATH' ) || exit;
24 24
25 25 /** Slug stored in `desktop_mode_seen_intros` for this dialog. */
26 -const DESKTOP_MODE_WELCOME_INTRO_SLUG = 'activation-welcome';
26 +const OPENSTATION_WELCOME_INTRO_SLUG = 'activation-welcome';
27 27
28 28 /**
29 29 * Decides whether the welcome dialog should render on the current request.
30 30 *
31 - * Five gates:
31 + * Six gates:
32 32 *
33 33 * 1. We're inside `/wp-admin` (`is_admin()`).
34 34 * 2. The user is logged in and can `read` (sanity gate — the dialog has
35 35 * no destructive surface, but anonymous output makes no sense).
@@ -35,18 +35,24 @@
35 35 * no destructive surface, but anonymous output makes no sense).
36 36 * 3. The request is NOT chromeless — chromeless pages are iframes
37 37 * rendering inside the desktop shell; the parent shell already shows
38 38 * its own UX.
39 - * 4. The user has not already dismissed this intro.
40 - * 5. The `desktop_mode_show_welcome_dialog` filter returns truthy, so
39 + * 4. OpenStation is NOT already enabled for the user. This is a
40 + * "switch to OpenStation" promo, so it has nothing to say once the
41 + * user is in the shell. The desktop shell's *parent* page is admin
42 + * context and is not chromeless, so without this gate the dialog
43 + * re-renders there the moment the user clicks "Switch to
44 + * OpenStation", which reads as a duplicate dialog because the
45 + * fire-and-forget seen-intro POST races the redirect into the shell
46 + * and often loses.
47 + * 5. The user has not already dismissed this intro.
48 + * 6. The `openstation_show_welcome_dialog` filter returns truthy, so
41 49 * sites can suppress the dialog entirely (e.g. managed-host onboarding
42 50 * flows that ship their own).
43 51 *
44 - * @since 0.18.5
45 - *
46 52 * @return bool
47 53 */
48 -function desktop_mode_should_show_welcome_dialog() {
54 +function openstation_should_show_welcome_dialog() {
49 55 if ( ! is_admin() || ! is_user_logged_in() ) {
50 56 return false;
51 57 }
52 58 if ( ! current_user_can( 'read' ) ) {
@@ -51,13 +57,16 @@
51 57 }
52 58 if ( ! current_user_can( 'read' ) ) {
53 59 return false;
54 60 }
55 - if ( function_exists( 'desktop_mode_is_chromeless_request' ) && desktop_mode_is_chromeless_request() ) {
61 + if ( function_exists( 'openstation_is_chromeless_request' ) && openstation_is_chromeless_request() ) {
56 62 return false;
57 63 }
64 + if ( function_exists( 'openstation_is_enabled' ) && openstation_is_enabled() ) {
65 + return false;
66 + }
58 67 $user_id = get_current_user_id();
59 - if ( desktop_mode_has_seen_intro( $user_id, DESKTOP_MODE_WELCOME_INTRO_SLUG ) ) {
68 + if ( openstation_has_seen_intro( $user_id, OPENSTATION_WELCOME_INTRO_SLUG ) ) {
60 69 return false;
61 70 }
62 71
63 72 /**
@@ -65,535 +74,585 @@
65 74 * the current user on the current request. All earlier gates
66 75 * (admin context, capability, chromeless, seen-state) have
67 76 * already passed by the time this filter fires.
68 77 *
69 - * @since 0.18.5
70 - *
71 78 * @param bool $show Whether to render the dialog. Default true.
72 79 * @param int $user_id Current user ID.
73 80 */
74 - return (bool) apply_filters( 'desktop_mode_show_welcome_dialog', true, $user_id );
81 + return (bool) apply_filters( 'openstation_show_welcome_dialog', true, $user_id );
75 82 }
76 83
77 84 /**
85 + * Returns one of OpenStation's own icons as inline SVG markup.
86 + *
87 + * Reads the outlined copies in `assets/icons/` (the ones registered with
88 + * Core's icon registry), which paint with `currentColor`, so the dialog's
89 + * CSS decides their colour. Returns an empty string for a missing file,
90 + * which leaves an empty icon slot rather than breaking the dialog.
91 + *
92 + * @param string $slug Icon slug, e.g. `windows`.
93 + * @return string Sanitised SVG markup.
94 + */
95 +function openstation_welcome_dialog_icon( $slug ) {
96 + $path = OPENSTATION_DIR . 'assets/icons/' . sanitize_key( $slug ) . '.svg';
97 + if ( ! is_readable( $path ) ) {
98 + return '';
99 + }
100 + // phpcs:ignore WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents -- local plugin file, not a remote URL.
101 + $svg = (string) file_get_contents( $path );
102 +
103 + return wp_kses(
104 + $svg,
105 + array(
106 + 'svg' => array(
107 + 'xmlns' => true,
108 + 'viewbox' => true,
109 + 'width' => true,
110 + 'height' => true,
111 + 'aria-hidden' => true,
112 + 'focusable' => true,
113 + ),
114 + 'path' => array(
115 + 'd' => true,
116 + 'fill' => true,
117 + ),
118 + )
119 + );
120 +}
121 +
122 +/**
78 123 * Prints the welcome dialog markup, styles and dismiss script into
79 124 * `admin_footer`.
80 125 *
81 126 * Self-contained on purpose: everything is scoped under the
82 - * `.desktop-mode-welcome` namespace so it cannot collide with the host
127 + * `.os-welcome` namespace so it cannot collide with the host
83 128 * admin theme. The dismiss button POSTs to the seen-intros REST route,
84 129 * which is exactly the same endpoint the in-shell intros use.
85 130 *
86 - * @since 0.18.5
131 + * The look is deliberately quiet: a light card with a dark panel that
132 + * shows two OpenStation windows, the holo mark, and Pulse kept to the
133 + * feature icons. Every colour is a literal from the brand palette rather
134 + * than a `--os-*` token, because `variables.css` is not loaded in classic
135 + * admin. Spacing sits on an 8px grid.
87 136 */
88 -function desktop_mode_render_welcome_dialog() {
89 - if ( ! desktop_mode_should_show_welcome_dialog() ) {
137 +function openstation_render_welcome_dialog() {
138 + if ( ! openstation_should_show_welcome_dialog() ) {
90 139 return;
91 140 }
92 141
93 - $rest_url = esc_url_raw( rest_url( 'desktop-mode/v1/intros/seen' ) );
94 - $rest_nonce = wp_create_nonce( 'wp_rest' );
95 - $ajax_url = esc_url_raw( admin_url( 'admin-ajax.php' ) );
96 - $ajax_nonce = wp_create_nonce( 'save-desktop-mode' );
97 - $slug = DESKTOP_MODE_WELCOME_INTRO_SLUG;
142 + $rest_url = esc_url_raw( rest_url( 'desktop-mode/v1/intros/seen' ) );
143 + $rest_nonce = wp_create_nonce( 'wp_rest' );
144 + $ajax_url = esc_url_raw( admin_url( 'admin-ajax.php' ) );
145 + $ajax_nonce = wp_create_nonce( 'save-openstation' );
146 + $slug = OPENSTATION_WELCOME_INTRO_SLUG;
147 + $font_url = OPENSTATION_URL . 'assets/fonts/Geist-Variable.woff2';
148 + $mono_url = OPENSTATION_URL . 'assets/fonts/GeistMono-Variable.woff2';
149 + $mark_url = OPENSTATION_URL . 'assets/images/openstation-mark-holo.svg';
98 150
99 151 // All user-facing strings are passed through translation; the dialog
100 - // is keyboard-dismissible (Escape) and focus-trapped between the
101 - // close button and the "Got it" CTA.
102 - $title = __( 'Welcome to Desktop Mode', 'desktop-mode' );
103 - $subtitle = __( 'A floating, window-based workspace for the WordPress admin — more like a real OS, less like a webpage.', 'desktop-mode' );
104 - $body = __( 'Desktop Mode reimagines the WordPress admin as a true desktop environment. Open multiple admin screens side-by-side, drag and drop content between windows, and keep your work in view as you move between tasks.', 'desktop-mode' );
105 - $cta = __( 'Got it', 'desktop-mode' );
106 - $enable = __( 'Enable it now', 'desktop-mode' );
107 - $enabling = __( 'Enabling…', 'desktop-mode' );
108 - $close_a = __( 'Close', 'desktop-mode' );
152 + // is keyboard-dismissible (Escape) and moves initial focus to the
153 + // primary CTA.
154 + $title = __( 'Welcome to OpenStation', 'desktop-mode' );
155 + $body = __( 'Your admin, as a desktop. Keep several screens open at once and move between tasks without losing your place.', 'desktop-mode' );
156 + $later = __( 'Not now', 'desktop-mode' );
157 + $enable = __( 'Switch to OpenStation', 'desktop-mode' );
158 + $enabling = __( 'Switching…', 'desktop-mode' );
109 159
110 160 $features = array(
111 161 array(
112 - 'icon' => '🪟',
113 - 'title' => __( 'Multi-window workspace', 'desktop-mode' ),
114 - 'desc' => __( 'Open Posts, Media and Plugins in their own draggable, resizable windows. Tile, cascade or stack them however you work best.', 'desktop-mode' ),
162 + 'icon' => 'windows',
163 + 'title' => __( 'Work in windows', 'desktop-mode' ),
164 + 'desc' => __( 'Posts, media and settings side by side.', 'desktop-mode' ),
115 165 ),
116 166 array(
117 - 'icon' => '⚡',
118 - 'title' => __( 'Native, table-driven apps', 'desktop-mode' ),
119 - 'desc' => __( 'Posts, Pages, Users and Plugins are reimplemented as fast native windows with sticky headers, bulk actions, multi-select and inline previews.', 'desktop-mode' ),
167 + 'icon' => 'apps',
168 + 'title' => __( 'Apps for everyday tasks', 'desktop-mode' ),
169 + 'desc' => __( 'Fast lists with bulk actions and previews.', 'desktop-mode' ),
120 170 ),
121 171 array(
122 - 'icon' => '🎨',
123 - 'title' => __( 'Wallpapers, dock & themes', 'desktop-mode' ),
124 - 'desc' => __( 'Make it yours. Choose a wallpaper, pin your favorite screens to the dock, and switch accent colors — all from OS Settings.', 'desktop-mode' ),
172 + 'icon' => 'dock',
173 + 'title' => __( 'A dock for your screens', 'desktop-mode' ),
174 + 'desc' => __( 'Pin what you use most, one click away.', 'desktop-mode' ),
125 175 ),
126 176 array(
127 - 'icon' => '🤖',
128 - 'title' => __( 'AI Copilot, built in', 'desktop-mode' ),
129 - 'desc' => __( 'Press ⌘K anywhere to ask the AI Assistant — it can run commands, navigate windows and answer questions about your site.', 'desktop-mode' ),
177 + 'icon' => 'command',
178 + /* translators: %s: the keyboard shortcut that opens search, e.g. ⌘K. */
179 + 'title' => __( 'Search with %s', 'desktop-mode' ),
180 + 'desc' => __( 'Jump to any screen or run a command.', 'desktop-mode' ),
181 + 'kbd' => true,
130 182 ),
131 183 );
132 184 ?>
133 -<style id="desktop-mode-welcome-style">
134 - .desktop-mode-welcome,
135 - .desktop-mode-welcome * {
185 +<style id="os-welcome-style">
186 + @font-face {
187 + font-family: "OpenStation Geist";
188 + src: url( "<?php echo esc_url( $font_url ); ?>" ) format( "woff2" );
189 + font-weight: 100 900;
190 + font-style: normal;
191 + font-display: swap;
192 + }
193 + @font-face {
194 + font-family: "OpenStation Geist Mono";
195 + src: url( "<?php echo esc_url( $mono_url ); ?>" ) format( "woff2" );
196 + font-weight: 100 900;
197 + font-style: normal;
198 + font-display: swap;
199 + }
200 + .os-welcome,
201 + .os-welcome * {
136 202 box-sizing: border-box;
137 203 }
138 - .desktop-mode-welcome {
204 + .os-welcome {
205 + /* Brand palette, as literals: see the render function's docblock. */
206 + --_void: #0c0b0f;
207 + --_obsidian: #1a1721;
208 + --_astro: #33303a;
209 + --_silver: #4d4a52;
210 + --_pewter: #66636b;
211 + --_osmium: #99969c;
212 + --_ash: #b3afb5;
213 + --_cloud: #ccc8ce;
214 + --_mist: #e6e2e6;
215 + --_haze: #f4f1f4;
216 + --_starlight: #fffbff;
217 + --_pulse: #f252fc;
218 +
139 219 position: fixed;
140 220 inset: 0;
141 221 z-index: 100000;
142 222 display: flex;
143 - align-items: center;
144 - justify-content: center;
145 223 padding: 24px;
146 - background: radial-gradient(
147 - ellipse at 30% 20%,
148 - rgba( 56, 189, 248, 0.32 ),
149 - transparent 60%
150 - ),
151 - radial-gradient(
152 - ellipse at 70% 80%,
153 - rgba( 16, 185, 129, 0.26 ),
154 - transparent 55%
155 - ),
156 - rgba( 8, 14, 26, 0.62 );
157 - backdrop-filter: blur( 14px ) saturate( 140% );
158 - -webkit-backdrop-filter: blur( 14px ) saturate( 140% );
159 - animation: desktop-mode-welcome-fade 360ms cubic-bezier( 0.22, 1, 0.36, 1 );
160 - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
161 - "Helvetica Neue", Arial, sans-serif;
224 + overflow-y: auto;
225 + background: rgba( 12, 11, 15, 0.72 );
226 + backdrop-filter: blur( 16px );
227 + -webkit-backdrop-filter: blur( 16px );
228 + animation: os-welcome-fade 240ms ease-out;
229 + font-family: "OpenStation Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
230 + font-size: 16px;
231 + line-height: 1.5;
232 + color: var( --_obsidian );
162 233 -webkit-font-smoothing: antialiased;
163 234 -moz-osx-font-smoothing: grayscale;
164 235 }
165 - @keyframes desktop-mode-welcome-fade {
236 + @keyframes os-welcome-fade {
166 237 from { opacity: 0; }
167 238 to { opacity: 1; }
168 239 }
169 - @keyframes desktop-mode-welcome-pop {
170 - 0% { opacity: 0; transform: translateY( 14px ) scale( 0.96 ); }
171 - 100% { opacity: 1; transform: translateY( 0 ) scale( 1 ); }
240 + @keyframes os-welcome-pop {
241 + from { opacity: 0; transform: translateY( 8px ); }
242 + to { opacity: 1; transform: translateY( 0 ); }
172 243 }
173 - @keyframes desktop-mode-welcome-arrow {
174 - 0%, 100% { transform: translateX( 0 ); opacity: 0.85; }
175 - 50% { transform: translateX( 6px ); opacity: 1; }
176 - }
177 - @keyframes desktop-mode-welcome-shimmer {
178 - 0% { background-position: 0% 50%; }
179 - 100% { background-position: 200% 50%; }
180 - }
181 - .desktop-mode-welcome__card {
182 - position: relative;
244 + .os-welcome__card {
245 + /* margin:auto centres the card and still lets a short viewport scroll to its top. */
246 + margin: auto;
183 247 width: 100%;
184 - max-width: 760px;
185 - border-radius: 22px;
248 + max-width: 820px;
249 + min-height: 544px;
250 + display: grid;
251 + grid-template-columns: 5fr 6fr;
186 252 overflow: hidden;
187 - background: linear-gradient(
188 - 145deg,
189 - rgba( 255, 255, 255, 0.98 ) 0%,
190 - rgba( 244, 250, 253, 0.98 ) 100%
191 - );
253 + background: var( --_starlight );
254 + border-radius: 13px;
192 255 box-shadow:
193 - 0 1px 0 rgba( 255, 255, 255, 0.85 ) inset,
194 - 0 30px 60px -20px rgba( 8, 47, 73, 0.55 ),
195 - 0 18px 36px -18px rgba( 14, 165, 233, 0.45 );
196 - animation: desktop-mode-welcome-pop 460ms cubic-bezier( 0.22, 1, 0.36, 1 ) both;
197 - animation-delay: 60ms;
256 + 0 0 0 1px rgba( 12, 11, 15, 0.08 ),
257 + 0 32px 64px -24px rgba( 12, 11, 15, 0.48 );
258 + animation: os-welcome-pop 320ms cubic-bezier( 0.22, 1, 0.36, 1 ) both;
198 259 }
199 - .desktop-mode-welcome__card::before {
200 - content: "";
201 - position: absolute;
202 - inset: -1px;
203 - border-radius: inherit;
204 - padding: 1px;
205 - background: linear-gradient(
206 - 135deg,
207 - rgba( 14, 165, 233, 0.65 ),
208 - rgba( 6, 182, 212, 0.55 ),
209 - rgba( 16, 185, 129, 0.55 )
210 - );
211 - -webkit-mask: linear-gradient( #000 0 0 ) content-box,
212 - linear-gradient( #000 0 0 );
213 - -webkit-mask-composite: xor;
214 - mask-composite: exclude;
215 - pointer-events: none;
216 - }
217 - .desktop-mode-welcome__hero {
260 +
261 + /* ---- Dark panel: two windows on the station ------------------- */
262 +
263 + .os-welcome__art {
218 264 position: relative;
219 - padding: 36px 36px 24px;
220 - background: linear-gradient(
221 - 135deg,
222 - #0f172a 0%,
223 - #0e7490 45%,
224 - #06b6d4 100%
225 - );
226 - background-size: 200% 200%;
227 - animation: desktop-mode-welcome-shimmer 14s ease infinite alternate;
228 - color: #fff;
229 265 overflow: hidden;
266 + isolation: isolate;
267 + background:
268 + radial-gradient( 1px 1px at 12% 18%, rgba( 255, 251, 255, 0.55 ) 50%, transparent 51% ),
269 + radial-gradient( 1px 1px at 78% 12%, rgba( 255, 251, 255, 0.4 ) 50%, transparent 51% ),
270 + radial-gradient( 1px 1px at 64% 44%, rgba( 255, 251, 255, 0.3 ) 50%, transparent 51% ),
271 + radial-gradient( 1.5px 1.5px at 88% 62%, rgba( 255, 251, 255, 0.45 ) 50%, transparent 51% ),
272 + radial-gradient( 1px 1px at 22% 72%, rgba( 255, 251, 255, 0.35 ) 50%, transparent 51% ),
273 + radial-gradient( 1px 1px at 46% 88%, rgba( 255, 251, 255, 0.3 ) 50%, transparent 51% ),
274 + radial-gradient( 1px 1px at 8% 48%, rgba( 255, 251, 255, 0.3 ) 50%, transparent 51% ),
275 + radial-gradient( 1px 1px at 94% 90%, rgba( 255, 251, 255, 0.35 ) 50%, transparent 51% ),
276 + radial-gradient( 1px 1px at 36% 8%, rgba( 255, 251, 255, 0.35 ) 50%, transparent 51% ),
277 + radial-gradient( 60% 45% at 85% 100%, rgba( 236, 155, 255, 0.1 ), transparent 70% ),
278 + radial-gradient( 50% 40% at 0% 30%, rgba( 159, 152, 255, 0.07 ), transparent 70% ),
279 + var( --_void );
230 280 }
231 - .desktop-mode-welcome__hero::after {
281 + .os-welcome__art::after {
232 282 content: "";
233 283 position: absolute;
234 284 inset: 0;
285 + pointer-events: none;
235 286 background:
236 - radial-gradient( circle at 85% 15%, rgba( 56, 189, 248, 0.35 ), transparent 45% ),
237 - radial-gradient( circle at 15% 90%, rgba( 16, 185, 129, 0.22 ), transparent 50% ),
238 - linear-gradient( rgba( 255, 255, 255, 0.05 ) 1px, transparent 1px ) 0 0 / 28px 28px,
239 - linear-gradient( 90deg, rgba( 255, 255, 255, 0.05 ) 1px, transparent 1px ) 0 0 / 28px 28px;
240 - pointer-events: none;
241 - mask-image: radial-gradient( ellipse at 50% 40%, #000 35%, transparent 80% );
242 - -webkit-mask-image: radial-gradient( ellipse at 50% 40%, #000 35%, transparent 80% );
287 + linear-gradient( 180deg, rgba( 12, 11, 15, 0.85 ) 0%, rgba( 12, 11, 15, 0 ) 22% ),
288 + linear-gradient( 0deg, rgba( 12, 11, 15, 0.6 ) 0%, rgba( 12, 11, 15, 0 ) 26% );
243 289 }
244 - .desktop-mode-welcome__eyebrow {
245 - display: inline-flex;
290 + .os-welcome .os-welcome__mark {
291 + position: absolute;
292 + top: 32px;
293 + inset-inline-start: 32px;
294 + z-index: 2;
295 + display: block;
296 + width: 40px;
297 + height: 40px;
298 + max-width: none;
299 + }
300 + .os-welcome__pair {
301 + position: absolute;
302 + left: 50%;
303 + top: 50%;
304 + width: 300px;
305 + height: 276px;
306 + transform: translate( -50%, -44% );
307 + direction: ltr;
308 + }
309 + .os-welcome__win {
310 + position: absolute;
311 + overflow: hidden;
312 + border-radius: 9px;
313 + /* The window greys sit a step above the palette's dark ramp so the art reads against Void. */
314 + background: #201d28;
315 + border: 1px solid rgba( 255, 251, 255, 0.12 );
316 + box-shadow: 0 18px 36px -12px rgba( 0, 0, 0, 0.7 );
317 + font-size: 9px;
318 + line-height: 1;
319 + }
320 + .os-welcome__win--posts { left: 0; top: 0; width: 236px; height: 184px; }
321 + .os-welcome__win--media { right: 0; bottom: 0; width: 236px; height: 160px; }
322 + .os-welcome__bar {
323 + display: flex;
246 324 align-items: center;
325 + justify-content: space-between;
326 + height: 24px;
327 + padding: 0 8px;
328 + font-weight: 500;
329 + color: var( --_mist );
330 + border-bottom: 1px solid rgba( 255, 251, 255, 0.08 );
331 + }
332 + .os-welcome__bar-title { display: flex; align-items: center; gap: 8px; }
333 + .os-welcome__bar-title i { width: 7px; height: 7px; border: 1px solid var( --_osmium ); border-radius: 50%; }
334 + .os-welcome__bar-ctl { display: flex; gap: 8px; }
335 + .os-welcome__bar-ctl i { display: block; width: 6px; height: 6px; border: 1px solid #77747c; border-radius: 1.5px; }
336 + .os-welcome__bar-ctl i:first-child { height: 0; border-width: 1px 0 0; margin-top: 3px; border-radius: 0; }
337 + .os-welcome__rows { padding: 8px; }
338 + .os-welcome__row {
339 + display: grid;
340 + grid-template-columns: 7px 1fr 34px;
341 + align-items: center;
247 342 gap: 8px;
248 - padding: 5px 12px;
249 - font-size: 11px;
250 - font-weight: 600;
251 - letter-spacing: 0.12em;
252 - text-transform: uppercase;
253 - color: #fff;
254 - background: rgba( 255, 255, 255, 0.18 );
255 - border: 1px solid rgba( 255, 255, 255, 0.28 );
256 - border-radius: 999px;
257 - backdrop-filter: blur( 6px );
258 - -webkit-backdrop-filter: blur( 6px );
343 + height: 24px;
344 + border-bottom: 1px solid rgba( 255, 251, 255, 0.07 );
259 345 }
260 - .desktop-mode-welcome__eyebrow-dot {
261 - width: 6px;
262 - height: 6px;
263 - border-radius: 50%;
264 - background: #22d3ee;
265 - box-shadow: 0 0 0 4px rgba( 34, 211, 238, 0.28 );
346 + .os-welcome__row i { width: 7px; height: 7px; border: 1px solid #5c5963; border-radius: 2px; }
347 + .os-welcome__row b { height: 5px; border-radius: 3px; background: #5c5963; }
348 + .os-welcome__row em { height: 9px; border-radius: 999px; background: #3e3b46; }
349 + .os-welcome__row--head b,
350 + .os-welcome__row--head em { background: #3e3b46; }
351 + .os-welcome__row--selected { background: rgba( 255, 251, 255, 0.05 ); }
352 + .os-welcome__thumbs { padding: 8px; display: grid; grid-template-columns: repeat( 4, 1fr ); gap: 8px; }
353 + .os-welcome__thumbs i {
354 + display: block;
355 + aspect-ratio: 1;
356 + border-radius: 4px;
357 + background: linear-gradient( 150deg, #34303d, #27242f );
358 + border: 1px solid rgba( 255, 251, 255, 0.06 );
266 359 }
267 - .desktop-mode-welcome__title {
268 - margin: 14px 0 6px;
269 - font-size: 26px;
270 - line-height: 1.2;
271 - font-weight: 700;
360 + .os-welcome__thumbs i:nth-child( 3n + 1 ) { background: linear-gradient( 150deg, #3a3444, #2a2633 ); }
361 + .os-welcome__thumbs i:nth-child( 5 ) {
362 + background:
363 + radial-gradient( circle at 70% 30%, rgba( 236, 155, 255, 0.22 ), transparent 60% ),
364 + linear-gradient( 150deg, #36313f, #25222c );
365 + }
366 +
367 + /* ---- Content column ------------------------------------------- */
368 +
369 + .os-welcome__main {
370 + display: flex;
371 + flex-direction: column;
372 + min-width: 0;
373 + text-align: start;
374 + }
375 + .os-welcome__content {
376 + display: grid;
377 + gap: 24px;
378 + padding: 32px;
379 + }
380 + .os-welcome__head {
381 + display: grid;
382 + gap: 8px;
383 + }
384 + .os-welcome .os-welcome__title {
385 + margin: 0;
386 + padding: 0;
387 + font-family: inherit;
388 + font-size: 24px;
389 + line-height: 1.3;
390 + font-weight: 500;
272 391 letter-spacing: -0.01em;
273 - color: #fff;
392 + color: var( --_obsidian );
393 + text-wrap: balance;
274 394 }
275 - .desktop-mode-welcome__subtitle {
395 + .os-welcome .os-welcome__lede {
276 396 margin: 0;
277 - font-size: 14px;
397 + font-size: 16px;
278 398 line-height: 1.5;
279 - color: rgba( 255, 255, 255, 0.85 );
399 + color: var( --_silver );
280 400 }
281 - .desktop-mode-welcome__body {
282 - padding: 24px 36px 24px;
283 - font-size: 14.5px;
284 - line-height: 1.6;
285 - color: #1f2937;
286 - }
287 - .desktop-mode-welcome__lede {
401 + .os-welcome .os-welcome__features {
402 + display: grid;
403 + gap: 16px;
288 404 margin: 0;
289 - font-size: 14.5px;
290 - color: #374151;
291 - }
292 - .desktop-mode-welcome__features {
293 - display: grid;
294 - grid-template-columns: repeat( 2, minmax( 0, 1fr ) );
295 - gap: 14px;
296 - margin: 20px 0 0;
297 405 padding: 0;
298 406 list-style: none;
299 407 }
300 - .desktop-mode-welcome__feature {
301 - position: relative;
302 - padding: 14px 14px 14px 52px;
303 - background: linear-gradient(
304 - 145deg,
305 - rgba( 255, 255, 255, 0.85 ),
306 - rgba( 240, 249, 255, 0.85 )
307 - );
308 - border: 1px solid rgba( 14, 165, 233, 0.18 );
309 - border-radius: 12px;
310 - box-shadow: 0 1px 0 rgba( 255, 255, 255, 0.9 ) inset,
311 - 0 2px 6px -2px rgba( 8, 47, 73, 0.08 );
408 + .os-welcome .os-welcome__feature {
409 + display: flex;
410 + gap: 16px;
411 + margin: 0;
312 412 }
313 - .desktop-mode-welcome__feature-icon {
314 - position: absolute;
315 - top: 12px;
316 - left: 12px;
317 - width: 30px;
318 - height: 30px;
319 - display: inline-flex;
320 - align-items: center;
321 - justify-content: center;
322 - border-radius: 9px;
323 - background: linear-gradient( 135deg, rgba( 14, 165, 233, 0.16 ), rgba( 16, 185, 129, 0.16 ) );
324 - border: 1px solid rgba( 14, 165, 233, 0.22 );
325 - font-size: 16px;
326 - line-height: 1;
413 + .os-welcome__icon {
414 + flex: none;
415 + width: 20px;
416 + height: 20px;
417 + color: var( --_pulse );
327 418 }
328 - .desktop-mode-welcome__feature-title {
419 + .os-welcome__icon svg {
329 420 display: block;
330 - margin: 0 0 2px;
331 - font-size: 13.5px;
332 - font-weight: 700;
333 - color: #0f172a;
421 + width: 20px;
422 + height: 20px;
334 423 }
335 - .desktop-mode-welcome__feature-desc {
424 + .os-welcome__feature-title {
425 + display: block;
426 + font-size: 14px;
427 + font-weight: 600;
428 + line-height: 1.4;
429 + color: var( --_obsidian );
430 + }
431 + .os-welcome .os-welcome__feature-desc {
336 432 margin: 0;
337 - font-size: 12.5px;
433 + font-size: 14px;
338 434 line-height: 1.5;
339 - color: #475569;
435 + color: var( --_pewter );
340 436 }
341 - .desktop-mode-welcome__hint {
342 - display: flex;
343 - align-items: center;
344 - gap: 12px;
345 - margin: 18px 0 0;
346 - padding: 14px 16px;
347 - background: linear-gradient(
348 - 135deg,
349 - rgba( 14, 165, 233, 0.08 ),
350 - rgba( 16, 185, 129, 0.08 )
351 - );
352 - border: 1px solid rgba( 14, 165, 233, 0.22 );
353 - border-radius: 12px;
354 - font-size: 13.5px;
355 - color: #0c4a6e;
356 - }
357 - .desktop-mode-welcome__hint-icon {
358 - flex-shrink: 0;
359 - width: 24px;
360 - height: 24px;
361 - border-radius: 50%;
362 - display: inline-flex;
363 - align-items: center;
364 - justify-content: center;
365 - background: linear-gradient( 135deg, #0ea5e9, #06b6d4 );
366 - color: #fff;
367 - font-size: 14px;
368 - line-height: 1;
369 - animation: desktop-mode-welcome-arrow 1.8s ease-in-out infinite;
370 - }
371 - .desktop-mode-welcome__hint-icon::before {
372 - content: "→";
373 - font-weight: 700;
374 - }
375 - .desktop-mode-welcome__hint code {
437 + .os-welcome .os-welcome__kbd {
376 438 display: inline-block;
377 - padding: 2px 6px;
378 - margin: 0 2px;
379 - background: rgba( 255, 255, 255, 0.85 );
380 - border: 1px solid rgba( 14, 165, 233, 0.28 );
439 + margin: 0;
440 + padding: 0 8px;
441 + font-family: "OpenStation Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
442 + font-size: 12px;
443 + font-weight: 500;
444 + line-height: 16px;
445 + color: var( --_astro );
446 + background: var( --_haze );
447 + border: 1px solid var( --_mist );
448 + border-bottom-color: var( --_cloud );
381 449 border-radius: 5px;
382 - font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
383 - font-size: 12px;
384 - color: #0369a1;
450 + white-space: nowrap;
385 451 }
386 - .desktop-mode-welcome__actions {
452 +
453 + /* Anchored to the bottom of the card, however long the copy runs. */
454 + .os-welcome__actions {
455 + margin-top: auto;
387 456 display: flex;
388 - align-items: center;
457 + flex-wrap: wrap;
389 458 justify-content: flex-end;
390 - gap: 10px;
391 - padding: 0 36px 28px;
459 + gap: 8px;
460 + padding: 0 32px 32px;
392 461 }
393 - .desktop-mode-welcome__btn {
462 + .os-welcome .os-welcome__btn {
394 463 display: inline-flex;
395 464 align-items: center;
396 465 justify-content: center;
397 - gap: 6px;
398 - min-height: 38px;
399 - padding: 8px 18px;
466 + min-height: 40px;
467 + margin: 0;
468 + padding: 0 16px;
469 + font-family: inherit;
400 470 font-size: 14px;
401 - font-weight: 600;
402 - font-family: inherit;
471 + font-weight: 500;
403 472 line-height: 1;
404 - border-radius: 10px;
405 - border: 1px solid transparent;
473 + border-radius: 8px;
474 + border: 1px solid var( --_obsidian );
475 + box-shadow: none;
406 476 cursor: pointer;
407 - transition: transform 120ms ease, box-shadow 120ms ease,
408 - background 120ms ease, color 120ms ease;
477 + transition: background-color 120ms ease, color 120ms ease, border-color 120ms ease;
409 478 }
410 - .desktop-mode-welcome__btn:focus-visible {
411 - outline: 2px solid #0ea5e9;
479 + .os-welcome .os-welcome__btn:focus-visible {
480 + outline: 2px solid var( --_obsidian );
412 481 outline-offset: 2px;
413 482 }
414 - .desktop-mode-welcome__btn--ghost {
415 - background: transparent;
416 - color: #475569;
417 - border-color: transparent;
483 + .os-welcome .os-welcome__btn--primary {
484 + color: var( --_starlight );
485 + background: var( --_obsidian );
418 486 }
419 - .desktop-mode-welcome__btn--ghost:hover {
420 - background: rgba( 15, 23, 42, 0.06 );
421 - color: #0f172a;
487 + .os-welcome .os-welcome__btn--primary:hover {
488 + background: var( --_astro );
489 + border-color: var( --_astro );
422 490 }
423 - .desktop-mode-welcome__btn--secondary {
424 - color: #0369a1;
425 - background: rgba( 14, 165, 233, 0.10 );
426 - border-color: rgba( 14, 165, 233, 0.28 );
491 + .os-welcome .os-welcome__btn--secondary {
492 + color: var( --_obsidian );
493 + background: transparent;
427 494 }
428 - .desktop-mode-welcome__btn--secondary:hover {
429 - background: rgba( 14, 165, 233, 0.16 );
430 - color: #075985;
495 + .os-welcome .os-welcome__btn--secondary:hover {
496 + background: var( --_haze );
431 497 }
432 - .desktop-mode-welcome__btn--primary {
433 - color: #fff;
434 - background: linear-gradient( 135deg, #0369a1, #0ea5e9 55%, #06b6d4 );
435 - background-size: 180% 180%;
436 - box-shadow: 0 10px 24px -10px rgba( 14, 165, 233, 0.75 ),
437 - 0 4px 10px -4px rgba( 6, 182, 212, 0.55 );
438 - }
439 - .desktop-mode-welcome__btn--primary:hover {
440 - transform: translateY( -1px );
441 - background-position: 100% 50%;
442 - box-shadow: 0 14px 30px -12px rgba( 14, 165, 233, 0.85 ),
443 - 0 6px 14px -4px rgba( 6, 182, 212, 0.65 );
444 - }
445 - .desktop-mode-welcome__btn--primary:active {
446 - transform: translateY( 0 );
447 - }
448 - .desktop-mode-welcome__btn[disabled] {
449 - opacity: 0.65;
498 + .os-welcome .os-welcome__btn[disabled] {
499 + opacity: 0.64;
450 500 cursor: progress;
451 501 }
452 - .desktop-mode-welcome__close {
453 - position: absolute;
454 - top: 14px;
455 - right: 14px;
456 - width: 32px;
457 - height: 32px;
458 - display: inline-flex;
459 - align-items: center;
460 - justify-content: center;
461 - padding: 0;
462 - background: rgba( 255, 255, 255, 0.18 );
463 - color: #fff;
464 - border: 1px solid rgba( 255, 255, 255, 0.25 );
465 - border-radius: 50%;
466 - cursor: pointer;
467 - font-size: 18px;
468 - line-height: 1;
469 - transition: background 120ms ease, transform 120ms ease;
470 - }
471 - .desktop-mode-welcome__close:hover {
472 - background: rgba( 255, 255, 255, 0.32 );
473 - transform: rotate( 90deg );
474 - }
475 - .desktop-mode-welcome__close:focus-visible {
476 - outline: 2px solid #fff;
477 - outline-offset: 2px;
478 - }
479 - body.desktop-mode-welcome-open {
502 + body.os-welcome-open {
480 503 overflow: hidden;
481 504 }
505 +
506 + /* ---- Narrow screens ------------------------------------------- */
507 +
482 508 @media ( max-width: 760px ) {
483 - .desktop-mode-welcome__features {
509 + .os-welcome__card {
484 510 grid-template-columns: 1fr;
511 + min-height: 0;
485 512 }
513 + .os-welcome__art {
514 + height: 216px;
515 + }
516 + .os-welcome__pair {
517 + transform: translate( -50%, -44% ) scale( 0.64 );
518 + }
486 519 }
487 - @media ( max-width: 600px ) {
488 - .desktop-mode-welcome__hero {
489 - padding: 28px 24px 20px;
520 + @media ( max-width: 480px ) {
521 + .os-welcome {
522 + padding: 16px;
490 523 }
491 - .desktop-mode-welcome__body,
492 - .desktop-mode-welcome__actions {
493 - padding-left: 24px;
494 - padding-right: 24px;
524 + .os-welcome .os-welcome__mark {
525 + top: 24px;
526 + inset-inline-start: 24px;
495 527 }
496 - .desktop-mode-welcome__title {
497 - font-size: 22px;
528 + .os-welcome__content {
529 + padding: 24px;
498 530 }
499 - .desktop-mode-welcome__actions {
500 - flex-direction: column-reverse;
501 - align-items: stretch;
531 + .os-welcome__actions {
532 + padding: 0 24px 24px;
502 533 }
503 - .desktop-mode-welcome__btn {
504 - width: 100%;
534 + .os-welcome .os-welcome__btn {
535 + flex: 1 1 auto;
505 536 }
506 537 }
507 538 @media ( prefers-reduced-motion: reduce ) {
508 - .desktop-mode-welcome,
509 - .desktop-mode-welcome__card,
510 - .desktop-mode-welcome__hero,
511 - .desktop-mode-welcome__hint-icon {
539 + .os-welcome,
540 + .os-welcome__card {
512 541 animation: none !important;
513 542 }
543 + .os-welcome .os-welcome__btn {
544 + transition: none;
545 + }
514 546 }
515 547 </style>
516 548 <div
517 - class="desktop-mode-welcome"
549 + class="os-welcome"
518 550 role="dialog"
519 551 aria-modal="true"
520 - aria-labelledby="desktop-mode-welcome-title"
521 - aria-describedby="desktop-mode-welcome-desc"
552 + aria-labelledby="os-welcome-title"
553 + aria-describedby="os-welcome-desc"
522 554 data-slug="<?php echo esc_attr( $slug ); ?>"
523 555 >
524 - <div class="desktop-mode-welcome__card">
525 - <button
526 - type="button"
527 - class="desktop-mode-welcome__close"
528 - aria-label="<?php echo esc_attr( $close_a ); ?>"
529 - data-desktop-mode-welcome-dismiss
530 - >&times;</button>
531 - <div class="desktop-mode-welcome__hero">
532 - <span class="desktop-mode-welcome__eyebrow">
533 - <span class="desktop-mode-welcome__eyebrow-dot" aria-hidden="true"></span>
534 - <?php echo esc_html__( 'New here', 'desktop-mode' ); ?>
535 - </span>
536 - <h2 id="desktop-mode-welcome-title" class="desktop-mode-welcome__title">
537 - <?php echo esc_html( $title ); ?>
538 - </h2>
539 - <p class="desktop-mode-welcome__subtitle">
540 - <?php echo esc_html( $subtitle ); ?>
541 - </p>
556 + <div class="os-welcome__card">
557 + <div class="os-welcome__art" aria-hidden="true">
558 + <img class="os-welcome__mark" src="<?php echo esc_url( $mark_url ); ?>" alt="" width="40" height="40" />
559 + <div class="os-welcome__pair">
560 + <div class="os-welcome__win os-welcome__win--posts">
561 + <div class="os-welcome__bar">
562 + <span class="os-welcome__bar-title"><i></i><?php echo esc_html__( 'Posts', 'desktop-mode' ); ?></span>
563 + <span class="os-welcome__bar-ctl"><i></i><i></i><i></i></span>
564 + </div>
565 + <div class="os-welcome__rows">
566 + <div class="os-welcome__row os-welcome__row--head"><i></i><b style="width:40%"></b><em></em></div>
567 + <div class="os-welcome__row"><i></i><b style="width:78%"></b><em></em></div>
568 + <div class="os-welcome__row os-welcome__row--selected"><i></i><b style="width:62%"></b><em></em></div>
569 + <div class="os-welcome__row"><i></i><b style="width:84%"></b><em></em></div>
570 + <div class="os-welcome__row"><i></i><b style="width:55%"></b><em></em></div>
571 + <div class="os-welcome__row"><i></i><b style="width:70%"></b><em></em></div>
572 + </div>
573 + </div>
574 + <div class="os-welcome__win os-welcome__win--media">
575 + <div class="os-welcome__bar">
576 + <span class="os-welcome__bar-title"><i></i><?php echo esc_html__( 'Media', 'desktop-mode' ); ?></span>
577 + <span class="os-welcome__bar-ctl"><i></i><i></i><i></i></span>
578 + </div>
579 + <div class="os-welcome__thumbs">
580 + <i></i><i></i><i></i><i></i>
581 + <i></i><i></i><i></i><i></i>
582 + </div>
583 + </div>
584 + </div>
542 585 </div>
543 - <div class="desktop-mode-welcome__body">
544 - <p id="desktop-mode-welcome-desc" class="desktop-mode-welcome__lede">
545 - <?php echo esc_html( $body ); ?>
546 - </p>
547 - <ul class="desktop-mode-welcome__features">
548 - <?php foreach ( $features as $feature ) : ?>
549 - <li class="desktop-mode-welcome__feature">
550 - <span class="desktop-mode-welcome__feature-icon" aria-hidden="true">
551 - <?php echo esc_html( $feature['icon'] ); ?>
552 - </span>
553 - <strong class="desktop-mode-welcome__feature-title">
554 - <?php echo esc_html( $feature['title'] ); ?>
555 - </strong>
556 - <p class="desktop-mode-welcome__feature-desc">
557 - <?php echo esc_html( $feature['desc'] ); ?>
558 - </p>
559 - </li>
560 - <?php endforeach; ?>
561 - </ul>
562 - <p class="desktop-mode-welcome__hint">
563 - <span class="desktop-mode-welcome__hint-icon" aria-hidden="true"></span>
564 - <?php
565 - printf(
566 - /* translators: %s: the label of the admin bar button. */
567 - esc_html__( 'Prefer to switch yourself? Click %s in the top-right of your admin bar.', 'desktop-mode' ),
568 - '<code>' . esc_html__( 'Switch to Desktop Mode', 'desktop-mode' ) . '</code>'
569 - );
570 - ?>
571 - </p>
586 + <div class="os-welcome__main">
587 + <div class="os-welcome__content">
588 + <div class="os-welcome__head">
589 + <h2 id="os-welcome-title" class="os-welcome__title">
590 + <?php echo esc_html( $title ); ?>
591 + </h2>
592 + <p id="os-welcome-desc" class="os-welcome__lede">
593 + <?php echo esc_html( $body ); ?>
594 + </p>
595 + </div>
596 + <ul class="os-welcome__features">
597 + <?php foreach ( $features as $feature ) : ?>
598 + <li class="os-welcome__feature">
599 + <span class="os-welcome__icon" aria-hidden="true">
600 + <?php echo openstation_welcome_dialog_icon( $feature['icon'] ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- sanitised with wp_kses() in the helper. ?>
601 + </span>
602 + <div>
603 + <strong class="os-welcome__feature-title">
604 + <?php
605 + if ( ! empty( $feature['kbd'] ) ) {
606 + echo wp_kses(
607 + sprintf(
608 + esc_html( $feature['title'] ),
609 + '<kbd class="os-welcome__kbd" data-os-welcome-shortcut>⌘K</kbd>'
610 + ),
611 + array(
612 + 'kbd' => array(
613 + 'class' => true,
614 + 'data-*' => true,
615 + ),
616 + )
617 + );
618 + } else {
619 + echo esc_html( $feature['title'] );
620 + }
621 + ?>
622 + </strong>
623 + <p class="os-welcome__feature-desc">
624 + <?php echo esc_html( $feature['desc'] ); ?>
625 + </p>
626 + </div>
627 + </li>
628 + <?php endforeach; ?>
629 + </ul>
630 + </div>
631 + <div class="os-welcome__actions">
632 + <button
633 + type="button"
634 + class="os-welcome__btn os-welcome__btn--secondary"
635 + data-os-welcome-cta
636 + >
637 + <?php echo esc_html( $later ); ?>
638 + </button>
639 + <button
640 + type="button"
641 + class="os-welcome__btn os-welcome__btn--primary"
642 + data-os-welcome-enable
643 + data-label-idle="<?php echo esc_attr( $enable ); ?>"
644 + data-label-busy="<?php echo esc_attr( $enabling ); ?>"
645 + >
646 + <?php echo esc_html( $enable ); ?>
647 + </button>
648 + </div>
572 649 </div>
573 - <div class="desktop-mode-welcome__actions">
574 - <button
575 - type="button"
576 - class="desktop-mode-welcome__btn desktop-mode-welcome__btn--secondary"
577 - data-desktop-mode-welcome-cta
578 - >
579 - <?php echo esc_html( $cta ); ?>
580 - </button>
581 - <button
582 - type="button"
583 - class="desktop-mode-welcome__btn desktop-mode-welcome__btn--primary"
584 - data-desktop-mode-welcome-enable
585 - data-label-idle="<?php echo esc_attr( $enable ); ?>"
586 - data-label-busy="<?php echo esc_attr( $enabling ); ?>"
587 - >
588 - <?php echo esc_html( $enable ); ?>
589 - </button>
590 - </div>
591 650 </div>
592 651 </div>
593 -<script id="desktop-mode-welcome-script">
652 +<script id="os-welcome-script">
594 653 ( function () {
595 - var root = document.querySelector( '.desktop-mode-welcome' );
654 + var root = document.querySelector( '.os-welcome' );
596 655 if ( ! root ) {
597 656 return;
598 657 }
599 658 var cfg = {
@@ -603,13 +662,19 @@
603 662 ajaxUrl: <?php echo wp_json_encode( $ajax_url ); ?>,
604 663 ajaxNonce: <?php echo wp_json_encode( $ajax_nonce ); ?>,
605 664 };
606 665
607 - document.body.classList.add( 'desktop-mode-welcome-open' );
666 + document.body.classList.add( 'os-welcome-open' );
608 667
668 + // The shell answers Cmd+K and Ctrl+K alike; show the one this keyboard has.
669 + var shortcut = root.querySelector( '[data-os-welcome-shortcut]' );
670 + if ( shortcut && ! /Mac|iPhone|iPad|iPod/.test( navigator.platform || navigator.userAgent ) ) {
671 + shortcut.textContent = 'Ctrl K';
672 + }
673 +
609 674 // Focus the primary CTA so keyboard users land somewhere meaningful.
610 - var primary = root.querySelector( '[data-desktop-mode-welcome-enable]' )
611 - || root.querySelector( '[data-desktop-mode-welcome-cta]' );
675 + var primary = root.querySelector( '[data-os-welcome-enable]' )
676 + || root.querySelector( '[data-os-welcome-cta]' );
612 677 if ( primary ) {
613 678 try { primary.focus( { preventScroll: true } ); } catch ( e ) {}
614 679 }
615 680
@@ -617,12 +682,33 @@
617 682 if ( ! root || ! root.parentNode ) {
618 683 return;
619 684 }
620 685 root.parentNode.removeChild( root );
621 - document.body.classList.remove( 'desktop-mode-welcome-open' );
686 + document.body.classList.remove( 'os-welcome-open' );
622 687 document.removeEventListener( 'keydown', onKey );
623 688 }
624 689
690 + // Rebuilds an absolute URL onto the origin the admin page was actually
691 + // loaded from. `rest_url()` / `admin_url()` are pinned to `site_url()`,
692 + // but the admin may be viewed through a different origin — a reverse
693 + // proxy, a Flexible-SSL edge, a mapped multisite domain, or simply an
694 + // HTTPS dev proxy in front of an HTTP site. POSTing the *absolute*
695 + // site_url URL from such a page is cross-origin (and mixed-content when
696 + // the page is HTTPS and site_url is HTTP); the browser blocks it, the
697 + // dismissal never reaches the server, and the dialog re-renders on every
698 + // page load. Reissuing the request to `window.location.origin` keeps it
699 + // same-origin — where the logged-in cookie (domain-scoped, not
700 + // port-scoped) and the `wp_rest` nonce (session-bound, origin-agnostic)
701 + // are both valid.
702 + function sameOrigin( url ) {
703 + try {
704 + var parsed = new URL( url, window.location.href );
705 + return window.location.origin + parsed.pathname + parsed.search;
706 + } catch ( e ) {
707 + return url;
708 + }
709 + }
710 +
625 711 function persist() {
626 712 // Fire-and-forget. The seen-intros endpoint always returns the
627 713 // post-mutation list, but we don't need it here; if the request
628 714 // fails (offline, REST disabled) the dialog will simply show
@@ -628,18 +714,43 @@
628 714 // fails (offline, REST disabled) the dialog will simply show
629 715 // again next page load — exactly the behavior a user would
630 716 // expect from a "save my dismissal" call that didn't reach the
631 717 // server.
718 + var url = sameOrigin( cfg.url );
719 + var payload = JSON.stringify( { slug: cfg.slug } );
720 +
721 + // Prefer `navigator.sendBeacon`: it is queued by the browser and
722 + // survives the navigation that "Switch to OpenStation" triggers
723 + // without the keepalive caveats, and it is inherently
724 + // same-origin-credentialed. The `wp_rest` nonce rides along as
725 + // `_wpnonce` (REST cookie auth reads it from `$_REQUEST`), and the
726 + // Blob's `application/json` type lets the REST server parse the
727 + // `slug` body param.
632 728 try {
729 + if ( navigator.sendBeacon ) {
730 + var beaconUrl = url +
731 + ( url.indexOf( '?' ) === -1 ? '?' : '&' ) +
732 + '_wpnonce=' + encodeURIComponent( cfg.nonce );
733 + var blob = new Blob( [ payload ], { type: 'application/json' } );
734 + if ( navigator.sendBeacon( beaconUrl, blob ) ) {
735 + return;
736 + }
737 + }
738 + } catch ( e ) {}
739 +
740 + // Fallback: `keepalive: true` keeps the POST alive across the
741 + // "Switch to OpenStation" redirect on browsers without sendBeacon.
742 + try {
633 743 var headers = { 'Content-Type': 'application/json' };
634 744 if ( cfg.nonce ) {
635 745 headers[ 'X-WP-Nonce' ] = cfg.nonce;
636 746 }
637 - fetch( cfg.url, {
747 + fetch( url, {
638 748 method: 'POST',
639 749 credentials: 'same-origin',
750 + keepalive: true,
640 751 headers: headers,
641 - body: JSON.stringify( { slug: cfg.slug } ),
752 + body: payload,
642 753 } ).catch( function () {} );
643 754 } catch ( e ) {}
644 755 }
645 756
@@ -665,13 +776,13 @@
665 776 // need to see the welcome again.
666 777 persist();
667 778
668 779 var form = new FormData();
669 - form.append( 'action', 'save-desktop-mode' );
780 + form.append( 'action', 'save-openstation' );
670 781 form.append( 'nonce', cfg.ajaxNonce );
671 782 form.append( 'enabled', '1' );
672 783
673 - fetch( cfg.ajaxUrl, {
784 + fetch( sameOrigin( cfg.ajaxUrl ), {
674 785 method: 'POST',
675 786 credentials: 'same-origin',
676 787 body: form,
677 788 } ).then( function ( r ) {
@@ -685,9 +796,9 @@
685 796 return;
686 797 }
687 798 // Fallback — reload so the shell takes over (the AJAX endpoint
688 799 // already wrote the user meta, so this request will boot
689 - // straight into Desktop Mode via the portal flow).
800 + // straight into OpenStation via the portal flow).
690 801 window.location.reload();
691 802 } ).catch( function () {
692 803 enabling = false;
693 804 btn.disabled = false;
@@ -699,16 +810,15 @@
699 810 var target = event.target;
700 811 if ( ! ( target instanceof Element ) ) {
701 812 return;
702 813 }
703 - var enableBtn = target.closest( '[data-desktop-mode-welcome-enable]' );
814 + var enableBtn = target.closest( '[data-os-welcome-enable]' );
704 815 if ( enableBtn ) {
705 816 event.preventDefault();
706 817 enableNow( enableBtn );
707 818 return;
708 819 }
709 - if ( target.closest( '[data-desktop-mode-welcome-dismiss]' ) ||
710 - target.closest( '[data-desktop-mode-welcome-cta]' ) ) {
820 + if ( target.closest( '[data-os-welcome-cta]' ) ) {
711 821 event.preventDefault();
712 822 dismiss();
713 823 return;
714 824 }
@@ -729,5 +839,5 @@
729 839 } )();
730 840 </script>
731 841 <?php
732 842 }
733 -add_action( 'admin_footer', 'desktop_mode_render_welcome_dialog' );
843 +add_action( 'admin_footer', 'openstation_render_welcome_dialog' );