Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RDV: Use the tour only on a subset of the pages #40687

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: patch
Type: fixed

Enable the tour only on a subset of the Removed duplicate views screens.
Original file line number Diff line number Diff line change
Expand Up @@ -116,15 +116,23 @@
}
add_filter( 'pre_update_option_wpcom_admin_interface', 'wpcom_admin_interface_pre_update_option', 10, 2 );

const WPCOM_DUPLICATE_VIEW_WITH_TOUR = array(
Copy link
Member

@mmtr mmtr Dec 20, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think the tour is the differentiating factor here. The "View" switcher is also hidden on all these screens, and it should remain visible on screens like admin.php?page=stats or tools.php?page=advertising.

Actually, I think adding admin.php?page=stats and tools.php?page=advertising to they array of duplicate views was a mistake, because we are not removing the duplicate Calypso screens for those (which is why we don't show the tour and why we don't hide the switcher).

Due to that, I think it'd be less confusing if we have these two arrays:

  • WPCOM_DUPLICATE_VIEW: Lists of WP Admin paths whose Calypso counterpart has been removed, and therefore we need to:
    • Enforce the WP Admin link in the menu
    • Hide the View switcher
    • Show the tour
  • WPCOM_CLASSIC_INTERFACE_PATHS: List of WP Admin paths not enabled for the Default admin interface (e.g. Jetpack Stats, Advertising Tools) that can be accessed from a enforced WP Admin view
    • Access to these paths should be enabled when visiting a WP Admin view whose Calypso counterpart has been removed

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mmtr this PR it's now redundant and replaced by #40690.

I should've closed it yesterday, but forgot. Sorry!

'edit.php',
'edit.php?post_type=jetpack-portfolio',
'edit.php?post_type=jetpack-testimonial',
'edit-comments.php',
'edit-tags.php?taxonomy=category',
'edit-tags.php?taxonomy=post_tag',
);
const WPCOM_DUPLICATED_VIEW = array(

Check warning on line 127 in projects/packages/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php

View workflow job for this annotation

GitHub Actions / PHP Code Sniffer (non-excluded files only)

Equals sign not aligned with surrounding assignments; expected 10 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks like we're going to need to duplicate the previous array

'edit.php',
'admin.php?page=stats',
'tools.php?page=advertising',
'edit.php?post_type=jetpack-portfolio',
'edit.php?post_type=jetpack-testimonial',
'edit-comments.php',
'edit-tags.php?taxonomy=category',
'edit-tags.php?taxonomy=post_tag',
'admin.php?page=stats',
'tools.php?page=advertising',
);

/**
Expand Down Expand Up @@ -462,7 +470,7 @@

$current_screen = wpcom_admin_get_current_screen();

if ( ! in_array( $current_screen, WPCOM_DUPLICATED_VIEW, true ) ) {
if ( ! in_array( $current_screen, WPCOM_DUPLICATE_VIEW_WITH_TOUR, true ) ) {
return;
}

Expand Down
Loading